/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #8AC926;
  --green-dark: #6F9E1E;
  --black: #1A1A1A;
  --dark-gray: #2D2D2D;
  --gray: #4B4B4B;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E0E0E0;
  --gray-400: #BDBDBD;
  --text-light: #A5A5A5;
  --text-gray: #7A7A7A;
  --accent-light: #DCF2A2;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
  --transition: all 0.25s ease-in-out;
  --container: 1200px;
  --container-pad: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .btn, .nav-link, .logo-text {
  font-family: 'Montserrat', sans-serif;
}

h1 { font-size: 48px; font-weight: 800; line-height: 1.2; }
h2 { font-size: 36px; font-weight: 700; line-height: 1.2; }
h3 { font-size: 28px; font-weight: 700; line-height: 1.2; }
h4 { font-size: 22px; font-weight: 600; line-height: 1.2; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
  cursor: pointer; border: none; transition: var(--transition);
  text-align: center; line-height: 1;
}
.btn-primary { background: var(--green); color: var(--black); }
.btn-primary:hover { background: var(--green-dark); transform: scale(1.02); }
.btn-primary:active { transform: scale(0.95); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }

.section-padding { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { color: var(--black); margin-bottom: 12px; }
.section-header p { color: var(--text-gray); font-size: 18px; max-width: 600px; margin: 0 auto; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 80px; background: transparent; transition: var(--transition);
}
.site-header.scrolled { background: var(--black); box-shadow: var(--shadow-md); }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad);
}

.logo { display: flex; align-items: center; gap: 10px; z-index: 1001; }
.logo img { width: 40px; height: 40px; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--white); font-weight: 500; font-size: 15px;
  transition: var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--green); transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { color: var(--white); font-weight: 500; font-size: 14px; transition: var(--transition); }
.header-phone:hover { color: var(--green); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.menu-toggle span {
  display: block; width: 26px; height: 2px; background: var(--white);
  margin: 6px 0; transition: var(--transition); border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(138,201,38,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(138,201,38,0.05) 0%, transparent 50%);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 650px; }
.hero-content h1 {
  color: var(--white); font-size: 52px; font-weight: 800; text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5); margin-bottom: 20px; line-height: 1.15;
}
.hero-content p {
  color: rgba(255,255,255,0.85); font-size: 18px; max-width: 550px;
  margin-bottom: 32px; line-height: 1.7;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border-radius: var(--radius-lg); padding: 14px 20px;
  box-shadow: var(--shadow-lg); margin-top: 16px;
}
.hero-badge .badge-icon { width: 32px; height: 32px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hero-badge .badge-icon svg { width: 16px; height: 16px; }
.hero-badge span { color: var(--black); font-weight: 700; font-size: 13px; }

/* ===== FEATURE CARDS ===== */
.feature-cards { background: var(--white); }
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: var(--white); border-radius: var(--radius-md); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  transition: var(--transition); text-align: center;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.feature-card .card-icon {
  width: 56px; height: 56px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.feature-card .card-icon svg { width: 24px; height: 24px; }
.feature-card h3 { color: var(--black); font-size: 18px; margin-bottom: 10px; }
.feature-card p { color: var(--text-gray); font-size: 14px; line-height: 1.7; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--gray-100); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-text h2 { color: var(--black); text-transform: uppercase; margin-bottom: 20px; }
.about-text p { color: var(--text-gray); font-size: 18px; line-height: 1.7; margin-bottom: 24px; }
.about-image img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--black); border-radius: var(--radius-lg); margin-top: 48px;
  overflow: hidden;
}
.stat-item { text-align: center; padding: 32px 16px; }
.stat-item .stat-number { color: var(--white); font-size: 32px; font-weight: 800; font-family: 'Montserrat', sans-serif; }
.stat-item .stat-label { color: var(--green); font-size: 12px; text-transform: uppercase; font-weight: 600; margin-top: 6px; letter-spacing: 1px; }

/* ===== SERVICES CARDS ===== */
.services-section { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.service-card .card-img { height: 200px; overflow: hidden; }
.service-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card .card-body { padding: 24px; }
.service-card .card-body h3 { color: var(--black); font-size: 18px; margin-bottom: 8px; }
.service-card .card-body .card-tag { color: var(--text-gray); font-size: 12px; margin-bottom: 12px; }
.service-card .card-body ul { margin-bottom: 20px; }
.service-card .card-body ul li {
  color: var(--text-gray); font-size: 14px; padding: 4px 0; padding-left: 20px;
  position: relative; line-height: 1.6;
}
.service-card .card-body ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
}
.svc-card-icon {
  width: 56px; height: 56px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.svc-card-icon svg { width: 24px; height: 24px; }

/* ===== SECURITY / FEATURES GRID ===== */
.security-section { background: var(--black); }
.security-section .section-header h2 { color: var(--white); }
.security-section .section-header p { color: var(--text-light); }
.security-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.security-card {
  background: var(--dark-gray); border-radius: var(--radius-md); padding: 28px 20px;
  text-align: center; transition: var(--transition);
}
.security-card:hover { background: var(--black); border: 1px solid var(--green); }
.security-card .sec-icon {
  width: 48px; height: 48px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.security-card .sec-icon svg { width: 20px; height: 20px; }
.security-card h4 { color: var(--white); font-size: 14px; }

/* ===== STEPS SECTION ===== */
.steps-section { background: var(--gray-100); }
.steps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.steps-image img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.steps-box {
  background: var(--black); border-radius: var(--radius-lg); padding: 40px;
}
.steps-box h3 { color: var(--white); margin-bottom: 28px; }
.step-item {
  display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid var(--gray);
}
.step-item:last-child { border-bottom: none; }
.step-number { color: var(--green); font-size: 22px; font-weight: 700; font-family: 'Montserrat', sans-serif; flex-shrink: 0; }
.step-info h4 { color: var(--white); font-size: 16px; margin-bottom: 4px; }
.step-info p { color: var(--text-gray); font-size: 14px; line-height: 1.6; }

/* ===== FEATURES ALT GRID ===== */
.features-alt { background: var(--white); }
.features-alt-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-alt-card {
  background: var(--gray-100); border-radius: var(--radius-md); padding: 36px 28px;
  text-align: center; transition: var(--transition);
}
.feature-alt-card:hover { background: var(--green); transform: scale(1.02); }
.feature-alt-card:hover * { color: var(--white); }
.feature-alt-card .alt-icon {
  width: 64px; height: 64px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.feature-alt-card:hover .alt-icon { background: var(--white); }
.feature-alt-card:hover .alt-icon svg { color: var(--green); }
.feature-alt-card .alt-icon svg { width: 28px; height: 28px; color: var(--white); }
.feature-alt-card h3 { color: var(--black); font-size: 18px; margin-bottom: 10px; }
.feature-alt-card p { color: var(--text-gray); font-size: 14px; line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative; background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
  text-align: center; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(138,201,38,0.1) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,0.5); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 28px; }

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.faq-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.faq-item {
  background: var(--gray-100); border-radius: var(--radius-md); margin-bottom: 8px;
  overflow: hidden; transition: var(--transition);
}
.faq-item:hover { background: var(--green); }
.faq-item.active { background: var(--green); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; background: none; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 16px;
  color: var(--black); text-align: left; transition: var(--transition);
}
.faq-item:hover .faq-question, .faq-item.active .faq-question { color: var(--black); }
.faq-icon { font-size: 20px; color: var(--green); transition: var(--transition); flex-shrink: 0; margin-left: 12px; }
.faq-item:hover .faq-icon, .faq-item.active .faq-icon { color: var(--black); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 18px; color: var(--black); font-size: 14px; line-height: 1.7; }

/* ===== FOOTER CTA ===== */
.footer-cta { background: var(--black); text-align: center; }
.footer-cta h2 { color: var(--white); margin-bottom: 12px; }
.footer-cta p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 24px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark-gray); padding-top: 48px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-gray); font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 12px; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-gray); font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--gray); padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: var(--text-gray); font-size: 12px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
  padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(138,201,38,0.06) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb { color: var(--text-light); font-size: 14px; margin-bottom: 12px; }
.page-hero .breadcrumb a { color: var(--green); transition: var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--green-dark); }
.page-hero h1 { color: var(--white); }

/* ===== PLAY PAGE ===== */
.play-section { background: var(--white); }
.play-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.play-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); transition: var(--transition); text-align: center;
}
.play-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.play-card .play-img { height: 220px; overflow: hidden; }
.play-card .play-img img { width: 100%; height: 100%; object-fit: cover; }
.play-card .play-body { padding: 28px 24px; }
.play-card .play-duration { color: var(--green); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.play-card .play-body h3 { color: var(--black); font-size: 20px; margin-bottom: 10px; }
.play-card .play-body p { color: var(--text-gray); font-size: 14px; line-height: 1.7; }
.play-icon {
  width: 56px; height: 56px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.play-icon svg { width: 24px; height: 24px; }
.play-cta { text-align: center; margin-top: 48px; }
.play-cta-text { color: var(--text-gray); font-size: 16px; margin-bottom: 20px; }
.bg-white { background: var(--white); }

/* ===== GAME REVIEWS PAGE ===== */
.reviews-section { background: var(--white); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.review-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); transition: var(--transition); display: flex; flex-direction: column;
}
.review-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.review-card .review-img { height: 240px; overflow: hidden; }
.review-card .review-img img { width: 100%; height: 100%; object-fit: cover; }
.review-card .review-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.review-card .review-genre { color: var(--green); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.review-card .review-body h3 { color: var(--black); font-size: 20px; margin-bottom: 8px; }
.review-card .review-body p { color: var(--text-gray); font-size: 14px; line-height: 1.7; flex: 1; }
.review-card .review-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-200); }
.review-card .review-rating { color: var(--green); font-size: 20px; font-weight: 800; font-family: 'Montserrat', sans-serif; }
.review-card .review-link { color: var(--green); font-size: 14px; font-weight: 600; transition: var(--transition); }
.review-card .review-link:hover { color: var(--green-dark); }

/* ===== SERVICES PAGE ===== */
.services-page-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-page-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  transition: var(--transition); text-align: center;
}
.service-page-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.service-page-card .svc-icon {
  width: 60px; height: 60px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.service-page-card .svc-icon svg { width: 26px; height: 26px; }
.service-page-card h3 { color: var(--black); font-size: 18px; margin-bottom: 10px; }
.service-page-card p { color: var(--text-gray); font-size: 14px; line-height: 1.7; }

/* ===== ABOUT PAGE ===== */
.about-values { background: var(--white); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.value-card {
  background: var(--gray-100); border-radius: var(--radius-md); padding: 32px 24px;
  text-align: center; transition: var(--transition);
}
.value-card:hover { background: var(--green); }
.value-card:hover * { color: var(--white); }
.value-card .val-icon {
  width: 52px; height: 52px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.value-card:hover .val-icon { background: var(--white); }
.value-card:hover .val-icon svg { color: var(--green); }
.value-card .val-icon svg { width: 22px; height: 22px; color: var(--white); }
.value-card h3 { color: var(--black); font-size: 16px; margin-bottom: 8px; }
.value-card p { color: var(--text-gray); font-size: 13px; line-height: 1.6; }

.about-future { background: var(--gray-100); }
.about-future .container { max-width: 700px; text-align: center; }
.about-future h2 { color: var(--black); margin-bottom: 16px; }
.about-future p { color: var(--text-gray); font-size: 18px; line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.contact-info h2 { color: var(--black); margin-bottom: 16px; }
.contact-info > p { color: var(--text-gray); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail .cd-icon {
  width: 44px; height: 44px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail .cd-icon svg { width: 18px; height: 18px; }
.contact-detail h4 { color: var(--black); font-size: 14px; margin-bottom: 2px; }
.contact-detail p { color: var(--text-gray); font-size: 14px; }

.contact-form-card {
  background: var(--gray-100); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { color: var(--black); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--black); font-weight: 500; font-size: 14px; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--black);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(138,201,38,0.2);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit .btn { width: 100%; }

/* ===== PRIVACY PAGE ===== */
.privacy-content { background: var(--white); }
.privacy-content .container { max-width: 800px; }
.privacy-content .last-updated { color: var(--text-gray); font-size: 14px; margin-bottom: 32px; }
.privacy-content h2 { color: var(--black); font-size: 24px; margin: 36px 0 14px; }
.privacy-content h2:first-of-type { margin-top: 0; }
.privacy-content p { color: var(--text-gray); font-size: 16px; line-height: 1.7; margin-bottom: 14px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }
  .section-padding { padding: 56px 0; }

  .menu-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black); flex-direction: column; justify-content: center;
    gap: 28px; transform: translateX(100%); transition: var(--transition);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 20px; }
  .header-cta { display: none; }

  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 16px; }

  .feature-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image { order: -1; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-alt-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-image { order: -1; }
  .play-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  :root { --container-pad: 16px; }
  .hero { min-height: 90vh; }
  .hero-content h1 { font-size: 28px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .btn { padding: 12px 24px; font-size: 14px; }
}
