/* ===== DURMANSOFT - GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --blue: #2563EB;
  --blue-dark: #1d4ed8;
  --blue-light: #eff6ff;
  --blue-mid: #bfdbfe;
  --navy: #0F172A;
  --slate: #334155;
  --slate-mid: #64748b;
  --slate-light: #94a3b8;
  --bg: #F8FAFC;
  --white: #ffffff;
  --green: #22C55E;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.10), 0 8px 24px rgba(0,0,0,.06);
  --shadow-blue: 0 8px 24px rgba(37,99,235,.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 15px; transition: all .2s ease; cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 12px 32px rgba(37,99,235,.28); }
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: var(--white); color: var(--slate); border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--bg); border-color: var(--blue); color: var(--blue); }
.btn-white {
  background: #fff; color: var(--blue); font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover { background: #f0f6ff; transform: translateY(-1px); }
.btn-ghost-white {
  background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.25);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.2); }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-sm); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  height: 68px; display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800;
  color: var(--navy); letter-spacing: -.5px;
}
.nav-logo-icon {
  width: 38px; height: 38px; background: var(--blue); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 15px;
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
}
.nav-logo span.accent { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--slate-mid);
  transition: color .2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--blue); border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login { font-size: 14px; font-weight: 500; color: var(--slate); transition: color .2s; }
.nav-login:hover { color: var(--navy); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 8px; cursor: pointer;
}
.nav-hamburger span {
  width: 22px; height: 2px; background: var(--slate); border-radius: 2px;
  transition: all .3s;
}

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 68px 0 0 0;
  background: #fff; z-index: 99; flex-direction: column;
  padding: 24px; gap: 8px; border-top: 1px solid var(--border);
  animation: slideDown .2s ease;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px; font-weight: 500; color: var(--slate);
  padding: 12px 0; border-bottom: 1px solid var(--border-light);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { width: 100%; margin-top: 8px; justify-content: center; }

@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #eff6ff 0%, #f8fafc 60%, #f0fdf4 100%);
  padding: 80px 0 60px; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px; background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { text-align: center; max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); border: 1px solid var(--blue-mid);
  border-radius: 999px; padding: 6px 16px; font-size: 13px; font-weight: 600;
  color: var(--blue); margin-bottom: 24px;
  animation: fadeInUp .5s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px; background: var(--blue); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
.hero h1 {
  font-size: clamp(36px, 5vw, 60px); font-weight: 900; color: var(--navy);
  line-height: 1.12; letter-spacing: -1.5px; margin-bottom: 20px;
  animation: fadeInUp .5s .1s ease both;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, #6366f1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px; color: var(--slate-mid); max-width: 560px; margin: 0 auto 36px;
  line-height: 1.7; animation: fadeInUp .5s .2s ease both;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; animation: fadeInUp .5s .3s ease both; }

.hero-mockup {
  margin: 60px auto 0; max-width: 900px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,.03);
  overflow: hidden; animation: fadeInUp .6s .4s ease both;
}
.mockup-bar {
  background: #f1f5f9; padding: 12px 16px; display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup-dot.red { background: #f87171; }
.mockup-dot.yellow { background: #fbbf24; }
.mockup-dot.green { background: #34d399; }
.mockup-url {
  margin-left: 12px; flex: 1; background: #fff; border-radius: 6px;
  padding: 4px 12px; font-size: 12px; color: var(--slate-light); border: 1px solid var(--border);
}
.mockup-body {
  background: #0f172a; padding: 24px; min-height: 240px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start;
}
.mockup-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 16px;
}
.mockup-card-label { font-size: 11px; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.mockup-card-value { font-size: 20px; font-weight: 700; color: #fff; }
.mockup-card-sub { font-size: 11px; margin-top: 4px; }
.mockup-card-sub.green { color: #34d399; }
.mockup-card-sub.blue { color: #60a5fa; }
.mockup-card-sub.gray { color: rgba(255,255,255,.4); }

/* ===== SECTION ===== */
.section { padding: 80px 0; }
.section-white { background: #fff; border-top: 1px solid var(--border-light); }
.section-gray { background: var(--bg); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--blue); margin-bottom: 12px;
}
.section-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.section-sub { font-size: 16px; color: var(--slate-mid); line-height: 1.7; }

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 28px;
  transition: all .25s ease;
}
.feature-card:hover {
  background: #fff; border-color: var(--blue-mid);
  box-shadow: var(--shadow-md); transform: translateY(-4px);
}
.feature-icon {
  width: 48px; height: 48px; background: var(--blue-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--blue); transition: all .25s;
}
.feature-card:hover .feature-icon { background: var(--blue); color: #fff; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--slate-mid); line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.testimonial-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px;
}
.stars { display: flex; gap: 3px; color: #f59e0b; font-size: 14px; }
.testimonial-text { font-size: 14px; color: var(--slate); line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: var(--blue);
}
.author-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.author-role { font-size: 12px; color: var(--slate-light); }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.pricing-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 20px;
  transition: all .25s ease;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pricing-card.popular {
  border-color: var(--blue); box-shadow: var(--shadow-blue);
  background: linear-gradient(160deg, #eff6ff 0%, #fff 60%);
}
.pricing-badge {
  display: inline-flex; align-items: center;
  background: var(--blue); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; width: fit-content;
}
.pricing-name { font-size: 22px; font-weight: 800; color: var(--navy); }
.pricing-desc { font-size: 14px; color: var(--slate-mid); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; }
.pricing-amount { font-size: 40px; font-weight: 900; color: var(--navy); }
.pricing-period { font-size: 14px; color: var(--slate-light); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--slate); }
.pricing-feature .check { color: var(--green); font-size: 16px; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; font-size: 15px; font-weight: 600; color: var(--navy);
  cursor: pointer; transition: background .15s; text-align: left;
}
.faq-question:hover { background: var(--bg); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%; background: var(--blue-light);
  color: var(--blue); display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; transition: transform .3s; flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 14px; color: var(--slate-mid); line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 22px 18px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, #4338ca 100%);
  padding: 80px 0; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12) 0%, transparent 60%);
}
.cta-section h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 900; margin-bottom: 14px; position: relative; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,.85); max-width: 500px; margin: 0 auto 36px; position: relative; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== STATS ===== */
.stats-bar {
  background: #fff; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center; padding: 16px 24px;
  border-right: 1px solid var(--border-light);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 36px; font-weight: 900; color: var(--blue); line-height: 1; }
.stat-label { font-size: 13px; color: var(--slate-mid); margin-top: 6px; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy); color: rgba(255,255,255,.6);
  padding: 60px 0 32px; margin-top: auto;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 800;
  color: #fff; margin-bottom: 14px;
}
.footer-logo-icon {
  width: 34px; height: 34px; background: var(--blue); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; color: #fff;
}
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-social {
  width: 34px; height: 34px; background: rgba(255,255,255,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6);
  transition: all .2s;
}
.footer-social:hover { background: var(--blue); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: #fff; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 10px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(160deg, #eff6ff 0%, var(--bg) 100%);
  padding: 60px 0; border-bottom: 1px solid var(--border-light);
}
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: var(--slate-mid); max-width: 560px; }

/* ===== FORM STYLES ===== */
.form-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 40px; box-shadow: var(--shadow-md); max-width: 480px; margin: 0 auto;
}
.form-card h1 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-card .subtitle { font-size: 14px; color: var(--slate-mid); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 14px; color: var(--navy); font-family: inherit; background: #fff;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.form-submit { width: 100%; padding: 13px; margin-top: 8px; }
.form-footer { text-align: center; font-size: 14px; color: var(--slate-mid); margin-top: 20px; }
.form-footer a { color: var(--blue); font-weight: 600; }
.form-divider {
  display: flex; align-items: center; gap: 12px; color: var(--slate-light);
  font-size: 13px; margin: 20px 0;
}
.form-divider::before, .form-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ===== PANEL LAYOUT ===== */
.panel-layout { display: flex; min-height: calc(100vh - 68px); }
.panel-sidebar {
  width: 240px; flex-shrink: 0; background: var(--navy);
  padding: 24px 0; position: sticky; top: 68px; height: calc(100vh - 68px);
  overflow-y: auto;
}
.panel-sidebar-logo { padding: 0 20px 24px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 12px; }
.panel-sidebar-logo a {
  display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 800; color: #fff;
}
.sidebar-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: 14px; color: rgba(255,255,255,.6);
  transition: all .2s; border-radius: 0; cursor: pointer;
}
.sidebar-nav-item:hover { color: #fff; background: rgba(255,255,255,.07); }
.sidebar-nav-item.active { color: #fff; background: rgba(37,99,235,.4); border-right: 3px solid var(--blue); }
.sidebar-nav-item svg { width: 17px; height: 17px; }
.panel-content { flex: 1; padding: 32px; overflow-x: auto; }
.panel-header { margin-bottom: 28px; }
.panel-header h1 { font-size: 24px; font-weight: 800; color: var(--navy); }
.panel-header p { font-size: 14px; color: var(--slate-mid); margin-top: 4px; }
.panel-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; margin-bottom: 28px; }
.panel-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.panel-card-label { font-size: 12px; color: var(--slate-mid); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.panel-card-value { font-size: 26px; font-weight: 800; color: var(--navy); margin: 6px 0; }
.panel-card-sub { font-size: 12px; }
.panel-card-sub.up { color: var(--green); }
.panel-card-sub.muted { color: var(--slate-light); }

/* ===== TABLE ===== */
.table-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.table-header { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.table-title { font-size: 15px; font-weight: 700; color: var(--navy); }
table { width: 100%; border-collapse: collapse; }
th { padding: 12px 20px; text-align: left; font-size: 12px; font-weight: 700; color: var(--slate-mid); text-transform: uppercase; letter-spacing: .5px; background: var(--bg); border-bottom: 1px solid var(--border); }
td { padding: 13px 20px; font-size: 14px; color: var(--slate); border-bottom: 1px solid var(--border-light); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--bg); }
.badge {
  display: inline-flex; align-items: center; padding: 3px 10px;
  border-radius: 999px; font-size: 12px; font-weight: 600;
}
.badge-green { background: #dcfce7; color: #15803d; }
.badge-blue { background: #dbeafe; color: #1d4ed8; }
.badge-yellow { background: #fef9c3; color: #a16207; }
.badge-red { background: #fee2e2; color: #b91c1c; }
.badge-gray { background: #f1f5f9; color: var(--slate-mid); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade { animation: fadeInUp .5s ease both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-light); }
  .stat-item:nth-child(2), .stat-item:nth-child(4) { border-right: none; }
  .panel-sidebar { display: none; }
  .mockup-body { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 56px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 28px 20px; }
  .pricing-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
