    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:        #1C3D5A;
      --navy-deep:   #0F2235;
      --teal:        #2BBFCC;
      --teal-light:  #4DD4E0;
      --teal-dark:   #1A9CAB;
      --green:       #62C770;
      --green-dark:  #48B357;
      --cream:       #EBF9FB;
      --cream-dark:  #D4F0F4;
      --text:        #1C2E3D;
      --text-mid:    #4A6070;
      --text-light:  #8A9DAB;
      --grad-fresh:  linear-gradient(135deg, #2BBFCC 0%, #62C770 100%);
      --shadow:      0 12px 48px rgba(28,61,90,.13);
      --shadow-teal: 0 12px 40px rgba(43,191,204,.3);
      --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
      --spring:      cubic-bezier(0.32, 0.72, 0, 1);
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Outfit', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; line-height: 1.6; }

    .skip-link { position: absolute; top: -60px; left: 24px; background: var(--teal); color: #fff; padding: 10px 20px; border-radius: 0 0 8px 8px; font-weight: 600; text-decoration: none; z-index: 99999; transition: top .3s; }
    .skip-link:focus { top: 0; }
    :focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

    .cur { position: fixed; width: 10px; height: 10px; background: var(--teal); border-radius: 50%; pointer-events: none; z-index: 99999; transform: translate(-50%,-50%); transition: width .25s var(--ease-bounce), height .25s var(--ease-bounce); mix-blend-mode: multiply; }
    .cur-ring { position: fixed; width: 40px; height: 40px; border: 1.5px solid rgba(43,191,204,.5); border-radius: 50%; pointer-events: none; z-index: 99998; transform: translate(-50%,-50%); }

    .grain { position: fixed; inset: 0; pointer-events: none; z-index: 9997; opacity: .025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 200px; }

    #prog { position: fixed; top: 0; left: 0; width: 0; height: 3px; background: var(--grad-fresh); z-index: 9999; transition: width .08s linear; border-radius: 0 2px 2px 0; }

    /* NAV */
    nav { position: fixed; top: 0; inset-inline: 0; z-index: 1000; padding: 20px 0; transition: all .45s ease; }
    nav.scrolled { background: rgba(255,255,255,.94); backdrop-filter: blur(24px) saturate(1.8); padding: 12px 0; box-shadow: 0 1px 0 rgba(28,61,90,.08), 0 4px 30px rgba(28,61,90,.08); }
    .nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo-wrap img { height: 56px; width: auto; }
    .logo-text-block { display: none; flex-direction: column; }
    .logo-text-block .ln { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1.1; transition: color .4s; }
    .logo-text-block .lt { font-size: .58rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); }
    nav.scrolled .logo-text-block .ln { color: var(--navy); }
    .nav-links { list-style: none; display: flex; align-items: center; gap: 28px; }
    .nav-links a { text-decoration: none; font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.88); position: relative; transition: color .3s; letter-spacing: .3px; }
    .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--teal-light); transition: width .35s var(--ease-bounce); border-radius: 1px; }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { width: 100%; }
    nav.scrolled .nav-links a { color: var(--navy); }
    nav.scrolled .nav-links a:hover { color: var(--teal-dark); }
    nav.scrolled .nav-links a::after { background: var(--teal); }
    .nav-cta { background: var(--grad-fresh) !important; color: #fff !important; padding: 10px 22px; border-radius: 30px; font-weight: 600 !important; box-shadow: 0 4px 20px rgba(43,191,204,.4); transition: transform .3s var(--ease-bounce), box-shadow .3s !important; }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { transform: translateY(-2px) scale(1.03) !important; box-shadow: 0 8px 28px rgba(43,191,204,.55) !important; }
    .nav-cta:active { transform: scale(0.97) !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
    .hamburger span { display: block; width: 24px; height: 1.5px; background: rgba(255,255,255,.9); transition: all .35s ease; border-radius: 2px; }
    nav.scrolled .hamburger span { background: var(--navy); }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }
    .mob-menu { display: none; position: fixed; top: 76px; inset-inline: 0; background: #fff; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,.12); z-index: 999; border-top: 2px solid var(--cream-dark); }
    .mob-menu.open { display: flex; }
    .mob-menu a { padding: 15px 28px; text-decoration: none; color: var(--navy); font-weight: 500; border-bottom: 1px solid var(--cream); transition: background .2s, color .2s; }
    .mob-menu a:hover { background: var(--cream); color: var(--teal-dark); }
    .mob-menu a:last-child { color: var(--teal-dark); font-weight: 700; border-bottom: none; }

    /* SHARED */
    section { padding: 110px 40px; }
    .container { max-width: 1200px; margin: 0 auto; }
    .eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
    .eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--teal); border-radius: 1px; }
    .eyebrow-c { justify-content: center; text-align: center; }
    .eyebrow-c::before { display: none; }
    .s-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 700; color: var(--navy); line-height: 1.18; margin-bottom: 18px; }
    .s-title em { font-style: italic; color: var(--teal); }
    .s-sub { font-size: .98rem; color: var(--text-mid); line-height: 1.8; max-width: 580px; }

    .reveal { opacity: 0; transform: translateY(36px); filter: blur(4px); transition: opacity .85s var(--spring), transform .85s var(--spring), filter .7s var(--spring); }
    .reveal-l { opacity: 0; transform: translateX(-48px); filter: blur(4px); transition: opacity .85s var(--spring), transform .85s var(--spring), filter .7s var(--spring); }
    .reveal-r { opacity: 0; transform: translateX(48px); filter: blur(4px); transition: opacity .85s var(--spring), transform .85s var(--spring), filter .7s var(--spring); }
    .reveal.on, .reveal-l.on, .reveal-r.on { opacity: 1; transform: none; filter: blur(0); }

    .btn-p { display: inline-flex; align-items: center; gap: 10px; background: var(--grad-fresh); color: #fff; padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: .95rem; text-decoration: none; transition: transform .35s var(--ease-bounce), box-shadow .35s; box-shadow: 0 8px 32px rgba(43,191,204,.4); }
    .btn-p:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px rgba(43,191,204,.55); }
    .btn-p:active { transform: scale(0.97) !important; transition: transform .1s ease; }
    .btn-navy { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: #fff; padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: .95rem; text-decoration: none; transition: transform .35s var(--ease-bounce), box-shadow .35s; box-shadow: 0 8px 32px rgba(28,61,90,.25); }
    .btn-navy:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px rgba(28,61,90,.35); }
    .btn-navy:active { transform: scale(0.97) !important; transition: transform .1s ease; }
    .btn-icon-wrap { width: 30px; height: 30px; background: rgba(0,0,0,.15); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .72rem; flex-shrink: 0; transition: transform .35s var(--ease-bounce); }
    .btn-p:hover .btn-icon-wrap, .btn-navy:hover .btn-icon-wrap { transform: translateX(2px) translateY(-1px) scale(1.12); }
    .btn-navy .btn-icon-wrap { background: rgba(255,255,255,.14); }

    /* HERO */
    .about-hero { min-height: 88vh; background: var(--navy-deep); display: flex; align-items: stretch; overflow: hidden; padding-top: 80px; position: relative; }
    .hero-img-col { position: relative; flex: 0 0 52%; overflow: hidden; }
    .hero-img-col img { width: 100%; height: 100%; object-fit: cover; opacity: .6; transition: transform 10s ease; display: block; }
    .about-hero:hover .hero-img-col img { transform: scale(1.05); }
    .hero-img-col::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,34,53,.1) 40%, var(--navy-deep) 100%); }
    .hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
    .hero-orb1 { width: 380px; height: 380px; background: rgba(43,191,204,.12); top: -60px; right: 8%; animation: forb 10s ease-in-out infinite; }
    .hero-orb2 { width: 260px; height: 260px; background: rgba(98,199,112,.08); bottom: -30px; right: 28%; animation: forb 12s ease-in-out infinite; animation-delay: -5s; }
    @keyframes forb { 0%,100%{transform:translate(0,0)} 50%{transform:translate(18px,-24px)} }
    .hero-content { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 72px 64px; position: relative; z-index: 10; }
    .hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(43,191,204,.12); border: 1px solid rgba(43,191,204,.28); border-radius: 30px; padding: 8px 20px; font-size: .75rem; color: var(--teal-light); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 28px; width: fit-content; }
    .badge-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pd 2s ease infinite; box-shadow: 0 0 8px var(--green); }
    @keyframes pd { 0%,100%{transform:scale(1)} 50%{transform:scale(1.7);opacity:.5} }
    .hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 24px; }
    .hero-content h1 em { font-style: italic; color: var(--teal-light); }
    .hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.62); line-height: 1.8; margin-bottom: 44px; max-width: 460px; font-weight: 300; }
    .hero-meta { display: flex; gap: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
    .hero-meta-item { display: flex; flex-direction: column; }
    .hero-meta-n { font-family: 'DM Mono', monospace; font-size: 1.9rem; font-weight: 500; color: var(--teal-light); line-height: 1; }
    .hero-meta-l { font-size: .68rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }

    /* MISSION */
    .mission { background: var(--cream); position: relative; overflow: hidden; }
    .mission::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(ellipse, rgba(43,191,204,.08), transparent 70%); }
    .mission-inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
    .mission-quote { font-family: 'Playfair Display', serif; font-size: clamp(1.55rem, 2.8vw, 2.2rem); font-weight: 400; color: var(--navy); line-height: 1.55; margin: 20px 0 36px; font-style: italic; }
    .mission-quote strong { font-style: normal; font-weight: 700; color: var(--teal-dark); }
    .mission-body { font-size: .98rem; color: var(--text-mid); line-height: 1.9; max-width: 680px; margin: 0 auto 52px; }
    .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
    .pillar-shell { background: rgba(43,191,204,.07); border: 1px solid rgba(43,191,204,.14); border-radius: 24px; padding: 3px; transition: border-color .4s; }
    .pillar-shell:hover { border-color: rgba(43,191,204,.3); }
    .pillar { background: #fff; border-radius: 21px; padding: 28px 24px; text-align: left; transition: transform .4s var(--ease-bounce), box-shadow .4s; box-shadow: inset 0 1px 0 rgba(255,255,255,.8); }
    .pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-teal); }
    .pillar-icon { width: 48px; height: 48px; background: linear-gradient(135deg, rgba(43,191,204,.15), rgba(98,199,112,.1)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--teal); margin-bottom: 16px; transition: transform .4s var(--ease-bounce); }
    .pillar:hover .pillar-icon { transform: scale(1.1) rotate(-3deg); }
    .pillar h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
    .pillar p { font-size: .85rem; color: var(--text-mid); line-height: 1.7; }

    /* TEAM */
    .team { background: #fff; }
    .team-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 72px; align-items: center; }
    .team-img-shell { background: rgba(43,191,204,.08); border: 1px solid rgba(43,191,204,.18); border-radius: 32px; padding: 4px; position: relative; }
    .team-img-inner { border-radius: 28px; overflow: hidden; }
    .team-img-inner img { width: 100%; height: 560px; object-fit: cover; object-position: top; display: block; transition: transform .7s var(--spring); }
    .team-img-shell:hover .team-img-inner img { transform: scale(1.03); }
    .team-img-badge { position: absolute; bottom: 24px; left: 24px; background: rgba(15,34,53,.88); backdrop-filter: blur(16px); border-radius: 16px; padding: 16px 20px; border: 1px solid rgba(43,191,204,.25); }
    .team-img-badge-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: #fff; }
    .team-img-badge-role { font-size: .72rem; color: var(--teal-light); letter-spacing: .5px; margin-top: 3px; }
    .team-name { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 6px; }
    .team-role { font-size: .78rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 24px; }
    .team-bio { font-size: .97rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 28px; }
    .team-quote { background: var(--cream); border-radius: 16px; padding: 22px 26px; border-left: 3px solid var(--teal); margin-bottom: 28px; }
    .team-quote p { font-family: 'Playfair Display', serif; font-size: .98rem; font-style: italic; color: var(--navy); line-height: 1.7; }
    .spec-label { font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 12px; }
    .spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-bottom: 32px; }
    .spec-item { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--text-mid); }
    .spec-item::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 6px rgba(43,191,204,.5); }
    .creds { display: flex; gap: 10px; flex-wrap: wrap; }
    .cred { display: inline-flex; align-items: center; gap: 6px; background: rgba(43,191,204,.08); color: var(--teal-dark); padding: 6px 14px; border-radius: 20px; font-size: .74rem; font-weight: 600; }

    /* EXPERTISE */
    .expertise { background: var(--navy); position: relative; overflow: hidden; }
    .expertise::before { content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(43,191,204,.1), transparent 70%); border-radius: 50%; }
    .expertise::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; background: radial-gradient(ellipse, rgba(98,199,112,.06), transparent 70%); border-radius: 50%; }
    .exp-head { text-align: center; margin-bottom: 72px; position: relative; z-index: 1; }
    .exp-head .eyebrow { color: var(--teal-light); justify-content: center; }
    .exp-head .eyebrow::before { background: var(--teal-light); }
    .exp-head .s-title { color: #fff; }
    .exp-head .s-sub { color: rgba(255,255,255,.52); margin: 0 auto; }
    .exp-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: start; position: relative; z-index: 1; }
    .exp-stats { display: flex; flex-direction: column; gap: 16px; }
    .exp-stat { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 28px 32px; display: flex; align-items: center; gap: 24px; transition: border-color .35s, background .35s; }
    .exp-stat:hover { border-color: rgba(43,191,204,.3); background: rgba(43,191,204,.04); }
    .exp-stat-n { font-family: 'DM Mono', monospace; font-size: 2.2rem; font-weight: 500; color: var(--teal-light); line-height: 1; white-space: nowrap; min-width: 80px; }
    .exp-stat-t { font-size: .87rem; color: rgba(255,255,255,.5); line-height: 1.6; }
    .exp-stat-t strong { display: block; color: rgba(255,255,255,.82); font-weight: 600; margin-bottom: 3px; }
    .exp-cards { display: flex; flex-direction: column; gap: 16px; }
    .exp-card { background: rgba(43,191,204,.08); border: 1px solid rgba(43,191,204,.2); border-radius: 20px; padding: 28px; transition: transform .4s var(--ease-bounce), border-color .3s; }
    .exp-card:hover { transform: translateY(-5px); border-color: rgba(43,191,204,.45); }
    .exp-card-icon { font-size: 1.5rem; color: var(--teal); margin-bottom: 10px; }
    .exp-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: #fff; margin-bottom: 7px; font-weight: 600; }
    .exp-card p { font-size: .84rem; color: rgba(255,255,255,.48); line-height: 1.7; }

    /* FEATURES */
    .features { background: var(--cream); }
    .feat-head { text-align: center; margin-bottom: 60px; }
    .feat-head .s-sub { margin: 0 auto; }
    .feat-bento { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: auto auto; gap: 18px; }
    .feat-shell { background: rgba(43,191,204,.07); border: 1px solid rgba(43,191,204,.13); border-radius: 28px; padding: 3px; transition: border-color .4s; }
    .feat-shell:hover { border-color: rgba(43,191,204,.3); }
    .feat-shell.large { grid-row: 1 / 3; }
    .feat-cell { background: #fff; border-radius: 25px; padding: 34px 30px; position: relative; overflow: hidden; transition: transform .4s var(--ease-bounce), box-shadow .4s; box-shadow: inset 0 1px 0 rgba(255,255,255,.8); height: 100%; display: flex; flex-direction: column; }
    .feat-cell:hover { transform: translateY(-6px); box-shadow: var(--shadow-teal); }
    .feat-icon { width: 54px; height: 54px; background: linear-gradient(135deg, rgba(43,191,204,.15), rgba(98,199,112,.08)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--teal); margin-bottom: 18px; transition: transform .4s var(--ease-bounce); flex-shrink: 0; }
    .feat-cell:hover .feat-icon { transform: scale(1.1) rotate(-3deg); }
    .feat-cell h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
    .feat-cell p { font-size: .87rem; color: var(--text-mid); line-height: 1.75; flex-grow: 1; }
    .feat-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(43,191,204,.1); color: var(--teal-dark); padding: 5px 12px; border-radius: 12px; font-size: .72rem; font-weight: 600; margin-top: 18px; width: fit-content; }
    .feat-no { position: absolute; bottom: 14px; right: 18px; font-family: 'DM Mono', monospace; font-size: 3.8rem; font-weight: 500; color: rgba(43,191,204,.06); line-height: 1; }

    /* STATS STRIP */
    .stats-strip { background: var(--navy-deep); padding: 72px 40px; }
    .stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
    .stat-item { text-align: center; }
    .stat-n { font-family: 'DM Mono', monospace; font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 500; color: var(--teal-light); line-height: 1; margin-bottom: 8px; }
    .stat-l { font-size: .72rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 2px; }

    /* LOCATION */
    .location { background: #fff; }
    .loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .loc-card { background: var(--navy-deep); border-radius: 32px; padding: 48px; position: relative; overflow: hidden; }
    .loc-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: radial-gradient(ellipse, rgba(43,191,204,.12), transparent 70%); border-radius: 50%; }
    .loc-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; position: relative; z-index: 1; }
    .loc-icon { width: 44px; height: 44px; background: rgba(43,191,204,.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--teal-light); font-size: 1rem; flex-shrink: 0; }
    .loc-label { font-size: .68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 4px; }
    .loc-value { font-size: .92rem; color: rgba(255,255,255,.82); line-height: 1.6; }
    .loc-value a { color: var(--teal-light); text-decoration: none; transition: color .2s; }
    .loc-value a:hover { color: #fff; }
    .loc-cta { margin-top: 36px; position: relative; z-index: 1; }
    .loc-text .s-sub { margin-bottom: 36px; }
    .loc-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .loc-note { margin-top: 20px; font-size: .82rem; color: var(--text-light); font-style: italic; }

    /* WAVES */
    .wave { display: block; width: 100%; overflow: hidden; line-height: 0; }
    .wave svg { display: block; width: 100%; }

    /* WHATSAPP */
    .wa-wrap { position: fixed; bottom: 32px; right: 32px; z-index: 9000; }
    .wa-btn { width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1.6rem; color: #fff; box-shadow: 0 4px 24px rgba(37,211,102,.45); transition: transform .35s var(--ease-bounce), box-shadow .35s; position: relative; }
    .wa-btn:hover { transform: scale(1.14); box-shadow: 0 8px 36px rgba(37,211,102,.65); }
    .wa-btn::before { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid rgba(37,211,102,.5); animation: wap 2.2s ease infinite; }
    @keyframes wap { 0%{opacity:1;transform:scale(1)} 100%{opacity:0;transform:scale(1.65)} }

    /* FOOTER */
    footer { background: var(--navy-deep); padding: 88px 40px 44px; }
    .foot-grid { max-width: 1200px; margin: 0 auto 64px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
    .foot-brand p { font-size: .87rem; color: rgba(255,255,255,.44); line-height: 1.8; margin: 16px 0 24px; }
    .foot-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: #fff; }
    .foot-tag { font-size: .58rem; letter-spacing: 2.5px; color: var(--teal); text-transform: uppercase; display: block; margin-top: 2px; }
    .socials { display: flex; gap: 10px; }
    .social { width: 40px; height: 40px; background: rgba(255,255,255,.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,.6); font-size: .95rem; transition: background .3s, color .3s, transform .3s var(--ease-bounce); }
    .social:hover { background: var(--teal); color: #fff; transform: translateY(-3px) scale(1.1); }
    .foot-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 20px; }
    .foot-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .foot-links a { text-decoration: none; font-size: .87rem; color: rgba(255,255,255,.5); transition: color .25s, transform .25s; display: flex; align-items: center; gap: 9px; }
    .foot-links a i { color: var(--teal); font-size: .8rem; width: 14px; }
    .foot-links a:hover { color: var(--teal-light); transform: translateX(4px); }
    .foot-bottom { max-width: 1200px; margin: 0 auto; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
    .foot-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }
    .foot-bottom a { color: rgba(43,191,204,.7); text-decoration: none; }
    .foot-bottom a:hover { color: var(--teal-light); }

    /* RESPONSIVE */
    @media(max-width:1024px) {
      .about-hero { flex-direction: column; }
      .hero-img-col { flex: 0 0 320px; }
      .hero-img-col::after { background: linear-gradient(to bottom, transparent 40%, var(--navy-deep) 100%); }
      .hero-content { padding: 40px; }
      .team-grid { grid-template-columns: 1fr; gap: 48px; }
      .exp-grid { grid-template-columns: 1fr; }
      .feat-bento { grid-template-columns: 1fr 1fr; }
      .feat-shell.large { grid-row: auto; }
      .stats-inner { grid-template-columns: repeat(2,1fr); }
      .loc-grid { grid-template-columns: 1fr; gap: 40px; }
      .foot-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
      .pillars { grid-template-columns: 1fr; }
    }
    @media(max-width:768px) {
      section { padding: 80px 24px; }
      .stats-strip { padding: 60px 24px; }
      nav { padding: 14px 0; }
      .nav-inner { padding: 0 24px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-content { padding: 32px 24px 48px; }
      .hero-meta { gap: 24px; flex-wrap: wrap; }
      .feat-bento { grid-template-columns: 1fr; }
      .foot-grid { grid-template-columns: 1fr; gap: 40px; }
      .foot-bottom { flex-direction: column; text-align: center; }
      .spec-grid { grid-template-columns: 1fr; }
      .cur, .cur-ring { display: none; }
    }
