/* =============================================
   TRUST ATTEST — Main Stylesheet
   EU Color Palette + Premium B2B Design
   ============================================= */



/* cormorant-garamond-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cormorant-garamond-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cormorant-garamond-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cormorant-garamond-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


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

    :root {
      --navy:      #0a1628;
      --navy-mid:  #152347;
      --blue:      #1a3a72;
      --gold:      #c8a84b;
      --gold-light:#e4c97e;
      --white:     #ffffff;
      --off-white: #f8f7f4;
      --rule:      #d8dae4;
      --text:      #1a1f2e;
      --text-mid:  #4a5168;
      --text-light:#7a8299;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body:    'DM Sans', Helvetica, sans-serif;
      --max-w: 900px;
      --section-gap: 120px;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      font-size: 16px;
      color: var(--text);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* Cursor */
    body { cursor: none; }
    #cursor {
      position: fixed; top: 0; left: 0;
      width: 10px; height: 10px;
      background: var(--gold); border-radius: 50%;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
      mix-blend-mode: multiply;
    }
    #cursor.large { width: 36px; height: 36px; background: var(--gold-light); }

    /* Reveal animations */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── HEADER ── */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 24px 48px;
      display: flex; justify-content: space-between; align-items: center;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    header.scrolled { border-color: var(--rule); box-shadow: 0 1px 24px rgba(10,22,40,0.07); }

    .wordmark { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .emblem { width: 36px; height: 36px; flex-shrink: 0; }
    .emblem svg { width: 100%; height: 100%; }

    .wordmark-text { display: flex; flex-direction: column; line-height: 1; }
    .brand { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; }
    .tagline-small { font-size: 9px; font-weight: 400; color: var(--text-light); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; }

    .header-badge {
      font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--blue); border: 1px solid rgba(26,58,114,0.35); padding: 6px 14px; border-radius: 2px;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center;
      padding: 140px 48px 80px;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: linear-gradient(to right, rgba(10,22,40,0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(10,22,40,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 70%, transparent 100%);
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 70%, transparent 100%);
    }

    .hero-inner { max-width: var(--max-w); margin: 0 auto; width: 100%; position: relative; z-index: 1; }

    .eu-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 28px;
    }
    .eu-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(52px, 8vw, 96px);
      font-weight: 300; line-height: 1.02;
      color: var(--navy); letter-spacing: -0.01em; margin-bottom: 12px;
    }
    .hero h1 em { font-style: italic; color: var(--blue); }

    .hero-sub {
      font-family: var(--font-display);
      font-size: clamp(18px, 2.5vw, 26px);
      font-weight: 300; color: var(--text-mid); line-height: 1.3;
      margin-bottom: 48px; max-width: 640px;
    }

    .hero-divider {
      width: 100%; max-width: 540px; height: 1px;
      background: linear-gradient(to right, var(--rule), transparent);
      margin-bottom: 40px;
    }

    .hero-body { max-width: 580px; font-size: 15px; font-weight: 400; line-height: 1.85; color: var(--text-mid); }

    /* ── MODEL SECTION ── */
    .model-section {
      padding: var(--section-gap) 48px;
      background: var(--navy);
      position: relative; overflow: hidden;
    }
    .model-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(200,168,75,0.07) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .model-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }

    .section-eyebrow {
      font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(200,168,75,0.25); max-width: 120px; }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 300; color: var(--white);
      margin-bottom: 56px; line-height: 1.1;
    }

    .stages { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

    .stage {
      padding: 44px 40px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      position: relative;
      transition: background 0.4s;
    }
    .stage:hover { background: rgba(255,255,255,0.06); }

    .stage-number {
      font-family: var(--font-display); font-size: 72px; font-weight: 300;
      color: rgba(200,168,75,0.14); line-height: 1; margin-bottom: 16px; letter-spacing: -0.03em;
    }
    .stage-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
    .stage h3 { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
    .stage p { font-size: 14px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.5); }

    .stage-connector {
      position: absolute; right: -2px; top: 50%; transform: translateY(-50%);
      width: 2px; height: 60px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      z-index: 2;
    }

    /* ── ATTRIBUTES ── */
    .attributes-section { padding: var(--section-gap) 48px; background: var(--white); }
    .attributes-inner { max-width: var(--max-w); margin: 0 auto; }

    .section-eyebrow-dark {
      font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-eyebrow-dark::after { content: ''; flex: 1; height: 1px; background: var(--gold); opacity: 0.3; max-width: 120px; }

    .attributes-title {
      font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px);
      font-weight: 300; color: var(--navy); margin-bottom: 56px; line-height: 1.15; max-width: 500px;
    }

    .attributes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); }

    .attribute {
      padding: 40px 32px 40px 0;
      border-right: 1px solid var(--rule);
    }
    .attribute:last-child { border-right: none; }
    .attribute:not(:first-child) { padding-left: 32px; }

    .attribute-icon { width: 32px; height: 32px; margin-bottom: 20px; }
    .attribute h4 { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
    .attribute p { font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--text-mid); }

    /* ── CONTACT ── */
    .contact-section {
      padding: var(--section-gap) 48px;
      background: var(--off-white);
      border-top: 1px solid var(--rule);
    }
    .contact-inner {
      max-width: var(--max-w); margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.1fr;
      gap: 80px; align-items: start;
    }

    .contact-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); font-weight: 300; color: var(--navy); line-height: 1.15; margin-bottom: 24px; }
    .contact-desc { font-size: 14px; font-weight: 400; line-height: 1.85; color: var(--text-mid); margin-bottom: 32px; }

    .contact-email-link {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 14px; font-weight: 400; color: var(--blue);
      text-decoration: none; border-bottom: 1px solid rgba(26,58,114,0.25); padding-bottom: 4px;
      transition: color 0.2s, border-color 0.2s;
    }
    .contact-email-link:hover { color: var(--navy); border-color: var(--navy); }
    .contact-email-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
    .contact-email-link:hover svg { transform: translateX(3px); }

    /* Form card */
    .contact-form-card {
      background: var(--white); border: 1px solid var(--rule);
      padding: 44px 40px; position: relative;
    }
    .contact-form-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 60px; height: 2px;
      background: linear-gradient(to right, var(--gold), var(--gold-light));
    }

    .form-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
    .form-desc { font-size: 12px; color: var(--text-light); font-weight: 400; margin-bottom: 28px; line-height: 1.6; }

    .form-group { margin-bottom: 16px; }
    .form-label { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 8px; }

    .form-input, .form-select {
      width: 100%; padding: 13px 16px;
      border: 1px solid var(--rule);
      background: var(--off-white);
      font-family: var(--font-body); font-size: 14px; font-weight: 400; color: var(--text);
      outline: none; border-radius: 0; -webkit-appearance: none;
      transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    }
    .form-input:focus, .form-select:focus {
      border-color: var(--blue); background: var(--white);
      box-shadow: 0 0 0 3px rgba(26,58,114,0.06);
    }
    .form-input::placeholder { color: var(--text-light); }

    .form-select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8299' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 16px center;
    }

    .form-checkbox-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
    .form-checkbox {
      width: 16px; height: 16px; border: 1px solid var(--rule);
      background: var(--off-white); flex-shrink: 0; margin-top: 2px;
      cursor: pointer; appearance: none; -webkit-appearance: none;
      position: relative; transition: background 0.2s, border-color 0.2s;
    }
    .form-checkbox:checked { background: var(--navy); border-color: var(--navy); }
    .form-checkbox:checked::after {
      content: ''; position: absolute;
      top: 2px; left: 4px; width: 5px; height: 9px;
      border-right: 1.5px solid white; border-bottom: 1.5px solid white;
      transform: rotate(40deg);
    }
    .form-checkbox-label { font-size: 12px; font-weight: 400; color: var(--text-mid); line-height: 1.6; }
    .form-checkbox-label a { color: var(--blue); text-decoration: none; border-bottom: 1px solid rgba(26,58,114,0.25); }

    .btn-submit {
      width: 100%; padding: 15px 24px;
      background: var(--navy); color: var(--white);
      font-family: var(--font-body); font-size: 11px; font-weight: 500;
      letter-spacing: 0.16em; text-transform: uppercase;
      border: none; cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      position: relative; overflow: hidden;
    }
    .btn-submit::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0%; height: 2px; background: var(--gold);
      transition: width 0.35s;
    }
    .btn-submit:hover { background: var(--navy-mid); }
    .btn-submit:hover::after { width: 100%; }
    .btn-submit:active { transform: scale(0.99); }

    .form-success { display: none; text-align: center; padding: 32px 0; }
    .form-success.visible { display: block; }
    .success-check {
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(10,22,40,0.05);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
    }
    .form-success h4 { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
    .form-success p { font-size: 13px; font-weight: 300; color: var(--text-mid); }

    /* ── FOOTER ── */
    footer {
      background: var(--navy); padding: 60px 48px;
      position: relative; overflow: hidden;
    }
    footer::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .footer-inner {
      max-width: var(--max-w); margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      gap: 32px; flex-wrap: wrap;
    }
    .brand-footer { font-family: var(--font-display); font-size: 22px; font-weight: 300; color: var(--white); letter-spacing: 0.05em; margin-bottom: 4px; }
    .footer-tagline { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; font-style: italic; font-family: var(--font-display); }
    .footer-right { text-align: right; }
    .footer-right p { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; }
    .footer-eu-stars { display: flex; justify-content: flex-end; gap: 6px; margin-top: 12px; }
    .footer-eu-stars span { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; opacity: 0.4; }
    .footer-eu-stars span.bright { opacity: 0.85; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      :root { --section-gap: 80px; }
      header { padding: 20px 24px; }
      .header-badge { display: none; }
      .hero, .model-section, .attributes-section, .contact-section { padding: var(--section-gap) 24px; }
      .hero { padding-top: 120px; }
      footer { padding: 48px 24px; }
      .stages, .contact-inner { grid-template-columns: 1fr; }
      .stage-connector { display: none; }
      .attributes-grid { grid-template-columns: 1fr; }
      .attribute { border-right: none; border-bottom: 1px solid var(--rule); padding: 32px 0 !important; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
      .footer-right { text-align: left; }
      .footer-eu-stars { justify-content: flex-start; }
      body { cursor: auto; }
      #cursor { display: none; }
    }
