*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #f8f8f7;
  --gray-100: #f0efed;
  --gray-200: #e4e3e0;
  --gray-300: #cccbc7;
  --gray-400: #a8a7a3;
  --gray-500: #6b6a67;
  --gray-600: #4a4947;
  --gray-700: #2e2d2b;
  --gray-800: #1c1b1a;
  --red: #ef4444;
  --red-dark: #b91c1c;
  --red-light: #fee2e2;
  --font-sans: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --max-w: 1100px;
  --t: 0.18s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-sans); background: var(--white); color: var(--gray-700); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: rgba(0,0,0,0.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 12px 24px; min-height: 70px; display: flex; align-items: center; justify-content: space-between; }
.logo-wrap { text-decoration: none; display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.logo-row { display: flex; align-items: center; gap: 14px; }
.logo-img { width: 52px; height: 52px; object-fit: contain; border-radius: var(--radius); image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter var(--t); will-change: transform; transform: translateZ(0); background: transparent; filter: drop-shadow(0 0 8px rgba(255,255,255,0.15)); }
.logo-wrap:hover .logo-img { transform: scale(1.06) translateY(-1px) translateZ(0); filter: drop-shadow(0 0 12px rgba(255,255,255,0.35)); }
.logo-name { font-weight: 700; font-size: 18px; color: var(--white); letter-spacing: -0.4px; white-space: nowrap; transition: color var(--t), text-shadow var(--t); }
.logo-wrap:hover .logo-name { color: var(--white); text-shadow: 0 0 12px rgba(255,255,255,0.3); }
.logo-tagline { font-size: 12px; color: rgba(255,255,255,0.85); padding-left: 80px; white-space: nowrap; font-weight: 600; letter-spacing: -0.1px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: #ffffff; font-size: 14px; font-weight: 500; transition: color var(--t), text-shadow var(--t); }
.nav-links a:hover { color: #ffffff; text-shadow: 0 0 12px rgba(255,255,255,0.3); }
.nav-cta { background: #ffffff !important; color: #000000 !important; padding: 8px 18px; border-radius: var(--radius); font-weight: 600 !important; font-size: 14px !important; transition: transform var(--t), box-shadow var(--t), background var(--t) !important; box-shadow: 0 4px 12px rgba(255,255,255,0.08) !important; }
.nav-cta:hover { transform: translateY(-3px) !important; box-shadow: 0 8px 25px rgba(255,255,255,0.25) !important; background: #fafafa !important; }
.nav-wa { display: inline-flex; align-items: center; gap: 7px; background: #15803d; color: white !important; padding: 8px 14px; border-radius: var(--radius); font-size: 14px; font-weight: 500; text-decoration: none; transition: transform var(--t), box-shadow var(--t), filter var(--t); box-shadow: 0 4px 12px rgba(21,128,61,0.2); }
.nav-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(21,128,61,0.35); filter: brightness(1.05); }
.hamburger { display: none; cursor: pointer; background: none; border: none; padding: 4px; color: var(--white); }
.hamburger path { transition: stroke var(--t); }

/* HERO */
.hero { padding: 80px 24px 72px; max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--red-light); color: var(--red-dark); padding: 5px 13px; border-radius: 100px; font-size: 12px; font-weight: 500; letter-spacing: 0.3px; text-transform: uppercase; margin-bottom: 22px; }
.eyebrow-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.35} }

h1 { font-size: clamp(32px, 4.2vw, 50px); font-weight: 600; line-height: 1.1; letter-spacing: -1.2px; color: var(--black); margin-bottom: 18px; }
.hero-sub { font-size: 17px; color: var(--gray-500); line-height: 1.7; max-width: 440px; margin-bottom: 34px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.btn-primary { background: var(--black); color: var(--white); padding: 13px 22px; border-radius: var(--radius); font-size: 15px; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: transform var(--t), box-shadow var(--t); border: none; cursor: pointer; font-family: var(--font-sans); letter-spacing: -0.1px; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.btn-secondary { color: var(--gray-500); font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: color var(--t); }
.btn-secondary:hover { color: var(--black); }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--gray-400); display: flex; align-items: center; gap: 6px; }

/* HERO CARD */
.hero-visual { position: relative; min-width: 0; z-index: 1; }
.hero-visual::before { content: ''; position: absolute; top: 10%; left: 10%; right: 10%; bottom: 10%; background: var(--red); filter: blur(40px); opacity: 0.15; z-index: -1; transition: opacity 0.4s ease; }
.hero-visual:hover::before { opacity: 0.25; }
.audit-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.12); position: relative; z-index: 2; }
.audit-card-header { padding: 16px 20px; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }
.audit-card-title { font-size: 13px; font-weight: 500; color: var(--black); }
.audit-card-domain { font-size: 12px; color: var(--gray-400); font-family: var(--font-mono); }
.audit-card-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.issue-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--radius-lg); border: 1px solid transparent; }
.issue-row.crit { background: #fff5f5; border-color: #fecaca; }
.issue-row.high { background: #fffbeb; border-color: #fde68a; }
.issue-row.spoof { background: #f0f9ff; border-color: #bae6fd; }
.issue-count { font-size: 28px; font-weight: 600; letter-spacing: -1px; flex-shrink: 0; line-height: 1; }
.issue-row.crit .issue-count { color: #dc2626; }
.issue-row.high .issue-count { color: #d97706; }
.issue-row.spoof .issue-count { color: #0369a1; font-size: 20px; padding-top: 4px; }
.issue-label { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.issue-row.crit .issue-label { color: #991b1b; }
.issue-row.high .issue-label { color: #92400e; }
.issue-row.spoof .issue-label { color: #0c4a6e; }
.issue-desc { font-size: 12px; color: var(--gray-400); line-height: 1.4; }
.audit-card-footer { padding: 13px 20px; border-top: 1px solid var(--gray-100); background: var(--gray-50); display: flex; align-items: center; justify-content: space-between; }
.audit-footer-text { font-size: 12px; color: var(--gray-400); }
.audit-badge { font-size: 11px; background: #dcfce7; color: #166534; padding: 3px 9px; border-radius: 4px; font-weight: 500; }

/* SECTIONS */
.section { padding: 84px 24px; }
.section-alt { background: var(--gray-50); }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-tag { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--gray-400); margin-bottom: 12px; }
.section-headline { font-size: clamp(26px, 3.5vw, 40px); font-weight: 600; color: var(--black); letter-spacing: -0.8px; line-height: 1.14; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--gray-500); max-width: 500px; line-height: 1.7; }
.section-header { margin-bottom: 52px; }

/* TRUST PILLS (small) */
.trust-pills-bar { padding: 0 24px 60px; border-bottom: 1px solid var(--gray-100); }
.trust-pills-bar .container { display: flex; flex-direction: column; gap: 14px; }
.pills-label { font-size: 13px; color: var(--gray-400); font-weight: 500; }
.pills-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { display: flex; align-items: center; gap: 9px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 12px 16px; transition: border-color var(--t); }
.pill:hover { border-color: var(--gray-300); }
.pill-icon { width: 30px; height: 30px; border-radius: 7px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pill h5 { font-size: 13px; font-weight: 500; color: var(--black); margin-bottom: 1px; }
.pill p { font-size: 12px; color: var(--gray-400); }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--gray-200); border-radius: var(--radius-xl); border: 1px solid var(--gray-200); }
.service-card { background: var(--white); padding: 30px 26px; transition: background var(--t), transform var(--t), box-shadow var(--t); border-radius: 0; }
.service-card:first-child { border-top-left-radius: var(--radius-xl); border-bottom-left-radius: var(--radius-xl); }
.service-card:last-child { border-top-right-radius: var(--radius-xl); border-bottom-right-radius: var(--radius-xl); }
.service-card:hover { background: var(--white); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); z-index: 2; position: relative; border-radius: var(--radius-xl); }
.service-card.featured { background: var(--black); }
.service-card.featured:hover { background: #111; transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); z-index: 2; position: relative; border-radius: var(--radius-xl); }
.service-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card.featured .service-icon { background: rgba(255,255,255,0.1); }
.svc-meta { font-size: 10px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.7px; color: var(--gray-400); margin-bottom: 8px; display: flex; align-items: center; justify-content: space-between; }
.service-card.featured .svc-meta { color: rgba(255,255,255,0.32); }
.popular { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); font-size: 10px; padding: 2px 8px; border-radius: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; }
.service-card h3 { font-size: 18px; font-weight: 600; color: var(--black); letter-spacing: -0.3px; margin-bottom: 8px; line-height: 1.25; }
.service-card.featured h3 { color: var(--white); }
.service-card > p { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px; }
.service-card.featured > p { color: rgba(255,255,255,0.5); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.check-list li { font-size: 13px; color: var(--gray-600); display: flex; align-items: flex-start; gap: 9px; line-height: 1.5; }
.service-card.featured .check-list li { color: rgba(255,255,255,0.58); }
.check-list li::before { content:''; width:14px; height:14px; border-radius:50%; background:var(--gray-200); flex-shrink:0; margin-top:2px; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 4l2 2 3-3' stroke='%236b6a67' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:center; }
.service-card.featured .check-list li::before { background-color:rgba(255,255,255,0.12); background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 4l2 2 3-3' stroke='white' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.svc-price { font-size: 24px; font-weight: 600; color: var(--black); letter-spacing: -0.5px; margin-bottom: 3px; }
.service-card.featured .svc-price { color: var(--white); }
.svc-price-note { font-size: 12px; color: var(--gray-400); margin-bottom: 18px; }
.service-card.featured .svc-price-note { color: rgba(255,255,255,0.3); }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--black); text-decoration: none; transition: gap var(--t); }
.svc-link:hover { gap: 10px; }
.service-card.featured .svc-link { color: var(--white); background: rgba(255,255,255,0.1); padding: 9px 14px; border-radius: var(--radius); width: 100%; justify-content: center; transition: background var(--t); }
.service-card.featured .svc-link:hover { background: rgba(255,255,255,0.17); gap: 6px; }

/* HOW IT WORKS */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps-grid::before { content:''; position:absolute; top:27px; left:calc(12.5% + 20px); right:calc(12.5% + 20px); height:1px; background:var(--gray-200); z-index:0; }
.step { padding: 0 18px; position: relative; z-index: 1; }
.step-num { width: 54px; height: 54px; border-radius: 50%; background: var(--white); border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--gray-500); margin-bottom: 18px; }
.step-num.active { background: var(--black); border-color: var(--black); color: var(--white); }
.step-day { font-size: 10px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.7px; color: var(--gray-400); margin-bottom: 5px; }
.step h4 { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 6px; letter-spacing: -0.2px; }
.step p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* REPORT PREVIEW */
.report-wrapper { max-width: 620px; margin: 60px auto 0; }
.report-label { font-size: 12px; color: var(--gray-400); text-align: center; margin-bottom: 14px; font-family: var(--font-mono); }
.report-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); overflow: hidden; }
.report-header { padding: 15px 20px; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }
.report-title { font-size: 13px; font-weight: 500; color: var(--black); }
.report-date { font-size: 11px; color: var(--gray-400); font-family: var(--font-mono); }
.finding { display: flex; align-items: flex-start; gap: 12px; padding: 13px 20px; border-bottom: 1px solid var(--gray-100); }
.finding:last-child { border-bottom: none; }
.severity { padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 600; font-family: var(--font-mono); flex-shrink: 0; text-transform: uppercase; letter-spacing: 0.3px; margin-top: 1px; }
.sev-crit { background: #fee2e2; color: #991b1b; }
.sev-high { background: #fef3c7; color: #92400e; }
.sev-med { background: #e0f2fe; color: #075985; }
.sev-info { background: var(--gray-100); color: var(--gray-600); }
.finding-text { font-size: 13px; color: var(--gray-600); line-height: 1.55; }
.finding-text strong { color: var(--black); font-weight: 500; }

/* TRUST SECTION */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.trust-left h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 600; color: var(--black); letter-spacing: -0.7px; line-height: 1.16; margin-bottom: 14px; }
.trust-left > p { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 28px; }
.trust-items { display: flex; flex-direction: column; gap: 10px; }
.trust-item { display: flex; align-items: flex-start; gap: 14px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 16px 18px; transition: border-color var(--t); }
.trust-item:hover { border-color: var(--gray-300); }
.trust-item-icon { width: 32px; height: 32px; border-radius: 7px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-item h5 { font-size: 13px; font-weight: 500; color: var(--black); margin-bottom: 2px; }
.trust-item p { font-size: 12px; color: var(--gray-400); line-height: 1.5; }

/* PRICING TABLE */
.pricing-table { display: flex; flex-direction: column; gap: 10px; }
.price-row { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.price-row.featured { background: var(--black); border-color: var(--black); }
.price-name { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 2px; }
.price-row.featured .price-name { color: var(--white); }
.price-desc { font-size: 12px; color: var(--gray-400); }
.price-row.featured .price-desc { color: rgba(255,255,255,0.38); }
.price-amount { font-size: 20px; font-weight: 600; color: var(--black); white-space: nowrap; letter-spacing: -0.5px; }
.price-row.featured .price-amount { color: var(--white); }
.price-note { font-size: 12px; color: var(--gray-400); padding: 4px 2px; }

/* CTA + FORM */
.cta-section { background: var(--black); padding: 84px 24px; }
.cta-inner { max-width: 520px; margin: 0 auto; }
.cta-section h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 600; color: var(--white); letter-spacing: -1px; line-height: 1.1; margin-bottom: 12px; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.48); margin-bottom: 36px; line-height: 1.65; }
.audit-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; color: rgba(255,255,255,0.55); }
.form-field input { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.11); border-radius: var(--radius); color: var(--white); font-size: 14px; font-family: var(--font-sans); padding: 11px 14px; outline: none; transition: border-color var(--t); }
.form-field input::placeholder { color: rgba(255,255,255,0.22); }
.form-field input:focus { border-color: rgba(255,255,255,0.28); }
.form-submit { background: var(--white); color: var(--black); padding: 13px 20px; border-radius: var(--radius); font-size: 15px; font-weight: 500; border: none; cursor: pointer; font-family: var(--font-sans); display: flex; align-items: center; justify-content: center; gap: 8px; transition: transform var(--t), box-shadow var(--t); margin-top: 4px; }
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.form-note { font-size: 12px; color: rgba(255,255,255,0.28); text-align: center; }
.form-success { display: none; text-align: center; padding: 24px 16px; color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.7; }

/* FOOTER */
footer { border-top: 1px solid var(--gray-200); padding: 48px 24px 36px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand-name { font-weight: 600; font-size: 14px; color: var(--black); margin-bottom: 1px; }
.footer-brand-tagline { font-size: 11.5px; color: var(--gray-400); margin-bottom: 12px; }
.footer-brand > p { font-size: 13px; color: var(--gray-400); line-height: 1.65; max-width: 210px; }
.footer-col h6 { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-500); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { text-decoration: none; font-size: 13px; color: var(--gray-400); transition: color var(--t); }
.footer-col a:hover { color: var(--black); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--gray-100); flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: var(--gray-400); }
.footer-tagline { font-family: var(--font-mono); font-size: 11px; color: var(--gray-300); font-style: italic; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 20px 44px; gap: 32px; }
  .hero-sub { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps-grid::before { display: none; }
  .trust-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000000;
    padding: 20px 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 99;
    gap: 4px;
    box-sizing: border-box;
  }
  .nav-links.active li { width: 100%; }
  .nav-links.active a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links.active a:hover { color: #ffffff; }
  .nav-links.active li:last-child a { border-bottom: none; }
  .nav-links.active .nav-cta {
    display: block;
    text-align: center;
    margin-top: 10px;
    padding: 12px 18px;
    background: #ffffff !important;
    color: #000000 !important;
    border-radius: var(--radius);
    border-bottom: none !important;
  }
  /* WhatsApp link in mobile nav */
  .nav-links.active .wa-nav-link {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 0;
    border-radius: 0;
    background: transparent !important;
    color: #16a34a !important;
    font-size: 15px;
  }
  .hamburger { display: block; }
}
@media (max-width: 640px) {
  .nav-inner { padding: 12px 16px; min-height: 60px; }
  .logo-row { gap: 10px; }
  .logo-img { width: 50px; height: 50px; }
  .logo-tagline { display: none; }
  .logo-name { font-size: 16px; }
  .hero { padding: 40px 16px 36px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-primary { width: 100%; justify-content: center; }
  h1 { font-size: clamp(26px, 7vw, 34px); letter-spacing: -0.8px; }
  .section { padding: 56px 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .pills-row { flex-direction: column; }
  .audit-card { font-size: 14px; }
  .cta-section { padding: 60px 16px; }
  .trust-grid { gap: 28px; }
  .services-grid { gap: 0; }
  .service-card { padding: 24px 20px; }
  .report-wrapper { margin-top: 40px; }
}


/* CHECKS GRID */
.checks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; margin-top: 32px; }
.check-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 20px; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.check-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-color: var(--gray-300); }
.check-item-icon { width: 34px; height: 34px; border-radius: 8px; background: #fff1f2; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.check-item-icon svg { color: var(--red); width: 16px; height: 16px; }
.check-item h4 { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 6px; letter-spacing: -0.2px; }
.check-item p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
