:root {
      --teal: #008080;
      --teal-dark: #006c6c;
      --charcoal: #212121;
      --charcoal-2: #303030;
      --gold: #FFD700;
      --deep-gold: #D4AF37;
      --mist: #E0F2F1;
      --mist-2: #F2FAF9;
      --white: #FFFFFF;
      --grey-100: #F6F7F7;
      --grey-200: #E8EBEB;
      --grey-500: #6C7474;
      --grey-700: #414747;
      --danger: #B3261E;
      --success: #116B46;
      --container: 1180px;
      --header-height: 82px;
      --radius-sm: 10px;
      --radius-md: 18px;
      --radius-lg: 30px;
      --shadow-soft: 0 18px 50px rgba(21, 54, 54, 0.10);
      --shadow-card: 0 12px 34px rgba(25, 44, 44, 0.08);
      --ease: cubic-bezier(.2,.75,.25,1);
    }

    *, *::before, *::after { box-sizing: border-box; }
   
    html {
    scroll-behavior: smooth;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #fff !important;
}
main section[id] {
    scroll-margin-top: 0px;
}
    body {
      margin: 0;
      background: var(--white);
      color: var(--charcoal);
      font-family: "Poppins", Montserrat, Inter, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.7;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }
    body.modal-open, body.menu-open { overflow: hidden; }
    img { max-width: 100%; display: block; }
    a { color: inherit; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; }
    ::selection { background: var(--gold); color: var(--charcoal); }

    .skip-link {
      position: fixed;
      top: 10px;
      left: 10px;
      z-index: 9999;
      transform: translateY(-160%);
      background: var(--charcoal);
      color: var(--white);
      padding: 10px 14px;
      border-radius: 8px;
      text-decoration: none;
      transition: transform .2s ease;
    }
    .skip-link:focus { transform: translateY(0); }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: var(--teal);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      line-height: 1.3;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 30px;
      height: 3px;
      background: var(--gold);
      border-radius: 99px;
    }
    .eyebrow.on-dark { color: var(--mist); }

    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { line-height: 1.12; letter-spacing: -.02em; }
    h1 {
      max-width: 840px;
      margin-bottom: 24px;
      font-size: clamp(42px, 6.2vw, 76px);
      font-weight: 700;
    }
    h2 {
      margin-bottom: 24px;
      font-size: clamp(32px, 4.2vw, 52px);
      font-weight: 700;
    }
    h3 { font-size: 21px; font-weight: 600; }
    .lead {
      max-width: 720px;
      color: var(--grey-700);
      font-size: clamp(18px, 2vw, 21px);
      line-height: 1.65;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 1000;
      height: var(--header-height);
      background: rgba(255,255,255,.92);
      border-bottom: 1px solid rgba(33,33,33,.06);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      transition: box-shadow .25s ease, background .25s ease;
    }
    .site-header.scrolled { box-shadow: 0 8px 28px rgba(17,51,51,.08); }
    .header-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .brand-lockup {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
      text-decoration: none;
    }
    .brand-mark {
      /*width: 27px;*/
      height: 80px;
      object-fit: contain;
    }
    .brand-name {
      display: block;
      color: var(--charcoal);
      font-size: 25px;
      font-weight: 700;
      letter-spacing: .17em;
      line-height: 1;
    }
    .brand-tagline {
      display: block;
      margin-top: 7px;
      color: var(--teal);
      font-size: 7px;
      font-weight: 600;
      letter-spacing: .24em;
      line-height: 1;
      white-space: nowrap;
    }
    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 30px;
    }
    .nav-link {
      position: relative;
      border: 0;
      background: transparent;
      padding: 9px 0;
      color: var(--grey-700);
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
    }
    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 3px;
      height: 2px;
      background: var(--teal);
      transition: right .25s var(--ease);
    }
    .nav-link:hover, .nav-link.active { color: var(--charcoal); }
    .nav-link:hover::after, .nav-link.active::after { right: 0; }

    .button {
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 12px 22px;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: .04em;
      line-height: 1;
      text-decoration: none;
      transition: transform .22s var(--ease), background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
    }
    .button:hover { transform: translateY(-2px); }
    .button:focus-visible, .nav-link:focus-visible, .icon-button:focus-visible, .step-tab:focus-visible, .footer-link:focus-visible {
      outline: 3px solid rgba(255,215,0,.7);
      outline-offset: 4px;
    }
    .button-primary {
      background: var(--teal);
      color: var(--white);
      box-shadow: 0 10px 24px rgba(0,128,128,.22);
    }
    .button-primary:hover { background: var(--teal-dark); box-shadow: 0 14px 30px rgba(0,128,128,.28); }
    .button-secondary { border-color: rgba(33,33,33,.22); color: var(--charcoal); background: var(--white); }
    .button-secondary:hover { border-color: var(--teal); color: var(--teal); }
    .button-gold { background: var(--gold); color: var(--charcoal); }
    .button-dark { background: var(--charcoal); color: var(--white); }
    .button-small { min-height: 42px; padding: 10px 18px; font-size: 14px; }

    .mobile-menu-button { display: none; }
    .icon-button {
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--grey-200);
      border-radius: 999px;
      background: var(--white);
      color: var(--charcoal);
    }
    .hamburger { width: 20px; height: 14px; position: relative; }
    .hamburger span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background: currentColor;
      border-radius: 99px;
      transition: transform .25s ease, top .25s ease, opacity .2s ease;
    }
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 6px; }
    .hamburger span:nth-child(3) { top: 12px; }
    .mobile-menu-button[aria-expanded="true"] .hamburger span:nth-child(1) { top: 6px; transform: rotate(45deg); }
    .mobile-menu-button[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
    .mobile-menu-button[aria-expanded="true"] .hamburger span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

    .mobile-panel {
      position: fixed;
      z-index: 990;
      top: var(--header-height);
      left: 0;
      right: 0;
      display: none;
      padding: 18px 20px 28px;
      background: var(--white);
      border-bottom: 1px solid var(--grey-200);
      box-shadow: 0 18px 30px rgba(20,40,40,.12);
    }
    .mobile-panel.open { display: grid; gap: 4px; }
    .mobile-panel .nav-link { padding: 14px 4px; border-bottom: 1px solid var(--grey-200); }
    .mobile-panel .button { margin-top: 12px; }

    main { overflow: clip; }
    section { position: relative; padding: 112px 0; }

    .hero {
      min-height: 100svh;
      display: flex;
      align-items: center;
      padding-top: calc(var(--header-height) + 70px);
      padding-bottom: 70px;
      background:
        linear-gradient(90deg, rgba(224,242,241,.46) 1px, transparent 1px) 0 0 / 86px 86px,
        linear-gradient(rgba(224,242,241,.46) 1px, transparent 1px) 0 0 / 86px 86px,
        var(--white);
    }
    .hero::before {
      content: "";
      position: absolute;
      right: -260px;
      top: 40px;
      width: 620px;
      height: 620px;
      border: 150px solid var(--mist);
      border-radius: 50%;
      opacity: .8;
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
      align-items: center;
      gap: clamp(40px, 7vw, 96px);
    }
    .hero-copy { max-width: 790px; }
    .hero-copy h1 .accent { color: var(--teal); }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 28px;
      margin-top: 46px;
      padding-top: 25px;
      border-top: 1px solid var(--grey-200);
      color: var(--grey-700);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .hero-proof span { display: inline-flex; align-items: center; gap: 10px; }
    .hero-proof span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

    .hero-visual {
      position: relative;
      min-height: 500px;
      display: grid;
      place-items: center;
    }
    .hero-mark-wrap {
      position: relative;
      width: min(380px, 88%);
      aspect-ratio: .82;
      display: grid;
      place-items: center;
    }
    .hero-mark-wrap::before,
    .hero-mark-wrap::after {
      content: "";
      position: absolute;
      z-index: -1;
      border-radius: 50%;
    }
    .hero-mark-wrap::before {
      inset: 5% -4% -5% 4%;
      border: 1px solid rgba(0,128,128,.22);
      animation: orbit 20s linear infinite;
    }
    .hero-mark-wrap::after {
      inset: 18% 8% 12% -2%;
      border: 1px dashed rgba(212,175,55,.48);
      animation: orbitReverse 26s linear infinite;
    }
    .hero-mark {
      width: 49%;
      filter: drop-shadow(0 22px 35px rgba(0,70,70,.15));
      animation: floatMark 6s ease-in-out infinite;
    }
    .hero-card {
      position: absolute;
      right: 0;
      bottom: 44px;
      width: min(260px, 76%);
      padding: 20px 21px;
      background: var(--charcoal);
      color: var(--white);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-soft);
    }
    .hero-card strong { display: block; margin-bottom: 7px; font-size: 14px; letter-spacing: .04em; }
    .hero-card span { display: block; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.6; }
    .hero-card::before { content: ""; display: block; width: 34px; height: 4px; margin-bottom: 14px; border-radius: 99px; background: var(--gold); }
    @keyframes floatMark { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
    @keyframes orbit { to { transform: rotate(360deg); } }
    @keyframes orbitReverse { to { transform: rotate(-360deg); } }

    .about-grid {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: clamp(50px, 8vw, 110px);
      align-items: start;
    }
    .about-statement {
      position: sticky;
      top: calc(var(--header-height) + 38px);
    }
    .statement-card {
      position: relative;
      overflow: hidden;
      margin-top: 34px;
      padding: 32px;
      background: var(--teal);
      color: var(--white);
      border-radius: var(--radius-lg);
    }
    .statement-card::after {
      content: "N";
      position: absolute;
      right: -20px;
      bottom: -62px;
      color: rgba(255,255,255,.08);
      font-size: 240px;
      font-weight: 700;
      line-height: 1;
    }
    .statement-card blockquote {
      position: relative;
      z-index: 2;
      margin: 0;
      font-size: clamp(24px, 3vw, 34px);
      font-weight: 600;
      line-height: 1.35;
    }
    .statement-card p { position: relative; z-index: 2; margin: 18px 0 0; color: rgba(255,255,255,.76); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
    .about-copy p { color: var(--grey-700); font-size: 17px; }
    .about-copy strong { color: var(--charcoal); }
    .standard { background: var(--mist-2); }
    .section-intro { max-width: 720px; margin-bottom: 52px; }
    .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .standard-card {
      position: relative;
      min-height: 320px;
      overflow: hidden;
      padding: 30px;
      background: var(--white);
      border: 1px solid rgba(0,128,128,.08);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-card);
      transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
    }
    .standard-card:hover { transform: translateY(-8px); border-color: rgba(0,128,128,.28); box-shadow: 0 22px 48px rgba(25,70,70,.13); }
    .card-number {
      display: inline-grid;
      width: 48px;
      height: 48px;
      place-items: center;
      margin-bottom: 54px;
      background: var(--mist);
      color: var(--teal);
      border-radius: 50%;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
    }
    .standard-card h3 { margin-bottom: 15px; }
    .standard-card p { margin: 0; color: var(--grey-700); }
    .standard-card::after {
      content: "";
      position: absolute;
      left: 30px;
      right: 30px;
      bottom: 0;
      height: 4px;
      background: var(--gold);
      transform: scaleX(.22);
      transform-origin: left;
      transition: transform .3s var(--ease);
    }
    .standard-card:hover::after { transform: scaleX(1); }
    .closing-line { margin: 42px 0 0; color: var(--teal); font-size: clamp(21px, 2.5vw, 30px); font-weight: 600; text-align: center; }

    .approach { background: var(--charcoal); color: var(--white); }
    .approach .section-intro p { color: rgba(255,255,255,.68); }
    .approach-shell {
      display: grid;
      grid-template-columns: .84fr 1.16fr;
      gap: 30px;
      align-items: stretch;
    }
    .step-tabs { display: grid; gap: 10px; }
    .step-tab {
      width: 100%;
      display: grid;
      grid-template-columns: 48px 1fr 24px;
      align-items: center;
      gap: 16px;
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 15px;
      padding: 17px 18px;
      background: rgba(255,255,255,.035);
      color: rgba(255,255,255,.64);
      text-align: left;
      transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s var(--ease);
    }
    .step-tab:hover { transform: translateX(5px); color: var(--white); border-color: rgba(255,255,255,.25); }
    .step-tab.active { color: var(--white); background: var(--teal); border-color: var(--teal); }
    .step-tab .num {
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
    }
    .step-tab.active .num { background: var(--gold); color: var(--charcoal); }
    .step-tab .label { font-size: 16px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
    .step-tab .arrow { font-size: 20px; }
    .step-detail {
      position: relative;
      overflow: hidden;
      min-height: 430px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(30px, 5vw, 58px);
      border: 1px solid rgba(255,255,255,.10);
      border-radius: var(--radius-lg);
      background: var(--charcoal-2);
    }
    .step-detail::before {
      content: attr(data-step-number);
      position: absolute;
      top: -34px;
      right: 20px;
      color: rgba(255,255,255,.035);
      font-size: clamp(170px, 23vw, 320px);
      font-weight: 700;
      line-height: 1;
    }
    .step-detail::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--gold);
    }
    .step-detail-content { position: relative; z-index: 2; max-width: 650px; }
    .step-detail h3 { margin-bottom: 18px; font-size: clamp(30px, 4vw, 47px); }
    .step-detail p { margin: 0; color: rgba(255,255,255,.72); font-size: 18px; }
    .approach-note {
      margin: 34px 0 0;
      padding: 24px 28px;
      border-left: 4px solid var(--gold);
      background: rgba(255,255,255,.045);
      color: rgba(255,255,255,.76);
      border-radius: 0 12px 12px 0;
    }
    .approach-note strong { color: var(--white); }

    .brand-section { background: var(--white); }
    .brand-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(42px, 8vw, 100px); align-items: center; }
    .oravu-identity {
      position: relative;
      min-height: 530px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: clamp(42px, 6vw, 76px);
      background: #F4F1E9;
      border: 1px solid rgba(16,42,67,.08);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      isolation: isolate;
    }
    .oravu-identity::before {
      content: "";
      position: absolute;
      inset: 22px;
      z-index: -1;
      border: 1px solid rgba(16,42,67,.07);
      border-radius: calc(var(--radius-lg) - 11px);
      pointer-events: none;
    }
    .oravu-logo-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: clamp(34px, 5vw, 54px);
      color: var(--teal);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .22em;
      line-height: 1.3;
      text-transform: uppercase;
    }
    .oravu-logo-kicker::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 99px;
      background: #C8A233;
    }
    .oravu-logo {
      width: min(100%, 560px);
      height: auto;
      overflow: visible;
      filter: drop-shadow(0 10px 18px rgba(16,42,67,.06));
    }
    .brand-copy .lead { margin-bottom: 28px; }
    .brand-copy p:not(.lead) { color: var(--grey-700); }
    .brand-chip {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 25px;
      padding: 8px 13px;
      border: 1px solid rgba(0,128,128,.18);
      border-radius: 999px;
      background: var(--mist-2);
      color: var(--teal);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .brand-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

    .contact { background: var(--teal); color: var(--white); }
    .contact::before {
      content: "";
      position: absolute;
      width: 430px;
      height: 430px;
      left: -220px;
      bottom: -220px;
      border: 110px solid rgba(255,255,255,.06);
      border-radius: 50%;
    }
    .contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(45px, 8vw, 90px); align-items: start; }
    .contact-copy h2 { max-width: 560px; }
    .contact-copy > p { color: rgba(255,255,255,.77); font-size: 18px; }
    .interest-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0 36px; }
    .interest-list span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.23); border-radius: 999px; color: rgba(255,255,255,.9); font-size: 12px; }
    .email-link { display: inline-flex; align-items: center; gap: 12px; color: var(--white); font-size: clamp(20px, 3vw, 28px); font-weight: 600; text-decoration: none; }
    .email-link::before { content: "@"; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--gold); color: var(--charcoal); font-size: 17px; }

    .contact-form {
      padding: clamp(28px, 4vw, 42px);
      background: var(--white);
      color: var(--charcoal);
      border-radius: var(--radius-lg);
      box-shadow: 0 24px 60px rgba(0,60,60,.25);
    }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .form-field { display: grid; gap: 8px; }
    .form-field.full { grid-column: 1 / -1; }
    .form-field label { color: var(--grey-700); font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
    .required { color: var(--teal); }
    .form-field input, .form-field select, .form-field textarea {
      width: 100%;
      border: 1px solid #D9DEDE;
      border-radius: 11px;
      background: var(--white);
      color: var(--charcoal);
      padding: 13px 14px;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,128,128,.10); }
    .form-field textarea { min-height: 140px; resize: vertical; }
    .field-error { min-height: 18px; margin: 0; color: var(--danger); font-size: 12px; }
    .contact-form .button { margin-top: 8px; width: 100%; }
    .form-note { margin: 16px 0 0; color: var(--grey-500); font-size: 11px; line-height: 1.6; text-align: center; }
    .honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }

    .site-footer { padding: 62px 0 28px; background: var(--charcoal); color: var(--white); }
    .footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 42px; }
    .footer-brand .brand-name { color: var(--white); }
    .footer-brand .brand-tagline { color: var(--mist); }
    .footer-brand .brand-lockup { margin-bottom: 24px; }
    .footer-brand p { max-width: 420px; color: rgba(255,255,255,.62); font-size: 14px; }
    .footer-title { margin: 0 0 17px; color: var(--mist); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
    .footer-links { display: grid; gap: 11px; }
    .footer-link { width: fit-content; border: 0; padding: 0; background: none; color: rgba(255,255,255,.72); font-size: 14px; text-decoration: none; text-align: left; }
    .footer-link:hover { color: var(--gold); }
    .footer-legal {
      display: flex;
      justify-content: space-between;
      gap: 22px;
      margin-top: 48px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.1);
      color: rgba(255,255,255,.48);
      font-size: 11px;
      line-height: 1.7;
    }
    .footer-legal span:last-child { text-align: right; }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 4000;
      display: none;
      place-items: center;
      padding: 20px;
      background: rgba(14,25,25,.66);
      backdrop-filter: blur(8px);
    }
    .modal-backdrop.open { display: grid; }
    .modal {
      width: min(760px, 100%);
      max-height: min(82vh, 820px);
      overflow: auto;
      background: var(--white);
      border-radius: 24px;
      box-shadow: 0 30px 80px rgba(0,0,0,.28);
      animation: modalIn .24s var(--ease) both;
    }
    @keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
    .modal-header {
      position: sticky;
      top: 0;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 22px 26px;
      background: rgba(255,255,255,.95);
      border-bottom: 1px solid var(--grey-200);
      backdrop-filter: blur(12px);
    }
    .modal-header h2 { margin: 0; font-size: 24px; }
    .modal-close { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--grey-200); border-radius: 50%; background: var(--white); color: var(--charcoal); font-size: 22px; }
    .modal-body { padding: 26px; }
    .modal-body h3 { margin: 28px 0 10px; font-size: 17px; }
    .modal-body p, .modal-body li { color: var(--grey-700); font-size: 14px; }
    .modal-body ul { padding-left: 20px; }
    .company-table { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--grey-200); border-radius: 14px; background: var(--grey-200); }
    .company-row { display: grid; grid-template-columns: 190px 1fr; gap: 18px; padding: 14px 16px; background: var(--white); }
    .company-row dt { color: var(--grey-500); font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
    .company-row dd { margin: 0; color: var(--charcoal); font-size: 14px; }

    .toast {
      position: fixed;
      z-index: 5000;
      left: 50%;
      bottom: 26px;
      width: min(480px, calc(100% - 32px));
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 15px 17px;
      background: var(--charcoal);
      color: var(--white);
      border-radius: 13px;
      box-shadow: 0 20px 50px rgba(0,0,0,.25);
      transform: translate(-50%, 140%);
      opacity: 0;
      transition: transform .32s var(--ease), opacity .32s ease;
    }
    .toast.show { transform: translate(-50%, 0); opacity: 1; }
    .toast.error .toast-icon { background: var(--danger); color: var(--white); }
    .toast-icon { display: grid; min-width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--gold); color: var(--charcoal); font-weight: 700; }
    .toast strong { display: block; margin-bottom: 2px; font-size: 13px; }
    .field-error[data-server-error="1"] { color: var(--danger); }
    .toast span { color: rgba(255,255,255,.72); font-size: 12px; }
    [data-reveal].revealed { opacity: 1; transform: none; }
    [data-reveal-delay="1"] { transition-delay: .08s; }
    [data-reveal-delay="2"] { transition-delay: .16s; }
    [data-reveal-delay="3"] { transition-delay: .24s; }
    .contact-form textarea {
    min-height: 90px;
    height: 90px;
}

    @media (max-width: 980px) {
      :root { --header-height: 74px; }
      .desktop-nav { display: none; }
      .mobile-menu-button { display: inline-flex; }
      .hero { min-height: auto; }
      .hero-grid, .about-grid, .approach-shell, .brand-grid, .contact-grid { grid-template-columns: 1fr; }
      .hero-copy { max-width: 840px; }
      .hero-visual { min-height: 390px; margin-top: -20px; }
      .hero-mark-wrap { width: 320px; }
      .about-statement { position: static; }
      .cards-grid { grid-template-columns: 1fr; }
      .standard-card { min-height: auto; }
      .card-number { margin-bottom: 28px; }
      .approach-shell { gap: 18px; }
      .step-detail { order: -1; }
      .step-tabs { grid-template-columns: repeat(4, 1fr); }
      .step-tab { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 14px 8px; }
      .step-tab .label { font-size: 11px; }
      .step-tab .arrow { display: none; }
      .step-tab:hover { transform: translateY(-3px); }
      .step-detail { min-height: 350px; }
      .brand-copy { order: 1; }
      .oravu-identity { order: -1; }
      .contact-copy { max-width: 780px; }
    }

    @media (max-width: 720px) {
      .container { width: min(calc(100% - 28px), var(--container)); }
      section { padding: 82px 0; }
      .brand-name { font-size: 21px; }
      .brand-tagline { font-size: 6px; }
      .brand-mark { height: 50px; }
      .hero { padding-top: calc(var(--header-height) + 56px); padding-bottom: 56px; }
      .hero::before { width: 420px; height: 420px; right: -260px; border-width: 110px; }
      .hero-grid { gap: 26px; }
      .hero-actions { display: grid; grid-template-columns: 1fr; }
      .hero-actions .button { width: 100%; }
      .hero-proof { display: grid; gap: 12px; }
      .hero-visual { min-height: 340px; }
      .hero-mark-wrap { width: 270px; }
      .hero-card { right: 2%; bottom: 20px; }
      .statement-card { padding: 26px; }
      .cards-grid { gap: 14px; }
      .standard-card { padding: 25px; }
      .step-tabs { grid-template-columns: 1fr 1fr; }
      .step-detail { min-height: 330px; padding: 28px; }
      .oravu-identity { min-height: 390px; padding: 38px 30px; }
      .oravu-logo-kicker { margin-bottom: 32px; }
      .form-grid { grid-template-columns: 1fr; }
      .form-field.full { grid-column: auto; }
      .footer-grid { grid-template-columns: 1fr; gap: 30px; }
      .footer-legal { display: grid; }
      .footer-legal span:last-child { text-align: left; }
      .company-row { grid-template-columns: 1fr; gap: 4px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
      [data-reveal] { opacity: 1; transform: none; }
    }
