/* ============================================================
       1. CUSTOM PROPERTIES
       ============================================================ */
    :root {
      --brand: #AE5438;
      --brand-light: #C4623F;
      --brand-dark: #8B4230;
      --brand-darker: #6B3020;
      --secondary: #1B7A8A;
      --secondary-light: #2A9BB0;
      --secondary-dark: #145E6C;

      --neutral-50: #FAF9F8;
      --neutral-100: #F5F3F1;
      --neutral-200: #E8E4E1;
      --neutral-300: #D4CEC9;
      --neutral-400: #A8A099;
      --neutral-500: #78716C;
      --neutral-600: #57534E;
      --neutral-700: #44403C;
      --neutral-800: #292524;
      --neutral-900: #1C1917;

      --success: #10B981;
      --warning: #F59E0B;
      --error: #EF4444;
      --info: #3B82F6;

      --grad-primary: linear-gradient(135deg, #C4623F, #AE5438);
      --grad-primary-hover: linear-gradient(150deg, #D4724F, #AE5438);
      --grad-hero: linear-gradient(135deg, #1C1917 0%, #2d1a14 35%, #5c2e1e 70%, #8B4230 100%);
      --grad-subtle: linear-gradient(180deg, #FFFFFF, #FAF8F6);
      --grad-subtle-alt: linear-gradient(135deg, #FDFBFA, #F5F0ED);
      --grad-card: linear-gradient(180deg, #FFFFFF, #FDFBFA);
      --grad-dark: linear-gradient(135deg, #1C1917, #292524);
      --grad-text: linear-gradient(135deg, #C4623F, #1B7A8A);
      --grad-divider: linear-gradient(90deg, transparent, var(--neutral-200) 50%, transparent);
      --grad-secondary: linear-gradient(135deg, #1B7A8A, #2A9BB0);

      --shadow-1: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
      --shadow-2: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
      --shadow-3: 0 12px 32px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
      --shadow-4: 0 24px 48px rgba(0,0,0,.16);

      --font: 'Montserrat', sans-serif;
      --ease: cubic-bezier(.16, 1, .3, 1);
      --t-fast: 200ms var(--ease);
      --t-base: 300ms var(--ease);
      --t-slow: 500ms var(--ease);
    }

    /* ============================================================
       2. RESET & BASE
       ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--font);
      font-weight: 400;
      font-size: 16px;
      line-height: 1.6;
      color: var(--neutral-800);
      background: var(--grad-subtle);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
    ul, ol { list-style: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    /* Skip link (accessibility) */
    .skip-link {
      position: absolute; top: -100%; left: 16px; z-index: 9999;
      padding: 12px 24px; background: var(--brand); color: #fff;
      border-radius: 0 0 8px 8px; font-weight: 600;
      transition: top var(--t-fast);
    }
    .skip-link:focus { top: 0; }

    /* ============================================================
       3. TYPOGRAPHY
       ============================================================ */
    h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--neutral-900); }
    h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -.02em; }
    h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; letter-spacing: -.02em; }
    h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 600; }
    h4 { font-size: 1.125rem; font-weight: 600; }
    .label {
      font-size: .75rem; font-weight: 600; letter-spacing: .08em;
      text-transform: uppercase; color: var(--neutral-500);
    }
    .gradient-text {
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ============================================================
       4. ANIMATIONS & KEYFRAMES
       ============================================================ */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50%      { transform: translateY(-20px) rotate(2deg); }
    }
    @keyframes shimmer {
      0%   { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }
    @keyframes scrollHint {
      0%, 100% { opacity: .6; transform: translateY(0); }
      50%      { opacity: 1; transform: translateY(8px); }
    }
    @keyframes gradientShift {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    /* Fallback: if JS hasn't run after 2s or no-js class present, show everything */
    html.no-js .reveal,
    html:not(.js-ready) .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ============================================================
       5. LAYOUT
       ============================================================ */
    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .section {
      padding: 96px 0;
      position: relative;
    }
    .section--sm { padding: 64px 0; }
    .grid {
      display: grid;
      gap: 24px;
    }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }

    @media (max-width: 768px) {
      .container { padding: 0 16px; }
      .section { padding: 64px 0; }
      .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    }
    @media (min-width: 769px) and (max-width: 1024px) {
      .grid-4 { grid-template-columns: repeat(2, 1fr); }
    }

    /* ============================================================
       6. HEADER & NAV
       ============================================================ */
    .header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      transition: background var(--t-base), box-shadow var(--t-base), backdrop-filter var(--t-base);
    }
    .header--transparent { background: transparent; }
    .header--solid {
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.85));
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: var(--shadow-1);
    }
    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .header__logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .header__logo svg {
      width: 40px;
      height: 40px;
      transition: transform var(--t-base);
    }
    .header__logo:hover svg { transform: scale(1.05); }
    .header__logo-text {
      font-weight: 700;
      font-size: 1.125rem;
      letter-spacing: -.01em;
      transition: color var(--t-fast);
    }
    .header--transparent .header__logo-text { color: #fff; }
    .header--solid .header__logo-text { color: var(--neutral-900); }

    .nav { display: flex; align-items: center; gap: 8px; }
    .nav__link {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      padding: 8px 14px;
      border-radius: 12px;
      transition: background var(--t-fast), transform var(--t-fast);
      position: relative;
    }
    .nav__link:hover {
      background: rgba(174, 84, 56, .08);
      transform: translateY(-1px);
    }
    .nav__link svg {
      width: 22px; height: 22px;
      stroke-width: 1.8;
      transition: stroke var(--t-fast), transform var(--t-fast);
    }
    .nav__link:hover svg { transform: scale(1.1); }
    .header--transparent .nav__link svg { stroke: rgba(255,255,255,.85); }
    .header--solid .nav__link svg { stroke: var(--neutral-600); }
    .header--transparent .nav__link:hover svg { stroke: #fff; }
    .header--solid .nav__link:hover svg { stroke: var(--brand); }
    .nav__label {
      font-size: .625rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      transition: color var(--t-fast);
    }
    .header--transparent .nav__label { color: rgba(255,255,255,.7); }
    .header--solid .nav__label { color: var(--neutral-500); }
    .header--transparent .nav__link:hover .nav__label { color: #fff; }
    .header--solid .nav__link:hover .nav__label { color: var(--brand); }

    .header__cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      background: var(--grad-primary);
      background-size: 200% 200%;
      color: #fff;
      font-size: .8125rem;
      font-weight: 600;
      letter-spacing: .03em;
      border-radius: 100px;
      box-shadow: var(--shadow-1);
      transition: box-shadow var(--t-fast), transform var(--t-fast), background-position var(--t-base);
    }
    .header__cta:hover {
      box-shadow: var(--shadow-2);
      transform: translateY(-1px);
    }
    .header__cta:active { transform: scale(.97) translateY(1px); }
    .header__cta svg { width: 16px; height: 16px; stroke: #fff; }

    /* Mobile burger */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      z-index: 1001;
    }
    .burger__line {
      width: 24px; height: 2px;
      border-radius: 2px;
      transition: transform var(--t-base), opacity var(--t-fast), background var(--t-fast);
    }
    .header--transparent .burger__line { background: #fff; }
    .header--solid .burger__line { background: var(--neutral-800); }
    .burger--open .burger__line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .burger--open .burger__line:nth-child(2) { opacity: 0; }
    .burger--open .burger__line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Mobile nav overlay */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999;
      background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,249,248,.98));
      backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--t-base);
    }
    .mobile-nav--open {
      display: flex;
      opacity: 1;
      pointer-events: auto;
    }
    .mobile-nav__link {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--neutral-800);
      padding: 16px 32px;
      border-radius: 16px;
      transition: background var(--t-fast), color var(--t-fast);
    }
    .mobile-nav__link:hover {
      background: rgba(174, 84, 56, .06);
      color: var(--brand);
    }

    @media (max-width: 768px) {
      .nav, .header__cta { display: none; }
      .burger { display: flex; }
    }

    /* ============================================================
       7. HERO
       ============================================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: var(--grad-hero);
      overflow: hidden;
    }
    /* Decorative circles echoing the logo */
    .hero::before, .hero::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    .hero::before {
      width: clamp(300px, 40vw, 600px);
      height: clamp(300px, 40vw, 600px);
      border: 2px solid rgba(174, 84, 56, .15);
      top: 8%;
      right: -8%;
      animation: float 10s ease-in-out infinite;
    }
    .hero::after {
      width: clamp(200px, 25vw, 400px);
      height: clamp(200px, 25vw, 400px);
      border: 2px solid rgba(174, 84, 56, .1);
      bottom: 12%;
      left: 3%;
      animation: float 12s ease-in-out infinite reverse;
    }
    .hero__deco-line {
      position: absolute;
      width: clamp(200px, 35vw, 500px);
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(174, 84, 56, .12), transparent);
      top: 38%;
      right: -5%;
      transform: rotate(-15deg);
      pointer-events: none;
    }
    .hero__content {
      position: relative;
      z-index: 2;
      padding: 0 24px;
      max-width: 800px;
    }
    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 100px;
      margin-bottom: 32px;
      animation: fadeIn .8s var(--ease) .2s both;
    }
    .hero__badge-text {
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.8);
    }
    .hero__badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--success);
      box-shadow: 0 0 8px rgba(16, 185, 129, .5);
    }
    .hero h1 {
      color: #fff;
      font-size: clamp(2.25rem, 6vw, 3.75rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -.03em;
      margin-bottom: 16px;
      animation: fadeInUp .8s var(--ease) .3s both;
    }
    .hero h1 span {
      display: block;
      background: linear-gradient(135deg, #fff 30%, rgba(196, 98, 63, .8));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero__sub {
      font-size: clamp(1rem, 2vw, 1.25rem);
      font-weight: 400;
      color: rgba(255,255,255,.65);
      max-width: 520px;
      margin: 0 auto 40px;
      line-height: 1.6;
      animation: fadeInUp .8s var(--ease) .45s both;
    }
    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      animation: fadeInUp .8s var(--ease) .6s both;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 32px;
      font-size: .9375rem;
      font-weight: 600;
      border-radius: 12px;
      transition: all var(--t-fast);
      position: relative;
      overflow: hidden;
    }
    .btn svg { width: 20px; height: 20px; flex-shrink: 0; }
    .btn--primary {
      background: var(--grad-primary);
      background-size: 200% 200%;
      color: #fff;
      box-shadow: 0 4px 16px rgba(174, 84, 56, .35);
    }
    .btn--primary svg { stroke: #fff; }
    .btn--primary:hover {
      box-shadow: 0 8px 24px rgba(174, 84, 56, .45);
      transform: translateY(-2px);
    }
    .btn--primary:active { transform: scale(.97) translateY(1px); }
    .btn--outline {
      border: 1.5px solid rgba(255,255,255,.3);
      color: #fff;
      background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.08));
    }
    .btn--outline svg { stroke: #fff; }
    .btn--outline:hover {
      background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.15));
      border-color: rgba(255,255,255,.5);
      transform: translateY(-2px);
    }
    .btn--outline:active { transform: scale(.97) translateY(1px); }
    .btn--dark {
      background: var(--grad-primary);
      background-size: 200% 200%;
      color: #fff;
      box-shadow: 0 4px 16px rgba(174, 84, 56, .3);
      border-radius: 12px;
    }
    .btn--dark svg { stroke: #fff; }
    .btn--dark:hover {
      box-shadow: 0 8px 24px rgba(174, 84, 56, .4);
      transform: translateY(-2px);
    }
    .btn--dark:active { transform: scale(.97) translateY(1px); }

    .hero__scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      animation: fadeIn 1s var(--ease) 1.2s both;
    }
    .hero__scroll-text {
      font-size: .625rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.4);
    }
    .hero__scroll-icon {
      width: 24px; height: 24px;
      stroke: rgba(255,255,255,.4);
      animation: scrollHint 2s ease-in-out infinite;
    }

    /* ============================================================
       8. SECTION HEADINGS
       ============================================================ */
    .section__header {
      text-align: center;
      margin-bottom: 64px;
    }
    .section__label {
      display: inline-block;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 12px;
      padding: 6px 16px;
      background: linear-gradient(135deg, rgba(174,84,56,.06), rgba(174,84,56,.12));
      border-radius: 100px;
    }
    .section__title { margin-bottom: 16px; }
    .section__desc {
      max-width: 600px;
      margin: 0 auto;
      color: var(--neutral-500);
      font-size: 1.0625rem;
      line-height: 1.7;
    }

    /* ============================================================
       9. INFO BAR
       ============================================================ */
    .info-bar {
      position: relative;
      z-index: 10;
      margin-top: -48px;
    }
    .info-bar__inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: var(--grad-card);
      border-radius: 20px;
      box-shadow: var(--shadow-3);
      overflow: hidden;
    }
    .info-bar__item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 28px 32px;
      position: relative;
      transition: background var(--t-fast);
    }
    .info-bar__item:hover { background: rgba(174,84,56,.02); }
    .info-bar__item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: var(--grad-divider);
    }
    .info-bar__icon {
      width: 48px; height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(174,84,56,.06), rgba(174,84,56,.12));
      flex-shrink: 0;
    }
    .info-bar__icon svg { width: 22px; height: 22px; stroke: var(--brand); stroke-width: 1.8; }
    .info-bar__text h4 {
      font-size: .8125rem;
      font-weight: 600;
      color: var(--neutral-900);
      margin-bottom: 2px;
    }
    .info-bar__text p {
      font-size: .875rem;
      color: var(--neutral-500);
      line-height: 1.4;
    }
    .info-bar__text a { color: var(--brand); font-weight: 500; }
    .info-bar__text a:hover { text-decoration: underline; }

    @media (max-width: 768px) {
      .info-bar__inner { grid-template-columns: 1fr; }
      .info-bar__item:not(:last-child)::after {
        right: 15%; left: 15%; top: auto; bottom: 0;
        width: auto; height: 1px;
        background: var(--grad-divider);
      }
    }

    /* ============================================================
       10. ABOUT SECTION
       ============================================================ */
    .about { background: var(--grad-subtle); }
    .about__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .about__visual {
      position: relative;
    }
    .about__visual-circle {
      width: 100%;
      aspect-ratio: 1;
      max-width: 420px;
      margin: 0 auto;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(174,84,56,.06), rgba(174,84,56,.12));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .about__visual-circle svg {
      width: 60%;
      height: 60%;
      opacity: .15;
    }
    .about__visual-circle::before {
      content: '';
      position: absolute;
      inset: -16px;
      border-radius: 50%;
      border: 1.5px solid rgba(174,84,56,.08);
      animation: float 8s ease-in-out infinite;
    }
    .about__stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .stat {
      text-align: center;
      padding: 20px 8px;
      background: var(--grad-card);
      border-radius: 16px;
      box-shadow: var(--shadow-1);
      transition: transform var(--t-fast), box-shadow var(--t-fast);
    }
    .stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
    .stat__number {
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -.02em;
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .stat__label {
      font-size: .75rem;
      font-weight: 500;
      color: var(--neutral-500);
      margin-top: 2px;
    }

    @media (max-width: 768px) {
      .about__grid { grid-template-columns: 1fr; gap: 40px; }
      .about__visual { order: -1; }
      .about__visual-circle { max-width: 280px; }
    }

    /* ============================================================
       11. TEAM SECTION
       ============================================================ */
    .team { background: linear-gradient(180deg, #FAF8F6, #FFFFFF); }

    /* Lead doctor card (featured) */
    .team__lead {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 48px;
      align-items: center;
      max-width: 900px;
      margin: 0 auto 56px;
      padding: 48px;
      background: var(--grad-card);
      border-radius: 24px;
      box-shadow: var(--shadow-2);
      position: relative;
      overflow: hidden;
      transition: box-shadow var(--t-base), transform var(--t-base);
    }
    .team__lead:hover {
      box-shadow: var(--shadow-3);
      transform: translateY(-3px);
    }
    .team__lead::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--grad-primary);
    }
    .team__lead .team__photo-wrap {
      width: 200px; height: 200px;
    }

    /* Team grid — 7 members: 3 top + 4 bottom, centered */
    .team__grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 28px;
      max-width: 1100px;
      margin: 0 auto;
    }
    /* First row: 3 cards centered (offset by 1.5 cols on each side) */
    .team__grid .team__card:nth-child(1) { grid-column: 1 / 5; }
    .team__grid .team__card:nth-child(2) { grid-column: 5 / 9; }
    .team__grid .team__card:nth-child(3) { grid-column: 9 / 13; }
    /* Second row: 4 cards full width */
    .team__grid .team__card:nth-child(4) { grid-column: 1 / 4; }
    .team__grid .team__card:nth-child(5) { grid-column: 4 / 7; }
    .team__grid .team__card:nth-child(6) { grid-column: 7 / 10; }
    .team__grid .team__card:nth-child(7) { grid-column: 10 / 13; }

    /* Individual team card */
    .team__card {
      background: var(--grad-card);
      border-radius: 20px;
      padding: 32px 20px 28px;
      box-shadow: var(--shadow-1);
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: box-shadow var(--t-base), transform var(--t-base);
    }
    .team__card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--grad-primary);
      opacity: 0;
      transition: opacity var(--t-fast);
    }
    .team__card:hover {
      box-shadow: var(--shadow-3);
      transform: translateY(-4px);
    }
    .team__card:hover::before { opacity: 1; }

    .team__photo-wrap {
      width: 120px; height: 120px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: var(--shadow-2);
      margin: 0 auto 16px;
      position: relative;
      flex-shrink: 0;
    }
    .team__photo-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 3px solid transparent;
      background: var(--grad-primary) border-box;
      -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
    }
    .team__photo {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .team__card h3 { font-size: 1rem; margin-bottom: 4px; }
    .team__lead h3 { font-size: 1.5rem; margin-bottom: 4px; }
    .team__role {
      font-size: .8125rem;
      font-weight: 600;
      color: var(--brand);
    }
    .team__lead .team__role {
      font-size: .875rem;
      margin-bottom: 16px;
    }
    .team__bio {
      color: var(--neutral-600);
      line-height: 1.7;
      font-size: .9375rem;
    }

    @media (max-width: 1024px) {
      .team__grid { grid-template-columns: repeat(6, 1fr); }
      .team__grid .team__card:nth-child(1) { grid-column: 1 / 4; }
      .team__grid .team__card:nth-child(2) { grid-column: 4 / 7; }
      .team__grid .team__card:nth-child(3) { grid-column: 1 / 4; }
      .team__grid .team__card:nth-child(4) { grid-column: 4 / 7; }
      .team__grid .team__card:nth-child(5) { grid-column: 1 / 4; }
      .team__grid .team__card:nth-child(6) { grid-column: 4 / 7; }
      .team__grid .team__card:nth-child(7) { grid-column: 2 / 6; }
    }
    @media (max-width: 768px) {
      .team__lead {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
      }
      .team__lead .team__photo-wrap { width: 160px; height: 160px; margin: 0 auto; }
      .team__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .team__grid .team__card:nth-child(n) { grid-column: auto; }
      .team__card { padding: 24px 16px 20px; }
      .team__photo-wrap { width: 96px; height: 96px; }
    }

    /* ============================================================
       12. SERVICES
       ============================================================ */
    .services { background: var(--grad-subtle-alt); }
    .service-card {
      background: var(--grad-card);
      border-radius: 20px;
      padding: 36px 28px;
      box-shadow: var(--shadow-1);
      transition: transform var(--t-base), box-shadow var(--t-base);
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--grad-primary);
      opacity: 0;
      transition: opacity var(--t-fast);
    }
    .service-card:hover {
      transform: translateY(-4px) rotateX(1deg);
      box-shadow: var(--shadow-3);
    }
    .service-card:hover::before { opacity: 1; }
    .service-card__icon {
      width: 56px; height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(174,84,56,.06), rgba(174,84,56,.14));
      margin-bottom: 20px;
    }
    .service-card__icon svg { width: 28px; height: 28px; stroke: var(--brand); stroke-width: 1.6; }
    .service-card h3 { font-size: 1.125rem; margin-bottom: 12px; }
    .service-card__list {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .service-card__list li {
      font-size: .875rem;
      color: var(--neutral-600);
      padding-left: 16px;
      position: relative;
      line-height: 1.5;
    }
    .service-card__list li::before {
      content: '';
      position: absolute;
      left: 0; top: 9px;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--grad-primary);
    }

    /* ============================================================
       13. SEGURADORAS
       ============================================================ */
    .partners { background: var(--grad-subtle); }
    .partners__grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 16px;
    }
    .partner {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80px;
      padding: 12px 16px;
      background: var(--grad-card);
      border-radius: 14px;
      box-shadow: var(--shadow-1);
      transition: transform var(--t-fast), box-shadow var(--t-fast);
      overflow: hidden;
    }
    .partner:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-2);
    }
    .partner img {
      max-height: 48px;
      max-width: 100%;
      object-fit: contain;
      transition: transform var(--t-fast);
    }
    .partner:hover img { transform: scale(1.08); }
    .partner__text {
      font-size: .75rem;
      font-weight: 600;
      color: var(--neutral-500);
      text-align: center;
      transition: color var(--t-fast);
    }
    .partner:hover .partner__text { color: var(--neutral-800); }

    /* ============================================================
       14. CONTACT / MAP
       ============================================================ */
    .contact { background: var(--grad-dark); padding: 0; position: relative; }
    .contact__map {
      width: 100%;
      height: 450px;
      position: relative;
    }
    .contact__map iframe {
      width: 100%; height: 100%; border: 0;
      filter: saturate(.85) contrast(1.05);
    }
    .contact__overlay {
      position: relative;
      z-index: 2;
      margin-top: -80px;
      padding-bottom: 80px;
    }
    .contact__cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .contact-card {
      background: var(--grad-card);
      border-radius: 20px;
      padding: 32px 28px;
      box-shadow: var(--shadow-3);
      text-align: center;
      transition: transform var(--t-base), box-shadow var(--t-base);
    }
    .contact-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-4);
    }
    .contact-card__icon {
      width: 56px; height: 56px;
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(174,84,56,.06), rgba(174,84,56,.14));
    }
    .contact-card__icon svg { width: 24px; height: 24px; stroke: var(--brand); stroke-width: 1.8; }
    .contact-card h4 {
      font-size: .9375rem;
      margin-bottom: 8px;
    }
    .contact-card p {
      font-size: .875rem;
      color: var(--neutral-500);
      line-height: 1.5;
    }
    .contact-card a {
      color: var(--brand);
      font-weight: 600;
      transition: opacity var(--t-fast);
    }
    .contact-card a:hover { opacity: .8; }

    @media (max-width: 768px) {
      .contact__cards { grid-template-columns: 1fr; }
      .contact__map { height: 300px; }
    }

    /* ============================================================
       15. CTA SECTION
       ============================================================ */
    .cta-section {
      background: var(--grad-hero);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      border-radius: 50%;
      border: 1.5px solid rgba(174,84,56,.12);
      top: -15%; right: -5%;
      pointer-events: none;
    }
    .cta-section h2 { color: #fff; margin-bottom: 12px; }
    .cta-section p {
      color: rgba(255,255,255,.6);
      font-size: 1.0625rem;
      margin-bottom: 32px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-section .btn--primary {
      background: linear-gradient(135deg, #fff, #F5F3F1);
      color: var(--brand);
      box-shadow: 0 4px 20px rgba(0,0,0,.2);
    }
    .cta-section .btn--primary svg { stroke: var(--brand); }
    .cta-section .btn--primary:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,.3);
    }

    /* ============================================================
       16. FOOTER
       ============================================================ */
    .footer {
      background: var(--grad-dark);
      padding: 64px 0 32px;
    }
    .footer__inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer__brand p {
      color: rgba(255,255,255,.5);
      font-size: .875rem;
      line-height: 1.7;
      margin-top: 16px;
      max-width: 320px;
    }
    .footer__logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .footer__logo svg { width: 36px; height: 36px; }
    .footer__logo-text {
      font-size: 1.125rem;
      font-weight: 700;
      color: #fff;
    }
    .footer h4 {
      font-size: .8125rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.4);
      margin-bottom: 20px;
    }
    .footer__links { display: flex; flex-direction: column; gap: 12px; }
    .footer__links a {
      font-size: .875rem;
      color: rgba(255,255,255,.6);
      transition: color var(--t-fast), transform var(--t-fast);
      display: inline-block;
    }
    .footer__links a:hover { color: #fff; transform: translateX(4px); }
    .footer__divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.08) 50%, transparent);
      margin-bottom: 24px;
    }
    .footer__bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer__copy {
      font-size: .8125rem;
      color: rgba(255,255,255,.35);
    }

    @media (max-width: 768px) {
      .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    }

    /* ============================================================
       17. FLOATING PHONE (MOBILE)
       ============================================================ */
    .fab-phone {
      display: none;
      position: fixed;
      bottom: 24px; right: 24px;
      z-index: 900;
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--grad-primary);
      box-shadow: 0 4px 20px rgba(174,84,56,.4);
      align-items: center;
      justify-content: center;
      transition: transform var(--t-fast), box-shadow var(--t-fast);
      animation: fadeInUp .6s var(--ease) 1s both;
    }
    .fab-phone:hover {
      transform: scale(1.08);
      box-shadow: 0 8px 28px rgba(174,84,56,.5);
    }
    .fab-phone:active { transform: scale(.95); }
    .fab-phone svg { width: 24px; height: 24px; stroke: #fff; }
    @media (max-width: 768px) { .fab-phone { display: flex; } }

    /* ============================================================
       18. SCROLL-TOP BUTTON
       ============================================================ */
    .scroll-top {
      position: fixed;
      bottom: 24px; right: 24px;
      z-index: 800;
      width: 44px; height: 44px;
      border-radius: 12px;
      background: var(--grad-card);
      box-shadow: var(--shadow-2);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--t-fast), transform var(--t-fast);
    }
    .scroll-top--visible { opacity: 1; pointer-events: auto; }
    .scroll-top:hover { transform: translateY(-2px); box-shadow: var(--shadow-3); }
    .scroll-top svg { width: 20px; height: 20px; stroke: var(--neutral-600); }
    @media (max-width: 768px) {
      .scroll-top { bottom: 90px; }
    }