/* 777abc casino - Complete Design System */
/* Original design - NOT copied from competitor */

:root {
  --clr-primary: #1a5276;
  --clr-primary-light: #2980b9;
  --clr-accent: #e67e22;
  --clr-accent-light: #f39c12;
  --clr-success: #27ae60;
  --clr-danger: #c0392b;
  --clr-bg: #0a0e17;
  --clr-bg-alt: #111827;
  --clr-bg-card: #1a2332;
  --clr-bg-card2: #15202e;
  --clr-text: #e8ecf1;
  --clr-text-muted: #8899aa;
  --clr-border: rgba(42,62,82,0.5);
  --clr-glow: rgba(26,82,118,0.3);
  --grad-primary: linear-gradient(135deg, #1a5276, #2980b9);
  --grad-accent: linear-gradient(135deg, #e67e22, #f39c12);
  --grad-hero: linear-gradient(160deg, #0a0e17 0%, #111827 40%, #1a2332 100%);
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Bengali", sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.2);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.3);
  --max-w: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-primary-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--clr-accent); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(10,14,23,0.97);
  border-bottom: 1px solid var(--clr-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 72px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.brand-wrap {
  width: 168px;
  min-width: 168px;
  max-width: 168px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  background: var(--grad-accent);
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

.brand-text {
  min-width: 0;
  line-height: 1.05;
}

.brand-text strong {
  display: block;
  max-width: 105px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  color: var(--clr-accent);
  font-weight: 700;
}

.brand-text span {
  display: block;
  max-width: 105px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  color: var(--clr-text-muted);
  letter-spacing: 0.5px;
}

.primary-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1vw, 18px);
  overflow: visible;
  flex-wrap: nowrap;
}

.primary-nav a {
  white-space: nowrap;
  flex: 0 1 auto;
  max-width: 128px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
  padding: 10px 6px;
  font-size: 14px;
  color: var(--clr-text);
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--clr-accent);
  border-bottom-color: var(--clr-accent);
}

/* More menu */
.nav-more {
  position: relative;
  flex: 0 0 auto;
}

.more-toggle {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg-card);
  color: var(--clr-text);
  font-size: 13px;
  font-family: var(--font-main);
  transition: border-color 0.2s;
}

.more-toggle:hover { border-color: var(--clr-accent); color: var(--clr-accent); }

.more-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 210px;
  padding: 10px;
  border-radius: var(--radius-md);
  z-index: 1200;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
}

.more-menu[hidden] { display: none !important; }

.nav-more.is-open .more-menu {
  display: grid;
  gap: 4px;
}

.more-menu a {
  display: block;
  width: 100%;
  max-width: none;
  padding: 11px 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--clr-text);
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.more-menu a:hover { background: var(--clr-bg-alt); color: var(--clr-accent); }

.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.header-actions .btn {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
}

.btn-register {
  background: var(--grad-accent);
  color: #fff;
}
.btn-register:hover { opacity: 0.9; transform: translateY(-1px); color: #fff; }

.btn-login {
  background: transparent;
  border: 1.5px solid var(--clr-primary-light) !important;
  color: var(--clr-primary-light);
}
.btn-login:hover { background: var(--clr-primary-light); color: #fff; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: var(--clr-bg-card);
  color: var(--clr-text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ========== HERO ========== */
.hero {
  background: var(--grad-hero);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, var(--clr-glow), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(230,126,34,0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--grad-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

.hero h1 em {
  font-style: normal;
  color: var(--clr-accent);
}

.hero-desc {
  color: var(--clr-text-muted);
  font-size: 16px;
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-cta .btn-cta {
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-cta-primary { background: var(--grad-accent); color: #fff; }
.btn-cta-primary:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }
.btn-cta-outline { background: transparent; border: 2px solid var(--clr-primary-light); color: var(--clr-primary-light); }
.btn-cta-outline:hover { background: var(--clr-primary-light); color: #fff; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.hero-stats .stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-accent);
}

.hero-stats .stat-label {
  font-size: 13px;
  color: var(--clr-text-muted);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  max-height: 420px;
  object-fit: cover;
  width: 100%;
}

/* ========== SECTIONS ========== */
.section { padding: 72px 0; }
.section-alt { background: var(--clr-bg-alt); }
.section-grad { background: linear-gradient(135deg, rgba(26,82,118,0.06), rgba(230,126,34,0.06)); }

.section-header { text-align: center; margin-bottom: 48px; }

.section-header h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-header h2 em {
  font-style: normal;
  color: var(--clr-accent);
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--grad-accent);
  border-radius: 2px;
  margin: 10px auto 16px;
}

.section-header p {
  color: var(--clr-text-muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== CARDS ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(230,126,34,0.4);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--grad-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card p {
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ========== STEPS ========== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--clr-bg-card2);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  border: 1px solid var(--clr-border);
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--grad-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--clr-text-muted);
  font-size: 14px;
}

/* ========== COMPARE TABLE ========== */
.compare-wrap { overflow-x: auto; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th {
  background: var(--grad-primary);
  color: #fff;
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
}

.compare-table th:first-child { text-align: left; border-radius: var(--radius-sm) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--clr-border);
  text-align: center;
  color: var(--clr-text);
}

.compare-table td:first-child { text-align: left; }
.compare-table tbody tr:hover { background: rgba(26,82,118,0.08); }
.icon-yes { color: var(--clr-success); }
.icon-no { color: var(--clr-danger); }

/* ========== PRICING ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(26,82,118,0.12), rgba(230,126,34,0.12));
  border-color: var(--clr-accent);
}

.pricing-badge {
  display: inline-block;
  background: var(--grad-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 4px;
}

.pricing-list {
  list-style: none;
  text-align: left;
  margin: 16px 0;
}

.pricing-list li {
  padding: 6px 0;
  color: var(--clr-text-muted);
  font-size: 14px;
}

.pricing-list li::before {
  content: "\2713";
  color: var(--clr-success);
  margin-right: 8px;
  font-weight: 700;
}

/* ========== TESTIMONIALS ========== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--clr-bg-card2);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--clr-border);
}

.testimonial-stars { color: var(--clr-accent-light); font-size: 14px; margin-bottom: 12px; }

.testimonial-card blockquote {
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.author-name { font-weight: 600; font-size: 14px; }
.author-loc { color: var(--clr-text-muted); font-size: 12px; }

/* ========== RESPONSIBLE GAMING BOX ========== */
.responsible-box {
  background: linear-gradient(135deg, rgba(26,82,118,0.08), rgba(230,126,34,0.08));
  border: 1px solid rgba(26,82,118,0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.responsible-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.responsible-icon {
  width: 40px;
  height: 40px;
  background: rgba(26,82,118,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary-light);
  flex-shrink: 0;
  font-size: 18px;
}

/* ========== FAQ ========== */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--clr-text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--clr-accent); }

.faq-question::after {
  content: "+";
  font-size: 20px;
  color: var(--clr-accent);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}

.faq-item.is-open .faq-question::after {
  content: "\2212";
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 18px;
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.faq-item.is-open .faq-answer { display: block; }

/* ========== CONTENT / PROSE ========== */
.content-section { padding: 72px 0; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 36px;
  align-items: start;
}

.prose { max-width: 820px; }

.prose p {
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 18px;
  color: var(--clr-text);
}

.prose h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
  margin: 48px 0 18px;
  font-weight: 700;
}

.prose h2:first-child { margin-top: 0; }

.prose h2 em { font-style: normal; color: var(--clr-accent); }

.prose h3 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  margin: 28px 0 12px;
  font-weight: 600;
}

.prose ul, .prose ol {
  margin: 0 0 18px 24px;
  color: var(--clr-text-muted);
}

.prose li { margin-bottom: 6px; font-size: 15px; }

.prose img {
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  margin: 24px 0;
}

.content-img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}

.notice-box {
  background: rgba(26,82,118,0.07);
  border-left: 4px solid var(--clr-primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 24px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--clr-text-muted);
}

.notice-box strong { color: var(--clr-text); }

/* ========== BREADCRUMB ========== */
.breadcrumb-wrap {
  padding: 16px 0;
  font-size: 13px;
  color: var(--clr-text-muted);
}

.breadcrumb-wrap a { color: var(--clr-primary-light); }
.breadcrumb-wrap span { margin: 0 8px; }

/* ========== INNER PAGE HERO ========== */
.inner-hero {
  background: var(--grad-hero);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--clr-glow), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.inner-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.inner-hero h1 em { font-style: normal; color: var(--clr-accent); }

.inner-hero-desc {
  color: var(--clr-text-muted);
  font-size: 15px;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin: 48px 0;
}

.cta-banner h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 12px;
  color: #fff;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  font-size: 15px;
}

.cta-banner .btn-cta {
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-flex;
  text-decoration: none;
}

/* ========== RELATED LINKS ========== */
.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.related-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  text-decoration: none;
  transition: border-color 0.2s;
}

.related-link-card:hover { border-color: var(--clr-accent); color: var(--clr-accent); }

/* ========== FOOTER ========== */
.site-footer {
  background: #060a12;
  border-top: 1px solid var(--clr-border);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  color: var(--clr-text-muted);
  font-size: 14px;
  max-width: 300px;
  margin-top: 12px;
  line-height: 1.7;
}

.footer-contact {
  margin-top: 16px;
  font-size: 13px;
  color: var(--clr-text-muted);
}

.footer-contact a { color: var(--clr-primary-light); }

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--clr-text);
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  color: var(--clr-text-muted);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--clr-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 32px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--clr-text-muted);
  font-size: 12px;
}

/* ========== MOBILE ========== */
@media (max-width: 900px) {
  .header-inner {
    min-height: 68px;
    grid-template-columns: 140px 1fr auto;
    gap: 10px;
  }

  .brand-wrap {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    height: 48px;
  }

  .brand-mark { width: 38px; height: 38px; flex-basis: 38px; }
  .brand-text strong, .brand-text span { max-width: 86px; }

  .primary-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: var(--radius-lg);
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .primary-nav.is-open { display: flex; }

  .primary-nav a {
    max-width: none;
    width: 100%;
    padding: 14px 12px;
    text-overflow: initial;
    border-bottom: 1px solid var(--clr-border);
  }

  .primary-nav a:last-child { border-bottom: none; }

  .header-actions {
    justify-content: flex-end;
    gap: 6px;
  }

  .header-actions .btn {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .nav-toggle { display: inline-flex; }
  .nav-more { display: none !important; }

  .hero { padding: 48px 0 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual { order: -1; }
  .hero-stats { gap: 20px; }

  .section { padding: 48px 0; }
  .card-grid-4, .card-grid-3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }

  .prose p { font-size: 15px; line-height: 1.85; }
  .cta-banner { padding: 32px 20px; }
  .responsible-box { padding: 24px; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .header-actions .btn { padding: 0 10px; font-size: 12px; min-height: 36px; }
}
