  @font-face {
    font-family: "Aptos";
    src: url("../assets/fonts/Aptos-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Aptos";
    src: url("../assets/fonts/Aptos.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Aptos";
    src: url("../assets/fonts/Aptos-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Aptos";
    src: url("../assets/fonts/Aptos-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Aptos";
    src: url("../assets/fonts/Aptos-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Aptos";
    src: url("../assets/fonts/Aptos-Display-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: "Martti";
    src: url("../assets/fonts/Martti-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Martti";
    src: url("../assets/fonts/Martti-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: "Martti";
    src: url("../assets/fonts/Martti-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Martti";
    src: url("../assets/fonts/Martti-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: "Martti Display";
    src: url("../assets/fonts/MarttiDisplay-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Martti Display";
    src: url("../assets/fonts/MarttiDisplay-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Martti Display";
    src: url("../assets/fonts/MarttiDisplay-Bold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
  }

  :root {
    --green-ink:     #05311C;
    --green-deep:    #005E2C;
    --green:         #028342;
    --green-mid:     #2FA463;
    --green-light:   #B4DEC7;
    --green-glow:    #D8F0E3;
    --cream:         #F3EEE7;
    --cream-soft:    #E9F5EE;
    --white:         #FFFFFF;
    --ink:           #05311C;

    --font-display:  "Martti Display", "Martti", "Aptos", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif:    "Martti", Georgia, serif;
    --font-body:     "Aptos", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --radius:        18px;
    --radius-lg:     28px;
    --max:           1180px;
    --ease:          cubic-bezier(0.22, 1, 0.36, 1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body {
    font-family: var(--font-body);
    color: var(--white);
    background: var(--green);
    line-height: 1.55;
    overflow-x: hidden;
  }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  ::selection { background: var(--green-glow); color: var(--green-ink); }

  .container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
  }

  .display {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.02;
  }
  .eyebrow {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.02em;
    opacity: 0.85;
  }

  /* NAV */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(0, 94, 44, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
  }
  .logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .logo-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--green-glow);
    box-shadow: 0 0 14px var(--green-glow);
  }
  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.85;
    transition: opacity 0.2s var(--ease);
  }
  .nav-links a:hover { opacity: 1; }
  .nav-cta {
    background: var(--white);
    color: var(--green-ink);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
  @media (max-width: 720px) {
    .nav-links li:not(:last-child) { display: none; }
  }

  /* HERO */
  .hero {
    position: relative;
    padding: 84px 0 0;
    overflow: hidden;
    background: var(--green);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: 40px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  }
  .hero-text { position: relative; z-index: 2; }
  .hero h1 {
    font-size: clamp(2.6rem, 6.2vw, 4.6rem);
    margin: 18px 0 22px;
  }
  .hero h1 .accent {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-variation-settings: "opsz" 144, "SOFT" 80;
    letter-spacing: -0.02em;
  }
  .hero p.lead {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    line-height: 1.45;
    max-width: 480px;
    opacity: 0.92;
    margin-bottom: 32px;
  }

  .hero-media {
    position: relative;
    z-index: 1;
    align-self: end;
    margin: 0;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .hero-media img {
    width: min(100%, 660px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 45px rgba(0, 62, 31, 0.28));
  }
  @media (max-width: 900px) {
    .hero-media {
      min-height: 0;
      margin-top: 8px;
    }
    .hero-media img { width: min(100%, 560px); }
  }
  @media (max-width: 520px) {
    .hero-media img {
      width: 115%;
      max-width: none;
      margin-left: -7%;
    }
  }

  .cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--green-ink);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  }
  .store-btn:hover { transform: translateY(-2px); background: #012213; }
  .store-btn svg { flex-shrink: 0; }
  .store-btn .small { font-size: 0.7rem; opacity: 0.8; line-height: 1; margin-bottom: 3px; }
  .store-btn .big { font-size: 1.1rem; font-weight: 600; line-height: 1; letter-spacing: -0.01em; }

  /* PHONES */
  .phones {
    position: relative;
    height: 580px;
    display: none;
    justify-content: center;
    align-items: center;
  }
  @media (max-width: 900px) { .phones { height: 480px; } }
  @media (max-width: 500px) { .phones { height: 420px; } }

  .phone {
    position: absolute;
    width: 240px;
    height: 490px;
    background: var(--white);
    border-radius: 36px;
    padding: 8px;
    box-shadow:
      0 30px 60px -20px rgba(0,0,0,0.45),
      0 12px 24px -8px rgba(0,0,0,0.25),
      inset 0 0 0 1.5px rgba(0,0,0,0.04);
  }
  @media (max-width: 500px) {
    .phone { width: 200px; height: 410px; }
  }
  .phone::before {
    content: "";
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 6px;
    background: #1a1a1a;
    border-radius: 4px;
    z-index: 2;
  }
  .phone-screen {
    width: 100%; height: 100%;
    background: var(--cream-soft);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
  }
  .phone-header {
    background: var(--green);
    padding: 38px 16px 22px;
    color: var(--white);
  }
  .phone-header .menu {
    width: 18px; height: 12px;
    border-top: 2px solid rgba(255,255,255,0.9);
    border-bottom: 2px solid rgba(255,255,255,0.9);
    position: relative;
    margin-bottom: 14px;
  }
  .phone-header .menu::before {
    content: ""; position: absolute; left: 0; top: 4px;
    width: 100%; height: 2px;
    background: rgba(255,255,255,0.9);
  }
  .phone-header .brand {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: -0.04em;
  }
  .phone-1 {
    transform: rotate(-9deg) translate(-60px, -10px);
    z-index: 1;
  }
  .phone-2 {
    transform: rotate(7deg) translate(60px, 30px);
    z-index: 2;
  }
  @media (max-width: 500px) {
    .phone-1 { transform: rotate(-9deg) translate(-40px, -10px); }
    .phone-2 { transform: rotate(7deg) translate(40px, 30px); }
  }

  .feed-tabs {
    display: flex;
    gap: 14px;
    padding: 12px 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(14,40,18,0.55);
    letter-spacing: 0.04em;
  }
  .feed-tabs .active {
    color: var(--white);
    background: var(--green-light);
    padding: 5px 9px;
    border-radius: 100px;
    margin-bottom: 6px;
  }
  .feed-tabs span { padding-bottom: 8px; }
  .feed-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
  }
  .feed-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  }
  .feed-card .img {
    height: 56px;
    background: linear-gradient(135deg, #ffd166, #ef476f);
  }
  .feed-card:nth-child(2) .img { background: linear-gradient(135deg, #06d6a0, #118ab2); }
  .feed-card:nth-child(3) .img { background: linear-gradient(135deg, #b388eb, #f4845f); }
  .feed-card:nth-child(4) .img { background: linear-gradient(135deg, #fcbf49, #f77f00); }
  .feed-card .text {
    padding: 6px 7px 8px;
    font-size: 0.5rem;
    line-height: 1.3;
    color: rgba(14,40,18,0.75);
  }
  .feed-section-title {
    padding: 6px 12px;
    font-family: var(--font-serif);
    font-size: 0.7rem;
    font-style: italic;
    color: var(--green-ink);
  }

  .search-bar {
    margin: 12px 14px 6px;
    background: var(--white);
    height: 22px;
    border-radius: 6px;
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: rgba(14,40,18,0.55);
  }
  .chat-tabs {
    display: flex;
    font-size: 0.55rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin: 6px 14px 0;
    color: rgba(14,40,18,0.5);
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .chat-tabs span { padding: 8px 10px; }
  .chat-tabs .active { color: var(--green-ink); border-bottom: 2px solid var(--green); }
  .chat-list { padding: 8px 12px; }
  .chat-row {
    display: flex;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .chat-row .avatar {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
  }
  .chat-row:nth-child(1) .avatar { background: linear-gradient(135deg, #ef476f, #ffd166); }
  .chat-row:nth-child(2) .avatar { background: var(--green-light); }
  .chat-row:nth-child(3) .avatar { background: linear-gradient(135deg, #ffd166, #f77f00); }
  .chat-row:nth-child(4) .avatar { background: linear-gradient(135deg, #b388eb, #06d6a0); }
  .chat-row:nth-child(5) .avatar { background: linear-gradient(135deg, #ef476f, #b388eb, #06d6a0, #ffd166); }
  .chat-row .info { flex: 1; min-width: 0; }
  .chat-row .name {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--green-ink);
    margin-bottom: 1px;
  }
  .chat-row .desc {
    font-size: 0.52rem;
    color: rgba(14,40,18,0.55);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 1.3;
  }

  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
  }
  .blob-1 { width: 400px; height: 400px; background: var(--green-mid); top: -100px; left: -120px; }
  .blob-2 { width: 300px; height: 300px; background: var(--green-light); bottom: -80px; right: -80px; opacity: 0.4; }

  .wave {
    display: block;
    width: 100%;
    height: 140px;
    margin-bottom: -1px;
  }
  @media (max-width: 720px) {
    .wave { height: 90px; }
  }
  .wave-flip { transform: rotate(180deg); }

  /* FEATURES */
  .features {
    background: var(--cream);
    color: var(--green-ink);
    margin-top: -1px;
    padding: 100px 0 120px;
    position: relative;
  }
  .section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
  .section-head .eyebrow {
    color: var(--green);
    margin-bottom: 12px;
    display: inline-block;
  }
  .section-head h2 {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-family: var(--font-display);
    font-weight: 700;
  }
  .section-head h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  @media (max-width: 820px) { .feature-grid { grid-template-columns: 1fr; } }
  .feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    border: 1px solid rgba(20,64,28,0.06);
  }
  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 50px -20px rgba(20,64,28,0.18);
  }
  .feature-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--green);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    color: var(--white);
  }
  .feature-card:nth-child(2) .feature-icon { background: var(--green-deep); }
  .feature-card:nth-child(3) .feature-icon { background: var(--green-mid); }
  .feature-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
  .feature-card p { color: rgba(14,40,18,0.7); font-size: 1rem; }

  /* WHO WE ARE */
  .people {
    background: var(--green-deep);
    padding: 110px 0;
    position: relative;
  }
  .people-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 900px) { .people-grid { grid-template-columns: 1fr; } }
  .people-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 14px 0 22px;
  }
  .people-text h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
  }
  .people-text p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.55;
    opacity: 0.9;
  }

  .people-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  @media (max-width: 480px) { .people-cards { grid-template-columns: 1fr; } }
  .person-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform 0.4s var(--ease), background 0.4s var(--ease);
  }
  .person-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.09);
  }
  .person-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--green-light);
    border: 2px solid var(--green-glow);
  }
  .person-card:nth-child(1) .person-avatar { background: linear-gradient(135deg, #ef476f, #ffd166); }
  .person-card:nth-child(2) .person-avatar { background: linear-gradient(135deg, #06d6a0, #118ab2); }
  .person-card:nth-child(3) .person-avatar { background: linear-gradient(135deg, #b388eb, #f4845f); }
  .person-card:nth-child(4) .person-avatar { background: linear-gradient(135deg, #fcbf49, #f77f00); }
  .person-info { flex: 1; min-width: 0; }
  .person-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 4px;
  }
  .person-role {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 8px;
  }
  .person-desc {
    font-size: 0.85rem;
    line-height: 1.45;
    opacity: 0.85;
  }
  .people-note {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.65;
    margin-top: 18px;
    text-align: right;
  }

  /* TOPICS */
  .topics {
    background: var(--cream-soft);
    color: var(--green-ink);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }
  .topics-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 900px) { .topics-grid { grid-template-columns: 1fr; gap: 30px; } }
  .topics-text h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 22px;
  }
  .topics-text h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
  }
  .topics-text p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.55;
    color: rgba(14,40,18,0.75);
  }
  .topic-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .topic-tag {
    font-family: var(--font-display);
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 100px;
    background: var(--white);
    border: 1px solid rgba(20,64,28,0.08);
    color: var(--green-ink);
    font-size: 1rem;
    transition: all 0.25s var(--ease);
  }
  .topic-tag:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
  .topic-tag.filled { background: var(--green); color: var(--white); }
  .topic-tag.serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    background: transparent;
    border: 1.5px dashed rgba(20,64,28,0.3);
  }

  /* REASSURANCE */
  .reassure {
    background: var(--green);
    padding: 100px 0;
  }
  .reassure-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  .reassure h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 14px 0 24px;
  }
  .reassure h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
  }
  .reassure p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.55;
    opacity: 0.92;
  }

  /* FINAL CTA */
  .final-cta {
    background: var(--green-ink);
    padding: 130px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta .container { position: relative; z-index: 1; }
  .final-cta h2 {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 24px;
  }
  .final-cta h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
  }
  .final-cta p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    max-width: 540px;
    margin: 0 auto 40px;
    opacity: 0.9;
  }
  .final-cta .cta-row { justify-content: center; }

  /* FOOTER */
  footer {
    background: #0a1d0e;
    color: rgba(255,255,255,0.7);
    padding: 90px 0 40px;
  }

  /* Owner card — Kirkko Espoossa */
  .footer-owner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 44px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 44px;
    align-items: center;
  }
  @media (max-width: 720px) {
    .footer-owner {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 24px;
      padding: 32px 28px;
    }
  }
  .footer-owner img {
    height: 90px;
    width: auto;
  }
  @media (max-width: 720px) {
    .footer-owner img { height: 72px; margin: 0 auto; }
  }
  .footer-owner-text { color: var(--green-ink); }
  .footer-owner-text .label {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    opacity: 0.65;
    margin-bottom: 6px;
  }
  .footer-owner-text h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--green-ink);
  }
  .footer-owner-text p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(14,40,18,0.7);
    max-width: 520px;
  }
  @media (max-width: 720px) {
    .footer-owner-text p { margin: 0 auto; }
  }

  /* Footer columns */
  .footer-cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 50px;
  }
  @media (max-width: 820px) {
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 480px) {
    .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  }

  .footer-brand .logo { color: var(--white); margin-bottom: 14px; }
  .footer-brand .slogan {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 280px;
    opacity: 0.85;
    margin-bottom: 22px;
  }
  .footer-evlut {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    opacity: 0.72;
    line-height: 1.3;
    border: 1px solid rgba(233,245,238,0.18);
    border-radius: 999px;
    padding: 8px 12px;
  }
  .footer-evlut img { height: 36px; width: auto; }

  .footer-col h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0.85;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    font-size: 0.95rem;
    transition: color 0.2s var(--ease);
  }
  .footer-links a:hover { color: var(--white); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    opacity: 0.55;
  }

  /* REVEAL ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  .delay-1 { transition-delay: 0.08s; }
  .delay-2 { transition-delay: 0.16s; }
  .delay-3 { transition-delay: 0.24s; }
  .delay-4 { transition-delay: 0.32s; }

  @keyframes float-1 {
    0%, 100% { transform: rotate(-9deg) translate(-60px, -10px); }
    50%      { transform: rotate(-9deg) translate(-60px, -22px); }
  }
  @keyframes float-2 {
    0%, 100% { transform: rotate(7deg) translate(60px, 30px); }
    50%      { transform: rotate(7deg) translate(60px, 18px); }
  }
  .phone-1 { animation: float-1 7s ease-in-out infinite; }
  .phone-2 { animation: float-2 7s ease-in-out infinite 0.5s; }
  @media (max-width: 500px) {
    @keyframes float-1 {
      0%, 100% { transform: rotate(-9deg) translate(-40px, -10px); }
      50%      { transform: rotate(-9deg) translate(-40px, -20px); }
    }
    @keyframes float-2 {
      0%, 100% { transform: rotate(7deg) translate(40px, 30px); }
      50%      { transform: rotate(7deg) translate(40px, 20px); }
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .phone-1, .phone-2 { animation: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
  }
