  :root {
    --navy: #0A1628;
    --navy-mid: #122040;
    --navy-light: #1a3060;
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-pale: #f5e9c8;
    --white: #FAFAF8;
    --gray: #8a8f9e;
    --gray-light: #f0f0ed;
    --text: #1a1e2e;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold-light); }

  .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse 800px 600px at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 400px 400px at 10% 80%, rgba(201,168,76,0.05) 0%, transparent 60%);
  }

  .hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 100px;
    padding: 6px 16px;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
  }

  .hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .hero-h1 em {
    font-style: normal;
    color: var(--gold);
    position: relative;
  }

  .hero-h1 em::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px; right: 0;
    height: 3px;
    background: var(--gold);
    opacity: 0.4;
    border-radius: 2px;
  }

  .hero-sub {
    color: rgba(255,255,255,0.65);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.35);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
  }

  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .stat { }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
  }

  .stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-top: 4px;
  }

  /* Hero right panel */
  .hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
  }

  .hero-card-title {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 22px;
    margin-bottom: 28px;
  }

  .package-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .package-item:last-child { border-bottom: none; }

  .pkg-icon {
    width: 36px; height: 36px;
    background: rgba(201,168,76,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .pkg-title {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 4px;
  }

  .pkg-desc {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 1.5;
  }

  /* ─── SECTIONS COMMON ─── */
  section { padding: 100px 0; }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
  }

  .section-tag {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .section-sub {
    color: var(--gray);
    font-size: 17px;
    line-height: 1.7;
    max-width: 560px;
  }

  /* ─── WHY ROMANIA ─── */
  #why-romania {
    background: var(--gray-light);
  }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }

  .why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .why-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(0,0,0,0.07);
    transition: all 0.25s;
  }

  .why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--gold);
  }

  .why-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .why-card-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--navy);
  }

  .why-card-text {
    color: var(--gray);
    font-size: 13.5px;
    line-height: 1.6;
  }

  .why-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .why-info p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .romania-benefits {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .benefit-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 15px;
  }

  .benefit-row::before {
    content: '✓';
    width: 24px; height: 24px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
  }

  /* ─── WHAT YOU RECEIVE ─── */
  #what-you-get {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  #what-you-get::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  }

  #what-you-get .section-title { color: var(--white); }
  #what-you-get .section-sub { color: rgba(255,255,255,0.5); }
  #what-you-get .section-tag { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
  }

  .benefit-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }

  .benefit-card:hover {
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.04);
    transform: translateY(-4px);
  }

  .benefit-card-icon {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .benefit-card-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .benefit-card-text {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.7;
  }

  .benefit-card-highlight {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 500;
  }

  /* ─── INDUSTRIES ─── */
  #industries {
    background: var(--white);
  }

  .industries-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 56px;
  }

  .industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .industry-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    cursor: default;
    transition: all 0.25s;
    background: var(--white);
  }

  .industry-card:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.15);
  }

  .ind-icon { font-size: 36px; margin-bottom: 12px; }

  .ind-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
  }

  /* ─── PROCESS ─── */
  #process {
    background: var(--gray-light);
  }

  .process-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .process-header .section-sub {
    margin: 0 auto;
    max-width: 520px;
    text-align: center;
  }

  .steps-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 780px;
    margin: 0 auto;
  }

  .steps-line {
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.15));
  }

  .step-row {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 28px 28px 28px 0;
    border-radius: 14px;
    transition: all 0.2s;
    position: relative;
  }

  .step-row:hover {
    background: white;
    padding-left: 16px;
    margin-left: -16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  }

  .step-num {
    width: 56px; height: 56px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }

  .step-content { padding-top: 8px; }

  .step-title {
    font-weight: 600;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 6px;
  }

  .step-desc {
    color: var(--gray);
    font-size: 14.5px;
    line-height: 1.6;
  }

  .step-tag {
    display: inline-block;
    margin-top: 10px;
    background: rgba(201,168,76,0.12);
    color: var(--gold);
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
  }

  /* ─── FEES ─── */
  #fees {
    background: var(--white);
  }

  .fees-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
  }

  .fee-total {
    background: var(--navy);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .fee-total::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.15) 0%, transparent 70%);
  }

  .fee-amount {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    position: relative;
  }

  .fee-currency {
    font-size: 28px;
    vertical-align: super;
  }

  .fee-label {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    margin-top: 8px;
    position: relative;
  }

  .fee-tagline {
    color: var(--white);
    font-size: 17px;
    font-weight: 500;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
  }

  .fee-includes {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
  }

  .fee-include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    text-align: left;
  }

  .fee-include-item::before {
    content: '✈';
    color: var(--gold);
    flex-shrink: 0;
  }

  .fee-tranches {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .tranche {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 24px 28px;
    transition: all 0.2s;
  }

  .tranche:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201,168,76,0.12);
  }

  .tranche-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .tranche-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
  }

  .tranche-amount {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
  }

  .tranche-pct {
    font-size: 13px;
    color: var(--gray);
    font-weight: 400;
  }

  .tranche-desc {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
  }

  .tranche-trigger {
    margin-top: 10px;
    font-size: 13px;
    color: var(--navy-light);
    font-style: italic;
  }

  /* ─── DOCUMENTS ─── */
  #documents {
    background: var(--navy);
    position: relative;
  }

  #documents .section-title { color: var(--white); }
  #documents .section-sub { color: rgba(255,255,255,0.5); }
  #documents .section-tag { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); }

  .docs-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 4px;
    width: fit-content;
    margin: 40px 0 32px;
  }

  .doc-tab {
    padding: 10px 24px;
    border-radius: 7px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    border: none;
    background: none;
    transition: all 0.2s;
  }

  .doc-tab.active {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
  }

  .docs-panel { display: none; }
  .docs-panel.active { display: block; }

  .doc-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .doc-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 18px 20px;
    transition: border-color 0.2s;
  }

  .doc-item:hover { border-color: rgba(201,168,76,0.3); }

  .doc-num {
    width: 28px; height: 28px;
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .doc-text {
    color: rgba(255,255,255,0.8);
    font-size: 14.5px;
    line-height: 1.5;
  }

  /* ─── ABOUT ─── */
  #about {
    background: var(--white);
  }

  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }

  .about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
  }

  .badge {
    background: var(--gold-pale);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
  }

  .about-text p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .about-text strong { color: var(--navy); }

  .company-card {
    background: var(--navy);
    border-radius: 20px;
    padding: 40px;
    color: white;
  }

  .company-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--white);
  }

  .company-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 14px;
  }

  .company-row:last-child { border-bottom: none; }

  .company-row-label { color: rgba(255,255,255,0.45); }

  .company-row-val { color: var(--white); font-weight: 500; }

  .qexp-block {
    margin-top: 24px;
    padding: 20px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
  }

  .qexp-block p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.6;
  }

  .qexp-block strong { color: var(--gold-light); }

  /* ─── CONTACT ─── */
  #contact {
    background: var(--gray-light);
  }

  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
  }

  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 20px;
  }

  .contact-info p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
  }

  .contact-detail-icon {
    width: 40px; height: 40px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .contact-detail-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .contact-detail-val {
    font-size: 15px;
    color: var(--navy);
    font-weight: 500;
  }

  /* Form */
  .contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.07);
  }

  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 28px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    margin-bottom: 18px;
  }

  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 9px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  }

  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .form-captcha {
    margin-top: 8px;
  }

  .form-helper {
    margin: 0;
    padding: 12px 14px;
    border-radius: 9px;
    font-size: 14px;
    line-height: 1.5;
  }

  .form-helper a {
    color: inherit;
    text-decoration: underline;
  }

  .form-helper.is-warning {
    background: #fff5de;
    border: 1px solid #ebd18a;
    color: #725200;
  }

  .form-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 9px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
  }

  .form-submit:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(10,22,40,0.3);
  }

  .form-submit:disabled,
  .form-submit.is-loading {
    cursor: wait;
    opacity: 0.75;
    transform: none;
    box-shadow: none;
  }

  .form-status {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 9px;
    font-size: 14px;
    line-height: 1.5;
  }

  .form-status.is-success {
    background: #edf7f0;
    border: 1px solid #acd7b5;
    color: #1d6b34;
  }

  .form-status.is-error {
    background: #fdf0f0;
    border: 1px solid #e6b3b3;
    color: #9f2d2d;
  }

  .form-notice {
    text-align: center;
    color: var(--gray);
    font-size: 12px;
    margin-top: 14px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy);
    padding: 60px 0 32px;
    border-top: 1px solid rgba(201,168,76,0.15);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
  }

  .footer-brand p {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 280px;
  }

  .footer-link-group h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
  }

  .footer-link-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-link-group a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }

  .footer-link-group a:hover { color: var(--gold-light); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.3);
    font-size: 13px;
  }

  .footer-accredited {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 6px;
    padding: 6px 14px;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 500;
  }

  /* ─── NOTICE BANNER ─── */
  .notice-banner {
    background: linear-gradient(135deg, #C9A84C, #E8C96A);
    padding: 16px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 99;
    margin-top: 75px;
  }

  .notice-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
  }

  .notice-sub {
    font-size: 13px;
    color: rgba(10,22,40,0.7);
    margin-top: 2px;
  }

  /* ─── SCROLL ANIMATIONS ─── */
  .fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
    .hero-h1 { font-size: 40px; }
    .hero-card { display: none; }
    .container { padding: 0 24px; }
    section { padding: 64px 0; }
    .why-grid, .fees-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .why-cards { grid-template-columns: 1fr 1fr; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-header { grid-template-columns: 1fr; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .section-title { font-size: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .notice-banner { padding: 12px 24px; flex-direction: column; gap: 8px; text-align: center; }
    .doc-list { grid-template-columns: 1fr; }
  }
