/* ============================================
PETRA GEO MARKETING SITE
Premium Dark Theme Design
============================================ */

/* === CSS Variables === */
:root {
/* Colors */
--bg-primary: #0c0e14;
--bg-secondary: #141620;
--bg-tertiary: #1a1d2e;
--text-primary: #e8e8ec;
--text-secondary: #8b8da0;
--text-tertiary: #5a5c6e;

/* Accent Colors */
--accent-blue: #4a9eff;
--accent-gold: #d4a853;
--accent-teal: #2dd4bf;

/* Typography */
--font-display: 'Clash Display', sans-serif;
--font-body: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
--font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --spacing-unit: 8px;
  --section-padding: calc(var(--spacing-unit) * 12);

/* Effects */
--glass-bg: rgba(20, 22, 32, 0.6);
--glass-border: rgba(232, 232, 236, 0.08);
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* === Global Styles === */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
font-family: var(--font-body);
font-size: 16px;
line-height: 1.6;
color: var(--text-primary);
background: var(--bg-primary);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

/* === Grain Overlay === */
.grain-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 9999;
opacity: 0.03;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
mix-blend-mode: overlay;
}

/* === Navigation === */
.nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
padding: calc(var(--spacing-unit) * 3) 0;
background: rgba(12, 14, 20, 0.8);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--glass-border);
}

.nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 calc(var(--spacing-unit) * 4);
display: flex;
justify-content: space-between;
align-items: center;
}

.nav-logo {
font-family: var(--font-display);
font-size: 20px;
font-weight: 600;
letter-spacing: -0.02em;
}

.nav-links {
display: flex;
gap: calc(var(--spacing-unit) * 4);
align-items: center;
}

.nav-link {
color: var(--text-secondary);
text-decoration: none;
font-size: 15px;
font-weight: 500;
transition: color 0.2s ease;
}

.nav-link:hover {
color: var(--text-primary);
}

.nav-cta {
color: var(--accent-blue);
padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
border: 1px solid var(--accent-blue);
border-radius: 6px;
transition: all 0.2s ease;
}

.nav-cta:hover {
background: rgba(74, 158, 255, 0.1);
}

/* === Hero Section === */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

#crystal-canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}

.hero-content {
position: relative;
z-index: 10;
max-width: 1400px;
width: 100%;
padding: 0 calc(var(--spacing-unit) * 4);
}

.hero-text {
max-width: 700px;
}

.hero-title {
font-family: var(--font-display);
font-size: clamp(48px, 8vw, 96px);
font-weight: 700;
line-height: 1.05;
letter-spacing: -0.03em;
margin-bottom: calc(var(--spacing-unit) * 3);
}

.hero-title-accent {
background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: calc(var(--spacing-unit) * 4);
  max-width: 540px;
}

.scroll-indicator {
position: absolute;
bottom: calc(var(--spacing-unit) * 6);
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: calc(var(--spacing-unit) * 1.5);
opacity: 0.6;
z-index: 10;
}

.scroll-line {
width: 1px;
height: 60px;
background: linear-gradient(to bottom, transparent, var(--text-secondary));
animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
font-size: 12px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-tertiary);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* === Trust Strip === */
.trust-strip {
  padding: calc(var(--spacing-unit) * 4) 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--glass-border);
}

.trust-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 4);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(var(--spacing-unit) * 4);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 2);
  color: var(--text-tertiary);
  font-size: 14px;
  font-weight: 500;
}

.trust-icon {
  color: var(--accent-blue);
  flex-shrink: 0;
}

.trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--glass-border);
}

/* === Buttons === */
.btn {
display: inline-flex;
align-items: center;
gap: calc(var(--spacing-unit) * 1.5);
padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
font-family: var(--font-body);
font-size: 16px;
font-weight: 600;
text-decoration: none;
border-radius: 8px;
transition: all 0.2s ease;
cursor: pointer;
border: none;
}

.btn-primary {
background: var(--accent-blue);
color: var(--bg-primary);
}

.btn-primary:hover {
background: #5aa7ff;
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(74, 158, 255, 0.3);
}

.btn-secondary {
background: var(--glass-bg);
border: 1px solid var(--glass-border);
color: var(--text-primary);
backdrop-filter: blur(12px);
}

.btn-secondary:hover {
border-color: var(--accent-blue);
background: rgba(74, 158, 255, 0.1);
}

.btn-outline {
background: transparent;
border: 1px solid var(--glass-border);
color: var(--text-primary);
}

.btn-outline:hover {
border-color: var(--accent-blue);
background: rgba(74, 158, 255, 0.05);
}

.btn-large {
padding: calc(var(--spacing-unit) * 2.5) calc(var(--spacing-unit) * 5);
font-size: 18px;
}

.btn-arrow {
font-size: 20px;
transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
transform: translateX(4px);
}

/* === Sections === */
section {
padding: var(--section-padding) 0;
position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: calc(var(--spacing-unit) * 7);
}

.section-label {
display: inline-block;
font-family: var(--font-mono);
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--accent-blue);
margin-bottom: calc(var(--spacing-unit) * 2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.section-subtitle {
font-size: 18px;
color: var(--text-secondary);
max-width: 600px;
margin: 0 auto;
}

/* === Problem Section === */
.problem {
background: var(--bg-primary);
}

.problem-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 calc(var(--spacing-unit) * 4);
}

.problem-content {
max-width: 900px;
}

.problem-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: calc(var(--spacing-unit) * 6);
}

.problem-points {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: calc(var(--spacing-unit) * 4);
}

.problem-point {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: calc(var(--spacing-unit) * 3.5);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.problem-point.visible {
opacity: 1;
transform: translateY(0);
}

.problem-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 158, 255, 0.1);
  border-radius: 10px;
  color: var(--accent-blue);
  margin-bottom: calc(var(--spacing-unit) * 2.5);
}

.problem-point h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.problem-point p {
color: var(--text-secondary);
line-height: 1.7;
}

/* === How It Works === */
.how-it-works {
background: var(--bg-secondary);
}

.steps-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 calc(var(--spacing-unit) * 4);
display: grid;
grid-template-columns: 1fr auto 1fr auto 1fr;
gap: calc(var(--spacing-unit) * 4);
align-items: center;
}

.step {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: calc(var(--spacing-unit) * 4);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.step.visible {
opacity: 1;
transform: translateY(0);
}

.step:hover {
border-color: var(--accent-blue);
transform: translateY(-8px);
box-shadow: 0 16px 48px rgba(74, 158, 255, 0.15);
}

.step-number {
font-family: var(--font-mono);
font-size: 14px;
font-weight: 600;
color: var(--accent-blue);
margin-bottom: calc(var(--spacing-unit) * 3);
}

.step-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.15);
  border-radius: 12px;
  color: var(--accent-blue);
  margin-bottom: calc(var(--spacing-unit) * 2.5);
  box-shadow: 0 0 30px rgba(74, 158, 255, 0.08);
}

.step-icon svg {
width: 48px;
height: 48px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.step-description {
color: var(--text-secondary);
line-height: 1.7;
}

.step-connector {
width: 60px;
height: 1px;
background: linear-gradient(to right, var(--glass-border), var(--accent-blue), var(--glass-border));
position: relative;
}

.step-connector::after {
content: '→';
position: absolute;
right: -12px;
top: 50%;
transform: translateY(-50%);
color: var(--accent-blue);
font-size: 18px;
}

/* === What We Do === */
.what-we-do {
max-width: 1400px;
margin: 0 auto;
padding: 0 calc(var(--spacing-unit) * 4);
}

.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: calc(var(--spacing-unit) * 4);
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: calc(var(--spacing-unit) * 4);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.service-card.visible {
opacity: 1;
transform: translateY(0);
}

.service-card:hover {
border-color: var(--accent-blue);
transform: translateY(-8px);
box-shadow: 0 16px 48px rgba(74, 158, 255, 0.15);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.15);
  border-radius: 12px;
  color: var(--accent-blue);
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.service-icon svg {
width: 48px;
height: 48px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.service-details {
list-style: none;
}

.service-details li {
position: relative;
padding-left: calc(var(--spacing-unit) * 3);
margin-bottom: calc(var(--spacing-unit) * 2);
color: var(--text-secondary);
line-height: 1.6;
}

.service-details li::before {
content: '→';
position: absolute;
left: 0;
color: var(--accent-blue);
}

/* === Methodology Section === */
.methodology {
background: var(--bg-secondary);
}

.methodology-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 6);
  align-items: start;
}

.methodology-intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.methodology-grid {
  display: grid;
  gap: calc(var(--spacing-unit) * 3);
}

.methodology-item {
opacity: 0;
transform: translateY(20px);
transition: all 0.4s ease;
}

.methodology-item.visible {
opacity: 1;
transform: translateY(0);
}

.methodology-item h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.methodology-item p {
color: var(--text-secondary);
line-height: 1.7;
}

.methodology-sample {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: calc(var(--spacing-unit) * 4);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease 0.2s;
}

.methodology-sample.visible {
opacity: 1;
transform: translateX(0);
}

.sample-header {
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.sample-title {
font-family: var(--font-display);
font-size: 20px;
font-weight: 600;
margin-top: calc(var(--spacing-unit) * 1);
}

.sample-report {
  background: var(--bg-primary);
  border-radius: 10px;
  padding: calc(var(--spacing-unit) * 3);
  margin-bottom: calc(var(--spacing-unit) * 2.5);
}

.sample-section {
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.sample-section:last-child {
margin-bottom: 0;
}

.sample-section h4 {
font-family: var(--font-mono);
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-tertiary);
margin-bottom: calc(var(--spacing-unit) * 2);
}

.sample-finding {
display: flex;
align-items: center;
gap: calc(var(--spacing-unit) * 2);
margin-bottom: calc(var(--spacing-unit) * 2);
padding: calc(var(--spacing-unit) * 2);
background: rgba(255, 255, 255, 0.02);
border-radius: 8px;
}

.finding-status {
font-family: var(--font-mono);
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
padding: calc(var(--spacing-unit) * 0.5) calc(var(--spacing-unit) * 1.5);
border-radius: 4px;
}

.status-issue {
background: rgba(249, 115, 22, 0.15);
color: #f97316;
}

.status-warning {
background: rgba(212, 168, 83, 0.15);
color: #d4a853;
}

.status-ok {
background: rgba(45, 212, 191, 0.15);
color: #2dd4bf;
}

.finding-text {
font-size: 14px;
color: var(--text-primary);
}

.sample-opportunity {
margin-bottom: calc(var(--spacing-unit) * 2);
padding: calc(var(--spacing-unit) * 2);
background: rgba(74, 158, 255, 0.05);
border-left: 3px solid var(--accent-blue);
border-radius: 0 8px 8px 0;
}

.opportunity-keyword {
font-family: var(--font-mono);
font-size: 14px;
font-weight: 600;
color: var(--accent-blue);
display: block;
margin-bottom: calc(var(--spacing-unit) * 1);
}

.opportunity-detail {
font-size: 14px;
color: var(--text-secondary);
}

.sample-note {
font-size: 12px;
color: var(--text-tertiary);
font-style: italic;
}

/* === Pricing === */
.pricing {
max-width: 1400px;
margin: 0 auto;
padding: 0 calc(var(--spacing-unit) * 4);
}

.pricing-simple {
max-width: 700px;
margin: 0 auto;
text-align: center;
}

.pricing-from {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: calc(var(--spacing-unit) * 5);
  margin-bottom: calc(var(--spacing-unit) * 4);
  backdrop-filter: blur(12px);
}

.pricing-from-label {
font-family: var(--font-mono);
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--accent-blue);
margin-bottom: calc(var(--spacing-unit) * 2);
}

.pricing-from-price {
margin-bottom: calc(var(--spacing-unit) * 2);
}

.from-amount {
font-family: var(--font-mono);
font-size: 48px;
font-weight: 700;
color: var(--text-primary);
}

.from-period {
font-size: 18px;
color: var(--text-secondary);
}

.pricing-from-detail {
color: var(--text-secondary);
line-height: 1.6;
}

.pricing-includes {
  text-align: left;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: calc(var(--spacing-unit) * 3.5);
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.pricing-includes h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: calc(var(--spacing-unit) * 2.5);
}

.pricing-includes-list {
list-style: none;
}

.pricing-includes-list li {
position: relative;
padding-left: calc(var(--spacing-unit) * 3);
margin-bottom: calc(var(--spacing-unit) * 2);
color: var(--text-secondary);
line-height: 1.6;
}

.pricing-includes-list li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--accent-blue);
font-weight: 700;
}

.pricing-note {
margin-bottom: calc(var(--spacing-unit) * 4);
}

.pricing-note p {
font-size: 14px;
color: var(--text-tertiary);
line-height: 1.6;
}

/* === Report Form === */
.report-section {
background: var(--bg-secondary);
}

.report-container {
max-width: 700px;
margin: 0 auto;
padding: 0 calc(var(--spacing-unit) * 4);
}

.report-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: calc(var(--spacing-unit) * 6);
  backdrop-filter: blur(12px);
  text-align: center;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s ease;
}

.report-content.visible {
opacity: 1;
transform: scale(1);
}

.report-title {
font-family: var(--font-display);
font-size: clamp(32px, 5vw, 48px);
font-weight: 700;
margin-bottom: calc(var(--spacing-unit) * 2);
line-height: 1.2;
}

.report-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: calc(var(--spacing-unit) * 5);
  line-height: 1.6;
}

.report-form {
text-align: left;
}

.form-group {
margin-bottom: calc(var(--spacing-unit) * 3);
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: calc(var(--spacing-unit) * 3);
}

.form-row-main {
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.form-group label {
display: block;
font-size: 14px;
font-weight: 600;
margin-bottom: calc(var(--spacing-unit) * 1);
color: var(--text-primary);
}

.form-group input {
width: 100%;
padding: calc(var(--spacing-unit) * 2);
background: rgba(20, 22, 32, 0.8);
border: 1px solid var(--glass-border);
border-radius: 8px;
color: var(--text-primary);
font-family: var(--font-body);
font-size: 16px;
transition: all 0.2s ease;
}

.form-group input:focus {
outline: none;
border-color: var(--accent-blue);
background: rgba(74, 158, 255, 0.05);
}

.form-group input::placeholder {
color: var(--text-tertiary);
}

.report-form .btn {
width: 100%;
justify-content: center;
margin-top: calc(var(--spacing-unit) * 2);
margin-bottom: calc(var(--spacing-unit) * 3);
}

.form-note {
font-size: 13px;
color: var(--text-tertiary);
text-align: center;
line-height: 1.5;
}

/* === Footer === */
.footer {
  background: var(--bg-secondary);
  padding: calc(var(--spacing-unit) * 8) 0;
  border-top: 1px solid var(--glass-border);
}

.footer-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 calc(var(--spacing-unit) * 4);
display: grid;
grid-template-columns: 1fr auto auto;
gap: calc(var(--spacing-unit) * 10);
align-items: center;
}

.footer-logo {
font-family: var(--font-display);
font-size: 20px;
font-weight: 600;
margin-bottom: calc(var(--spacing-unit) * 1);
}

.footer-tagline {
font-size: 14px;
color: var(--text-secondary);
}

.footer-links, .footer-legal {
display: flex;
flex-direction: column;
gap: calc(var(--spacing-unit) * 2);
}

.footer-links a, .footer-legal a {
color: var(--text-secondary);
text-decoration: none;
font-size: 14px;
transition: color 0.2s ease;
}

.footer-links a:hover, .footer-legal a:hover {
color: var(--text-primary);
}

/* === Responsive === */
@media (max-width: 1200px) {
.steps-container {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 6);
}

.step-connector {
    width: 1px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(to bottom, var(--glass-border), var(--accent-blue), var(--glass-border));
}

.step-connector::after {
    content: '↓';
    bottom: -20px;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}
}

@media (max-width: 900px) {
  :root {
    --section-padding: calc(var(--spacing-unit) * 8);
  }

  .trust-container {
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 3);
  }

  .trust-divider {
    display: none;
  }

  .nav-links {
    display: none;
  }

.nav-cta {
    font-size: 13px;
    padding: 8px 16px;
}

.hero-subtitle {
    font-size: 17px;
}

.problem-points {
    grid-template-columns: 1fr;
}

.services-grid {
    grid-template-columns: 1fr;
}

.methodology-container {
    grid-template-columns: 1fr;
}

.section-title {
    font-size: clamp(28px, 6vw, 48px);
}

.footer-container {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 6);
    text-align: center;
}

.footer-links, .footer-legal {
    align-items: center;
}
}

@media (max-width: 600px) {
  :root {
    --section-padding: calc(var(--spacing-unit) * 6);
  }

.hero-content {
    padding: 0 calc(var(--spacing-unit) * 3);
}

.hero-title {
    font-size: clamp(36px, 10vw, 64px);
}

.form-row {
    grid-template-columns: 1fr;
}

.report-content {
    padding: calc(var(--spacing-unit) * 4);
}

.step-icon {
    width: 64px;
    height: 64px;
}

.step-icon svg {
    width: 36px;
    height: 36px;
}

  .pricing-from {
    padding: calc(var(--spacing-unit) * 3.5);
  }

.from-amount {
    font-size: 36px;
}
}
