:root {
    --brown-dark: #3f332a;
    --brown-mid: #5e4c3e;
    --brown-warm: #7d6552;
    --cream: #f1f0ee;
    --sand: #dad7d2;
    --white: #ffffff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--brown-dark);
    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(241,240,238,0.93);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand);
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .nav-logo svg { width: 42px; height: 42px; }
  .nav-logo-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px; font-weight: 600;
    color: var(--brown-dark); letter-spacing: -0.5px;
  }
  .nav-logo-sub {
    font-family: 'Dancing Script', cursive;
    font-size: 13px; color: var(--brown-warm);
    display: block; line-height: 1; margin-top: -2px;
  }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--brown-mid);
    font-size: 14px; font-weight: 500; letter-spacing: 0.3px; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--brown-dark); }
  .nav-right { display: flex; align-items: center; gap: 14px; }
  .nav-cta {
    background: var(--brown-mid); color: var(--white);
    border: none; padding: 10px 22px; border-radius: 8px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    font-family: 'DM Sans', sans-serif; transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: var(--brown-dark); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 60px 80px;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #f1f0ee 0%, #e8e4df 50%, #dad7d2 100%);
  }
  .hero-circle { position: absolute; border-radius: 50%; opacity: 0.12; }
  .hero-circle-1 { width: 600px; height: 600px; background: var(--brown-mid); top: -150px; right: -100px; }
  .hero-circle-2 { width: 300px; height: 300px; background: var(--brown-warm); bottom: 60px; left: -80px; }
  .hero-content { position: relative; z-index: 2; max-width: 700px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brown-dark); color: var(--white);
    padding: 6px 16px; border-radius: 100px;
    font-size: 12px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 28px;
  }
  .hero-badge-dot { width: 6px; height: 6px; background: #a8c496; border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(46px, 6vw, 80px);
    line-height: 1.05; color: var(--brown-dark);
    margin-bottom: 24px; font-weight: 700;
  }
  .hero h1 em { font-style: italic; color: var(--brown-warm); }
  .hero p {
    font-size: 18px; color: var(--brown-mid);
    line-height: 1.7; max-width: 520px;
    margin-bottom: 40px; font-weight: 300;
  }
  .hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--brown-dark); color: var(--white);
    padding: 16px 36px; border-radius: 10px;
    font-size: 15px; font-weight: 600; cursor: pointer; border: none;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(63,51,42,0.25);
  }
  .btn-primary:hover { background: var(--brown-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(63,51,42,0.3); }
  .btn-outline {
    background: transparent; color: var(--brown-dark);
    padding: 16px 36px; border-radius: 10px;
    font-size: 15px; font-weight: 600; cursor: pointer;
    border: 2px solid var(--brown-dark);
    font-family: 'DM Sans', sans-serif; transition: all 0.2s;
  }
  .btn-outline:hover { background: var(--brown-dark); color: var(--white); }
  .hero-right {
    position: absolute; right: 60px; top: 50%; transform: translateY(-50%); z-index: 2;
  }
  .hero-logo-big { width: 340px; height: 340px; opacity: 0.08; }

  /* ── WHY CORVEX ── */
  .why {
    background: var(--brown-dark);
    padding: 80px 60px;
  }
  .why-header { text-align: center; margin-bottom: 56px; }
  .why-header .section-tag { color: rgba(218,215,210,0.7); }
  .why-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 700; color: var(--white); line-height: 1.1;
  }
  .why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  }
  .why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(218,215,210,0.12);
    padding: 36px 28px; transition: background 0.25s;
  }
  .why-card:hover { background: rgba(255,255,255,0.09); }
  .why-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 44px; font-weight: 700;
    color: rgba(218,215,210,0.18); line-height: 1; margin-bottom: 16px;
  }
  .why-card h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
  .why-card p { font-size: 13px; color: rgba(218,215,210,0.65); line-height: 1.65; font-weight: 300; }

  /* ── SECTION SHARED ── */
  .section { padding: 100px 60px; }
  .section-tag {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--brown-warm); margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700; color: var(--brown-dark); line-height: 1.1; margin-bottom: 20px;
  }
  .section-sub {
    font-size: 17px; color: var(--brown-mid);
    max-width: 560px; line-height: 1.7; font-weight: 300;
  }

  /* ── SERVICES ── */
  .services { background: var(--white); }
  .services-header { max-width: 560px; margin-bottom: 60px; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .service-card {
    background: var(--cream); border-radius: 16px;
    padding: 36px 32px; border: 1px solid var(--sand);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--brown-mid), var(--brown-warm));
    opacity: 0; transition: opacity 0.2s;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(63,51,42,0.12); border-color: var(--brown-warm); }
  .service-card:hover::before { opacity: 1; }
  .service-icon {
    width: 48px; height: 48px; background: var(--brown-dark);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  }
  .service-icon svg { width: 24px; height: 24px; stroke: var(--white); fill: none; stroke-width: 1.8; }
  .service-card h3 { font-size: 18px; font-weight: 600; color: var(--brown-dark); margin-bottom: 10px; }
  .service-card p { font-size: 14px; color: var(--brown-mid); line-height: 1.65; font-weight: 300; }

  /* ── HOW IT WORKS ── */
  .how { background: var(--cream); }
  .how-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 60px; position: relative;
  }
  .how-steps::before {
    content: ''; position: absolute;
    top: 36px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brown-warm), var(--brown-warm), transparent);
    opacity: 0.35;
  }
  .how-step { padding: 0 24px; text-align: center; position: relative; }
  .step-num {
    width: 72px; height: 72px; background: var(--white);
    border: 2px solid var(--sand); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700;
    color: var(--brown-dark); position: relative; z-index: 2;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .how-step:hover .step-num { background: var(--brown-dark); color: var(--white); border-color: var(--brown-dark); }
  .how-step h3 { font-size: 17px; font-weight: 600; color: var(--brown-dark); margin-bottom: 10px; }
  .how-step p { font-size: 14px; color: var(--brown-mid); line-height: 1.65; font-weight: 300; }

  /* ── TRIAL ── */
  .trial {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
    padding: 100px 60px; text-align: center;
    position: relative; overflow: hidden;
  }
  .trial::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(125,101,82,0.3) 0%, transparent 60%);
  }
  .trial-content { position: relative; z-index: 2; }
  .trial-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white); padding: 6px 20px; border-radius: 100px;
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 28px;
  }
  .trial h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 64px);
    color: var(--white); margin-bottom: 20px; line-height: 1.1;
  }
  .trial h2 em { font-style: italic; color: var(--sand); }
  .trial p {
    font-size: 18px; color: rgba(255,255,255,0.75);
    max-width: 560px; margin: 0 auto 40px;
    line-height: 1.7; font-weight: 300;
  }
  .trial-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; max-width: 860px; margin: 0 auto 44px;
  }
  .trial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px; padding: 28px 24px; text-align: left;
  }
  .trial-card-icon {
    width: 36px; height: 36px; background: rgba(255,255,255,0.15);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
  }
  .trial-card-icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 1.8; }
  .trial-card h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
  .trial-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.55; font-weight: 300; }
  .trial-guarantee {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    padding: 12px 24px; border-radius: 100px;
    font-size: 13px; font-weight: 500;
    margin-bottom: 36px;
  }
  .trial-guarantee strong { color: var(--white); }
  .btn-white {
    background: var(--white); color: var(--brown-dark);
    padding: 18px 44px; border-radius: 10px;
    font-size: 15px; font-weight: 700; cursor: pointer; border: none;
    font-family: 'DM Sans', sans-serif;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

  /* ── CONTACT ── */
  .contact { background: var(--white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contact-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 32px; }
  .contact-item-icon {
    width: 44px; height: 44px; background: var(--cream);
    border-radius: 12px; border: 1px solid var(--sand);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .contact-item-icon svg { width: 20px; height: 20px; stroke: var(--brown-mid); fill: none; stroke-width: 1.8; }
  .contact-item-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--brown-warm); margin-bottom: 4px; }
  .contact-item-value { font-size: 16px; color: var(--brown-dark); font-weight: 500; }
  .contact-form { background: var(--cream); border-radius: 20px; padding: 44px; border: 1px solid var(--sand); }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--brown-mid); margin-bottom: 8px; letter-spacing: 0.3px; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%; padding: 14px 16px;
    border: 1.5px solid var(--sand); border-radius: 10px;
    font-size: 14px; font-family: 'DM Sans', sans-serif;
    color: var(--brown-dark); background: var(--white); outline: none;
    transition: border-color 0.2s; -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--brown-warm); }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  /* ── FOOTER ── */
  footer { background: var(--brown-dark); padding: 60px 60px 36px; color: var(--sand); }
  .footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding-bottom: 48px; border-bottom: 1px solid rgba(218,215,210,0.15);
    gap: 40px; flex-wrap: wrap;
  }
  .footer-brand .nav-logo-text { color: var(--white); font-size: 26px; }
  .footer-brand p { font-size: 14px; color: var(--sand); opacity: 0.7; margin-top: 14px; max-width: 280px; line-height: 1.6; }
  .footer-links h5 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
  .footer-links ul { list-style: none; }
  .footer-links ul li { margin-bottom: 10px; }
  .footer-links ul li a { color: rgba(218,215,210,0.65); text-decoration: none; font-size: 14px; transition: color 0.2s; }
  .footer-links ul li a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px; font-size: 13px; color: rgba(218,215,210,0.45);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }

    /* Hero — shrink blobs so they never overlap text */
    .hero { padding: 100px 24px 60px; overflow: hidden; }
    .hero-circle-1 { width: 280px; height: 280px; top: -60px; right: -80px; opacity: 0.08; }
    .hero-circle-2 { width: 180px; height: 180px; bottom: 20px; left: -60px; opacity: 0.08; }
    .hero-right { display: none; }
    .hero-content { max-width: 100%; }
    .hero h1 { font-size: clamp(36px, 10vw, 56px); }
    .hero p { font-size: 16px; max-width: 100%; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 16px 24px; }

    .why { padding: 60px 24px; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
    .section { padding: 72px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .how-steps::before { display: none; }
    .trial { padding: 72px 24px; }
    .trial-cards { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    footer { padding: 48px 24px 28px; }
    .footer-top { flex-direction: column; }
  }

  @media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ── FADE IN ── */
  .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.82) rotate(-6deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes drawLine {
  from { stroke-dashoffset: 400; }
  to   { stroke-dashoffset: 0; }
}
@keyframes badgePop {
  0%   { opacity: 0; transform: scale(0.7) translateY(8px); }
  70%  { transform: scale(1.06) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes wipeOut {
  from { transform: scaleY(1); }
  to   { transform: scaleY(0); }
}

nav { animation: slideDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; animation-delay: 0.1s; }
.hero-badge { animation: badgePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both; animation-delay: 0.55s; }
.hero-content h1 { animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; animation-delay: 0.75s; }
.hero-content p { animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; animation-delay: 0.95s; }
.hero-actions { animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; animation-delay: 1.1s; }
.hero-right { animation: scaleIn 1s cubic-bezier(0.22, 1, 0.36, 1) both; animation-delay: 0.6s; }
.hero-circle-1 { animation: fadeIn 1.2s ease both; animation-delay: 0.3s; }
.hero-circle-2 { animation: fadeIn 1.4s ease both; animation-delay: 0.5s; }

.hero-logo-big path, .hero-logo-big circle {
  stroke-dasharray: 400; stroke-dashoffset: 400;
  animation: drawLine 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-logo-big circle { animation-delay: 0.7s; }
.hero-logo-big path:nth-child(2) { animation-delay: 0.9s; }
.hero-logo-big path:nth-child(3) { animation-delay: 1.05s; }

.hero-content h1 em {
  background: linear-gradient(90deg, currentColor 0%, #c8a96e 40%, currentColor 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 10px;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both, shimmer 1.8s ease 1.4s 1 forwards;
}

.intro-wipe {
  position: fixed; inset: 0; background: #f5f0ea; z-index: 9999;
  transform-origin: top;
  animation: wipeOut 0.7s cubic-bezier(0.76, 0, 0.24, 1) 0.2s forwards;
  pointer-events: none;
}

/* ── AFTER TRIAL ── */
.after-trial {
  padding: 100px 60px;
  background: #f5f0ea;
  position: relative;
  overflow: hidden;
}

.after-trial::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1.5px solid rgba(63, 51, 42, 0.08);
  pointer-events: none;
}

.after-trial::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1.5px solid rgba(63, 51, 42, 0.06);
  pointer-events: none;
}

.after-trial-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.after-trial-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  color: #1a1410;
  line-height: 1.2;
  margin: 0 0 20px;
}
.after-trial-left h2 em { font-style: italic; color: #c8a96e; }

.after-trial-left > p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #6b5c4e;
  line-height: 1.75;
  margin: 0 0 36px;
}

.after-trial-steps { display: flex; flex-direction: column; }

.after-trial-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(63, 51, 42, 0.1);
}
.after-trial-step:last-child { border-bottom: none; }

.after-trial-step-num {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 50%;
  border: 1.5px solid #3f332a;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  color: #3f332a;
  margin-top: 2px;
}

.after-trial-step-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: #1a1410; margin: 0 0 5px;
}
.after-trial-step-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; color: #6b5c4e;
  margin: 0; line-height: 1.6;
}

.after-trial-card {
  background: #1a1410;
  border-radius: 24px;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.after-trial-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.after-trial-card-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #c8a96e;
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 28px;
}

.after-trial-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #f5f0ea; line-height: 1.25;
  margin: 0 0 16px;
}
.after-trial-card h3 em { font-style: italic; color: #c8a96e; }

.after-trial-card > p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: rgba(245,240,234,0.65);
  line-height: 1.7;
  margin: 0 0 36px;
}

.after-trial-card-perks {
  display: flex; flex-direction: column;
  gap: 12px; margin-bottom: 40px; width: 100%;
}

.after-trial-card-perk {
  display: flex; align-items: center; gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(245,240,234,0.8);
}
.after-trial-card-perk svg {
  width: 16px; height: 16px;
  stroke: #c8a96e; stroke-width: 2.5;
  fill: none; flex-shrink: 0;
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: #c8a96e; color: #1a1410;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  border: none; border-radius: 100px;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: #d4b87a; transform: translateY(-1px); }
.btn-gold svg {
  width: 15px; height: 15px;
  stroke: #1a1410; stroke-width: 2.5; fill: none;
}

.after-trial-card-note {
  margin-top: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(245,240,234,0.35);
}

@media (max-width: 860px) {
  .after-trial { padding: 70px 24px; }
  .after-trial-inner { grid-template-columns: 1fr; gap: 48px; }
}


.contact-item-value a:hover {
  text-decoration: underline;
}