:root {
  --navy-900: #0B1F3A;
  --navy-800: #1B3A5C;
  --navy-700: #24507A;
  --green-600: #1E7A4D;
  --green-500: #2E8B57;
  --green-400: #5FB878;
  --green-300: #8FD4A0;
  --cream: #F8F5EE;
  --cream-dark: #EFE9DA;
  --ink: #0A0F1E;
  --muted: #5B6B82;
  --line: rgba(11, 31, 58, 0.12);
  --accent: #D97757;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 48px;
  display: flex; justify-content: space-between; align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(248, 245, 238, 0.82);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--navy-800), var(--green-500));
  border-radius: 8px;
  display: grid; place-items: center;
  color: white; font-weight: 900; font-size: 14px;
  font-family: 'JetBrains Mono', monospace;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--ink);
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-600); }
.btn-nav {
  background: var(--navy-900) !important; color: var(--cream) !important;
  padding: 10px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  border: none; cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.btn-nav:hover { background: var(--green-600) !important; transform: translateY(-1px); }
.menu-toggle {
  display: none;
  background: none; border: none;
  font-size: 24px; cursor: pointer;
  color: var(--navy-900);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 140px 48px 80px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
  align-items: center;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.hero-label::before {
  content: ''; width: 32px; height: 1px; background: var(--green-600);
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--green-600), var(--navy-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--navy-900); color: var(--cream);
  padding: 18px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s;
  border: 1px solid var(--navy-900);
  cursor: pointer;
}
.btn-primary:hover { background: var(--green-600); border-color: var(--green-600); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--navy-900);
  padding: 18px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--navy-900);
  transition: all 0.3s;
}
.btn-secondary:hover { background: var(--navy-900); color: var(--cream); }

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}
.hero-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 30px 60px -20px rgba(11, 31, 58, 0.25);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}
.card-1 {
  top: 0; left: 0; width: 62%;
  border: 1px solid var(--line);
  animation: float1 6s ease-in-out infinite;
}
.card-2 {
  bottom: 10%; right: 0; width: 55%;
  background: var(--navy-900); color: var(--cream);
  animation: float2 7s ease-in-out infinite;
}
.card-3 {
  top: 40%; left: 25%; width: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: white;
  animation: float3 5s ease-in-out infinite;
}
@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes float3 { 0%,100% { transform: translate(-50%,-50%) rotate(-3deg); } 50% { transform: translate(-50%,-45%) rotate(-5deg); } }
.card-title { opacity: 0.6; font-size: 10px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.1em; }
.card-value { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 600; line-height: 1; }
.card-sub { font-size: 10px; margin-top: 6px; opacity: 0.7; }
.chart-bars { display: flex; gap: 4px; align-items: flex-end; height: 40px; margin-top: 12px; }
.chart-bars span { flex: 1; background: currentColor; opacity: 0.4; border-radius: 2px; }
.chart-bars span:nth-child(1) { height: 30%; }
.chart-bars span:nth-child(2) { height: 50%; }
.chart-bars span:nth-child(3) { height: 45%; }
.chart-bars span:nth-child(4) { height: 70%; }
.chart-bars span:nth-child(5) { height: 85%; opacity: 1; }
.chart-bars span:nth-child(6) { height: 95%; opacity: 1; }

/* ===== TRUST BAR ===== */
.trust {
  padding: 40px 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-dark);
}
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.trust-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); }
.trust-items { display: flex; gap: 40px; flex-wrap: wrap; font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; color: var(--navy-800); }
.trust-items span { opacity: 0.7; }

/* ===== SECTION BASE ===== */
section { padding: 120px 48px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-label::before { content: '→'; }
h2.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-bottom: 28px;
  max-width: 820px;
}
h2.section-title em { font-style: italic; color: var(--green-600); font-weight: 400; }
.section-lead {
  font-size: 19px; color: var(--muted); max-width: 680px; line-height: 1.6;
  margin-bottom: 60px;
}

/* ===== SYMPTOMS ===== */
.symptoms { background: var(--cream); }
.symptoms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.symptom {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.symptom:hover { transform: translateY(-6px); border-color: var(--green-500); box-shadow: 0 20px 40px -20px rgba(11, 31, 58, 0.2); }
.symptom-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--muted);
  margin-bottom: 20px;
}
.symptom-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-800), var(--green-500));
  display: grid; place-items: center;
  color: white; margin-bottom: 24px;
}
.symptom h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 600;
  color: var(--navy-900); margin-bottom: 14px;
  line-height: 1.2;
}
.symptom p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ===== METHOD E2E ===== */
.method {
  background: var(--navy-900);
  color: var(--cream);
  position: relative;
}
.method .section-label { color: var(--green-400); }
.method h2.section-title { color: var(--cream); }
.method h2.section-title em { color: var(--green-400); }
.method .section-lead { color: rgba(248, 245, 238, 0.7); }
.phases { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 60px; }
.phase {
  padding: 28px 20px;
  border: 1px solid rgba(248, 245, 238, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s;
  cursor: default;
}
.phase:hover { border-color: var(--green-400); background: rgba(95, 184, 120, 0.05); transform: translateY(-4px); }
.phase-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--green-400);
  margin-bottom: 16px; letter-spacing: 0.1em;
}
.phase h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 600;
  margin-bottom: 12px; line-height: 1.1;
}
.phase p { font-size: 13px; line-height: 1.5; opacity: 0.7; }

/* ===== SUITE ===== */
.suite { background: var(--cream-dark); }
.suite-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.product {
  background: white;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.product:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(11, 31, 58, 0.2); }
.product::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--navy-700));
}
.product-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--cream-dark);
  color: var(--navy-800);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}
.product h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 600;
  color: var(--navy-900); margin-bottom: 10px;
  line-height: 1.1;
}
.product .tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--green-600);
  font-size: 17px;
  margin-bottom: 20px;
}
.product p { color: var(--muted); font-size: 15px; line-height: 1.65; margin-bottom: 20px; }
.product ul { list-style: none; }
.product ul li {
  font-size: 14px; color: var(--ink);
  padding: 6px 0; padding-left: 20px; position: relative;
}
.product ul li::before {
  content: '▸'; position: absolute; left: 0; color: var(--green-500);
  font-size: 12px;
}

/* ===== TECH DIFFERENTIAL ===== */
.tech {
  background: var(--cream);
  position: relative;
}
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tech-items { display: flex; flex-direction: column; gap: 16px; }
.tech-item {
  padding: 24px; border: 1px solid var(--line);
  border-radius: 16px; background: white;
  display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.3s;
}
.tech-item:hover { border-color: var(--green-500); transform: translateX(6px); }
.tech-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  background: var(--navy-900);
  color: var(--green-400);
  padding: 8px 12px;
  border-radius: 8px;
  flex-shrink: 0;
  font-weight: 500;
}
.tech-item h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px; color: var(--navy-900);
  margin-bottom: 6px; font-weight: 600;
}
.tech-item p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.tech-quote h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px; color: var(--navy-900);
  margin-bottom: 20px; line-height: 1.1; font-weight: 600;
}
.tech-quote h3 em { color: var(--green-600); font-weight: 400; }
.tech-quote p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }

/* ===== CTA FINAL ===== */
.final-cta {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--green-600) 100%);
  color: white; text-align: center;
  padding: 140px 48px;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(95, 184, 120, 0.3), transparent 50%),
                     radial-gradient(circle at 80% 70%, rgba(36, 80, 122, 0.4), transparent 50%);
}
.final-cta .container { position: relative; }
.final-cta .section-label { color: var(--green-300); justify-content: center; }
.final-cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px; max-width: 900px;
  margin-left: auto; margin-right: auto;
  color: white;
}
.final-cta h2 em { font-style: italic; color: var(--green-300); font-weight: 400; }
.final-cta p {
  font-size: 19px; opacity: 0.85; max-width: 580px;
  margin: 0 auto 40px; line-height: 1.6;
}
.final-cta .btn-primary {
  background: var(--cream); color: var(--navy-900);
  border-color: var(--cream);
  font-size: 16px; padding: 20px 36px;
}
.final-cta .btn-primary:hover { background: var(--green-400); border-color: var(--green-400); color: var(--navy-900); }

/* ===== FAQ ===== */
.faq { background: var(--cream); }
.faq-list { margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item summary {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 600;
  color: var(--navy-900);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 28px; color: var(--green-600);
  transition: transform 0.3s;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 16px;
  color: var(--muted); font-size: 16px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-900);
  color: rgba(248, 245, 238, 0.7);
  padding: 80px 48px 40px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(248, 245, 238, 0.1);
}
.footer-brand h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px; color: var(--cream);
  margin-bottom: 12px; font-weight: 600;
}
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--green-400);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; color: rgba(248, 245, 238, 0.7);
  text-decoration: none; font-size: 14px;
  padding: 6px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-400); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 20px;
}
.footer-bottom a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--green-400); }

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 140px 48px 80px;
  max-width: 860px;
  margin: 0 auto;
}
.legal-page h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.legal-page .updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.legal-page h2 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--navy-900);
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 600;
}
.legal-page h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--navy-800);
  margin-top: 28px;
  margin-bottom: 12px;
  font-weight: 600;
}
.legal-page p, .legal-page li {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-page ul, .legal-page ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-page a {
  color: var(--green-600);
  text-decoration: underline;
}
.legal-page strong { color: var(--navy-900); }

/* ===== CONTACT FORM ===== */
.contact-page {
  padding: 140px 48px 80px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-page h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact-page h1 em { font-style: italic; color: var(--green-600); font-weight: 400; }
.contact-page .lead {
  font-size: 19px; color: var(--muted);
  margin-bottom: 50px; max-width: 600px;
}
.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--green-500);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-checkbox {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--muted); line-height: 1.5;
}
.form-checkbox input { width: auto; margin-top: 3px; }
.form-checkbox a { color: var(--green-600); text-decoration: underline; }
.contact-channels {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 50px;
}
.channel {
  background: var(--cream-dark);
  padding: 24px; border-radius: 16px;
  text-align: center;
}
.channel h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted);
  margin-bottom: 10px;
}
.channel p {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 600;
  color: var(--navy-900);
}
.channel a { color: inherit; text-decoration: none; }
.channel a:hover { color: var(--green-600); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 900px; margin: 0 auto;
  background: var(--navy-900);
  color: var(--cream);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  z-index: 10000;
}
.cookie-inner {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; justify-content: space-between;
}
.cookie-inner p { font-size: 14px; line-height: 1.5; flex: 1; min-width: 260px; margin: 0; }
.cookie-inner a { color: var(--green-400); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }
.btn-cookie-reject, .btn-cookie-accept {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  cursor: pointer; border: none;
  font-family: inherit;
}
.btn-cookie-reject {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(248, 245, 238, 0.3);
}
.btn-cookie-accept {
  background: var(--green-500);
  color: white;
}
.btn-cookie-accept:hover { background: var(--green-600); }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column; gap: 0;
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; }
  section, .hero, .final-cta { padding-left: 24px; padding-right: 24px; }
  .hero { grid-template-columns: 1fr; padding-top: 110px; }
  .hero-visual { max-width: 380px; margin: 20px auto 0; justify-self: center; }
  .symptoms-grid, .phases, .suite-grid, .tech-grid, .footer-grid, .form-row, .contact-channels { grid-template-columns: 1fr; }
  .phases { gap: 12px; }
  footer { padding: 60px 24px 30px; }
  .legal-page, .contact-page { padding: 120px 24px 60px; }
  .contact-form { padding: 24px; }
}
