/* Hero */
      .hero {
        min-height: 75vh;
        display: flex;
        align-items: center;
        padding-top: calc(80px + var(--top-banner-h));
        position: relative;
        overflow: hidden;
      }
      .hero::before {
        content: '';
        position: absolute;
        top: -200px; right: -200px;
        width: 700px; height: 700px;
        background: rgba(22,164,233,0.06);
        border-radius: 50%;
      }
      .hero::after {
        content: '';
        position: absolute;
        bottom: -200px; left: -100px;
        width: 500px; height: 500px;
        background: rgba(15,127,184,0.04);
        border-radius: 50%;
      }
      /* Background image state — only active when ACF field is set */
      .hero.has-bg-image {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }
      .hero.has-bg-image::before {
        top: 0; right: 0;
        width: 100%; height: 100%;
        border-radius: 0;
        background: linear-gradient(to top, rgba(12, 40, 58, 0.92) 0%, rgba(12, 40, 58, 0.55) 50%, rgba(12, 40, 58, 0.15) 100%);
        z-index: 0;
      }
      .hero.has-bg-image::after {
        display: none;
      }
      /* Photo behind the hero is always dark — keep hero copy and the glass card white regardless of the light theme elsewhere on the page */
      .hero.has-bg-image h1,
      .hero.has-bg-image p {
        color: #ffffff;
      }
      .hero.has-bg-image .btn-ghost {
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.35);
      }
      .hero.has-bg-image .glass-card {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
      }
      .hero.has-bg-image .gc-header {
        border-bottom-color: rgba(255, 255, 255, 0.12);
      }
      .hero.has-bg-image .gc-row {
        border-bottom-color: rgba(255, 255, 255, 0.12);
      }
      .hero.has-bg-image .gc-title,
      .hero.has-bg-image .gc-value,
      .hero.has-bg-image .mf-value {
        color: #ffffff;
      }
      .hero.has-bg-image .gc-label {
        color: rgba(255, 255, 255, 0.75);
      }
      .hero.has-bg-image .mf-label {
        color: rgba(255, 255, 255, 0.65);
      }
      .hero.has-bg-image .mini-float {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
      }
      .hero-layout {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1;
      }
      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        color: var(--blue);
        margin-bottom: 20px;
      }
      .hero-eyebrow .line { width: 32px; height: 2px; background: var(--blue); border-radius: 2px; }
      .hero h1 {
        font-family: 'Tinos', serif;
        font-size: 54px;
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: -1.5px;
        margin-bottom: 20px;
        color: var(--blue);
      }
      .hero h1 .accent-text { color: var(--cta); }
      .hero p {
        font-size: 17px;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 32px;
        max-width: 500px;
        font-weight: 300;
      }
      .hero-btns { display: flex; gap: 12px; align-items: center; }

      /* Hero visual */
      .hero-visual { position: relative; }
      .glass-card {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 32px;
        box-shadow: 0 24px 80px rgba(15,23,41,0.1);
      }
      .gc-header {
        display: flex; justify-content: space-between; align-items: center;
        margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
      }
      .gc-title { font-family: 'Tinos', serif; font-size: 18px; font-weight: 700; letter-spacing: -0.5px; margin: 0; color: var(--text); }
      .gc-badge { background: var(--blue); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
      .gc-row {
        display: flex; justify-content: space-between; align-items: center;
        padding: 12px 0; border-bottom: 1px solid rgba(15,23,41,0.06);
      }
      .gc-row:last-child { border-bottom: none; }
      .gc-label { font-size: 13px; color: var(--text-secondary); font-weight: 400; }
      .gc-value { font-size: 13px; font-weight: 600; color: var(--text); }
      .gc-value.accent { color: var(--blue); }
      .mini-float {
        position: absolute;
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 14px 18px;
        box-shadow: 0 12px 40px rgba(15,23,41,0.12);
        display: flex; align-items: center; gap: 10px;
        animation: bob 5s ease-in-out infinite;
      }
      .mini-float.top { top: -50px; right: -16px; }
      .mini-float.bottom { bottom: -50px; left: -16px; animation-delay: 2.5s; }
      .mini-float .mf-icon {
        width: 36px; height: 36px;
        background: var(--blue-light);
        border-radius: 10px;
        display: flex; align-items: center; justify-content: center;
      }
      .mini-float .mf-icon svg { width: 18px; height: 18px; color: var(--blue); }
      .mini-float .mf-label { font-size: 10px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
      .mini-float .mf-value { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }

      /* Stats row */
      .stats-row {
        padding: 36px 0;
        background: var(--blue);
      }
      .stats-grid {
        display: grid; grid-template-columns: repeat(4, 1fr);
      }
      .stat-item {
        text-align: center; padding: 0 20px; border-left: 1px solid rgba(255,255,255,0.3);
        display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
      }
      .stat-item:first-child { border-left: none; }
      .stat-item .stat-num {
        font-family: 'Tinos', serif;
        font-size: 28px;
        font-weight: 700;
        color: #fff;
      }
      .stat-item .stat-desc { font-size: 12px; color: rgba(255,255,255,0.8); font-weight: 500; text-transform: uppercase; letter-spacing: 0.6px; }

      /* Features */
      .features { padding: 120px 0; }
      .feat-header { text-align: center; max-width: 560px; margin: 0 auto 60px; }
      .feat-grid {
        display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
      }
      .feat-card {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 32px 26px;
        transition: all 0.4s;
        position: relative;
        overflow: hidden;
      }
      .feat-card::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 3px;
        background: var(--blue);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
      }
      .feat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 60px rgba(15,23,41,0.1);
      }
      .feat-card:hover::after { transform: scaleX(1); }
      .feat-icon {
        width: 52px; height: 52px;
        background: var(--blue-light);
        border-radius: 14px;
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 20px;
      }
      .feat-icon svg { width: 24px; height: 24px; color: var(--blue); }
      .feat-icon.teal { background: var(--blue-light); }
      .feat-icon.teal svg { color: var(--blue); }
      .feat-card h3 {
        font-family: 'Tinos', serif;
        font-size: 20px; font-weight: 700; letter-spacing: -0.3px;
        margin-bottom: 8px;
        color: var(--blue);
      }
      .feat-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; font-weight: 300; }

      /* About split */
      .about-split { padding: 100px 0; background: #ffffff; }
      .split-grid {
        display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
      }
      .split-image {
        aspect-ratio: 4/3;
        background: var(--blue-light);
        border-radius: 20px;
        display: flex; align-items: center; justify-content: center;
      }
      .split-image svg { width: 60px; height: 60px; color: var(--blue); opacity: 0.2; }
      .split-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; display: block; }
      .split-content .section-p { margin-bottom: 24px; }

      /* Team */
      .team-band { padding: 100px 0; background: #ffffff; }
      .team-h { text-align: center; max-width: 600px; margin: 0 auto 60px; }
      .team-h .section-tag-bold { color: var(--cta); }
      .team-h .section-h2 { color: var(--blue); }
      .team-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
      .t-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 18px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
      }
      .t-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(15,23,41,0.12); }
      .t-img {
        aspect-ratio: 3/4;
        background: #e8edf3;
        display: flex; align-items: center; justify-content: center;
        overflow: hidden;
      }
      .t-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
      .t-img svg { width: 44px; height: 44px; color: var(--blue); opacity: 0.3; }
      .t-info { padding: 16px 18px 20px; background: #ffffff; }
      .t-info h4 { font-family: 'Tinos', serif; font-size: 17px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 4px; color: var(--blue); }
      .t-info p { font-size: 13px; font-weight: 500; color: var(--blue); }

      /* CTA override */
      .big-cta { padding: 100px 0; }
      .big-cta p { margin-bottom: 32px; max-width: 460px; margin-left: auto; margin-right: auto; }

      /* Contact */
      .contact-area { padding: 100px 0; }
      .contact-area .cf7-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
      .contact-area .cf7-col { display: flex; flex-direction: column; }
      .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
      .contact-form input, .contact-form textarea,
      .contact-area .wpcf7-form input:not([type="submit"]),
      .contact-area .wpcf7-form textarea,
      .contact-area .wpcf7-form select {
        width: 100%; box-sizing: border-box;
        border: 2px solid var(--border); color: var(--text); background: #ffffff;
        padding: 14px 16px; border-radius: 12px;
        font-family: 'Inter', sans-serif; font-size: 14px;
        margin-bottom: 12px; transition: border-color 0.3s;
      }
      .contact-form input:focus, .contact-form textarea:focus,
      .contact-area .wpcf7-form input:focus,
      .contact-area .wpcf7-form textarea:focus { outline: none; border-color: #16A4E9; }
      .contact-form textarea,
      .contact-area .wpcf7-form textarea { height: 120px; resize: vertical; }
      .contact-area .wpcf7-form label {
        display: block; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
        letter-spacing: 0.8px; text-transform: uppercase; color: var(--text);
        margin-bottom: 6px; margin-top: 16px;
      }
      .contact-area .wpcf7-form input::placeholder,
      .contact-area .wpcf7-form textarea::placeholder { color: rgba(15,23,41,0.4); }
      .contact-area .wpcf7-form .wpcf7-form-control-wrap { display: block; }
      .contact-area .wpcf7-form input[type="submit"] {
        width: 100%; box-sizing: border-box;
        background: var(--cta); color: #fff; border: none; cursor: pointer;
        padding: 16px 28px; border-radius: 12px;
        font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
        letter-spacing: 0.3px; margin-top: 8px;
        transition: background 0.2s, transform 0.2s;
      }
      .contact-area .wpcf7-form input[type="submit"]:hover { background: #c96a00; transform: translateY(-1px); }
      .contact-area .wpcf7-response-output { border-radius: 8px; font-size: 14px; margin-top: 8px; padding: 12px 16px; }
      .contact-area .wpcf7-mail-sent-ok { border-color: #4CAF50; color: #4CAF50; background: rgba(76,175,80,0.1); }
      .contact-area .wpcf7-validation-errors,
      .contact-area .wpcf7-acceptance-missing { border-color: #ff6b6b; color: #ff6b6b; background: rgba(255,107,107,0.1); }
      .contact-area .wpcf7-not-valid-tip { color: #ff6b6b; font-size: 12px; margin-top: -8px; margin-bottom: 8px; display: block; }
      .contact-aside h3 { font-family: 'Tinos', serif; font-size: 24px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px; color: var(--blue); }
      .contact-aside > p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; font-weight: 300; }
      .ca-item { display: flex; gap: 14px; margin-bottom: 20px; }
      .ca-icon {
        width: 44px; height: 44px;
        background: var(--blue-light);
        border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
      }
      .ca-icon svg { width: 20px; height: 20px; color: var(--blue); }
      .ca-text strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; color: var(--text); }
      .ca-text span { font-size: 14px; color: var(--text-secondary); font-weight: 300; }

      @media (max-width: 768px) {
        .hero-layout, .split-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
        .feat-grid, .team-cards { grid-template-columns: 1fr; }
        .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
        .stat-item:nth-child(3) { border-left: none; }
        .hero h1 { font-size: 36px; }
        .hero-btns { flex-direction: column; align-items: stretch; }
        .hero-visual { margin-top: 30px; margin-bottom: 50px; }
      }
