/* ============================================
   KALE GES ENERGY - Light Glassmorphism Theme
   Inspired by Hoku Energy design system
   Brand: Pantone Blue 072 C + Pantone Orange
   ============================================ */

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

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

:root {
  /* Light theme backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fb;
  --bg-gradient: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  
  /* Glass effects */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(16, 6, 159, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.85);
  
  /* Brand colors */
  --brand-blue: #10069F;
  --brand-blue-light: #2D2E92;
  --brand-blue-glow: rgba(16,6,159,0.12);
  --brand-blue-subtle: rgba(16,6,159,0.04);
  
  --accent: #E87400;
  --accent-light: #FF9020;
  --accent-glow: rgba(232,116,0,0.2);
  --accent-subtle: rgba(232,116,0,0.06);
  
  /* Text colors for light theme */
  --text-primary: #0a1128;
  --text-secondary: #5a6376;
  --text-muted: #8b93a6;
  
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-light));
  --gradient-blue: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
  
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-gradient);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--text-primary); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p { color: var(--text-secondary); line-height: 1.8; }

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }

.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: var(--transition);
  border: none; font-family: inherit;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid rgba(0,0,0,0.12);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* --- Navigation --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  display: flex; align-items: center;
}
.logo img {
  height: 36px; width: auto;
  transition: var(--transition);
}
.logo:hover img {
  opacity: 0.85;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-weight: 500; font-size: 0.9rem;
  color: var(--text-secondary);
  position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-accent) !important;
  color: #fff !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: 0 4px 16px var(--accent-glow); transform: translateY(-1px); }

/* Language Switcher */
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px; padding: 3px; margin-left: 4px;
}
.lang-switch a {
  padding: 5px 10px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted) !important;
  letter-spacing: 0.5px;
}
.lang-switch a::after { display: none !important; }
.lang-switch a:hover { color: var(--text-primary) !important; }
.lang-switch a.active {
  background: var(--accent);
  color: #fff !important;
  box-shadow: var(--shadow-sm);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.mobile-toggle span {
  width: 22px; height: 1.5px; background: var(--text-secondary);
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  overflow: hidden;
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.hero::before {
  content: ''; position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(232,116,0,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(16,6,159,0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 800px; }

.hero h1 { margin-bottom: 24px; }
.hero h1 span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero > .container p {
  font-size: 1.15rem; max-width: 600px;
  margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute; bottom: 32px; right: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.15), transparent);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 50%;
  background: var(--accent);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* --- Services Section --- */
.services-section {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 900px; margin: 0 auto;
}
.service-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(232,116,0,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(232,116,0,0.08);
  border: 1px solid rgba(232,116,0,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}
.service-icon svg { stroke: var(--accent); }
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.service-card p { font-size: 0.9rem; }

/* --- Technology Section --- */
.tech-section {
  background: var(--bg-primary);
  overflow: hidden;
}
.tech-content-full {
  text-align: center;
}
.tech-content-full h3 { font-size: 1.8rem; margin-bottom: 20px; }
.tech-content-full > p { margin-bottom: 32px; }

.tech-features-centered {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1000px; margin: 0 auto;
}
.tech-features { display: flex; flex-direction: column; gap: 24px; }
.tech-feature {
  display: flex; gap: 16px; padding: 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.tech-feature:hover {
  background: rgba(255,255,255,0.8);
  border-color: rgba(232,116,0,0.15);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.tech-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(232,116,0,0.08);
  border: 1px solid rgba(232,116,0,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.tech-feature-icon svg { stroke: var(--accent); }
.tech-feature h4 { margin-bottom: 4px; font-size: 1rem; text-align: left; }
.tech-feature p { font-size: 0.85rem; color: var(--text-muted); text-align: left; }

/* --- CTA Section --- */
.cta-section {
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,116,0,0.06), transparent 60%);
}
.cta-box {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  box-shadow: var(--shadow);
}
.cta-box h2 { margin-bottom: 20px; }
.cta-box p { margin-bottom: 40px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Contact Section --- */
.contact-section { background: var(--bg-primary); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.contact-info h3 { font-size: 1.6rem; margin-bottom: 12px; }
.contact-info > p { margin-bottom: 32px; }

.contact-item {
  display: flex; gap: 16px; margin-bottom: 28px;
}
.contact-item-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(232,116,0,0.08);
  border: 1px solid rgba(232,116,0,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.contact-item-icon svg { stroke: var(--accent); }
.contact-item h4 { margin-bottom: 4px; }
.contact-item p { font-size: 0.9rem; }
.contact-item a { color: var(--accent); font-weight: 500; }
.contact-item a:hover { color: var(--accent-light); }

.contact-form {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 24px; font-size: 1.3rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 500; font-size: 0.85rem;
  color: var(--text-secondary); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem; font-family: inherit;
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
  background: #fff;
}
.form-group select { cursor: pointer; }
.form-group select option { background: #fff; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo img { height: 30px; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; color: var(--text-muted); }

.footer-col h4 {
  font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-secondary); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem; color: var(--text-muted);
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: var(--text-muted);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--accent); }

/* --- Page Hero (Support/Privacy) --- */
.page-hero {
  padding: 180px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(232,116,0,0.06), transparent 50%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* --- Support Specific --- */
.support-section { padding: 80px 0; background: var(--bg-primary); }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.company-info {
  margin-top: 32px; padding: 24px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.company-info h4 { margin-bottom: 8px; color: var(--accent); }
.company-info p { font-size: 0.9rem; }

.faq-section { padding: 80px 0; background: var(--bg-secondary); }
.faq-item {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 24px; margin-bottom: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.faq-item:hover {
  background: rgba(255,255,255,0.85);
  border-color: rgba(232,116,0,0.15);
  box-shadow: var(--shadow);
}
.faq-item h4 { margin-bottom: 8px; font-size: 1rem; }
.faq-item p { font-size: 0.9rem; }

/* --- Privacy Specific --- */
.privacy-section { padding: 80px 0; background: var(--bg-primary); }
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-content h2 {
  font-size: 1.35rem; margin-top: 48px; margin-bottom: 16px;
}
.privacy-content h2:first-child { margin-top: 0; }
.privacy-content p { margin-bottom: 16px; font-size: 0.95rem; }
.privacy-content ul { margin-bottom: 16px; padding-left: 20px; }
.privacy-content ul li {
  list-style: disc; margin-bottom: 8px;
  color: var(--text-secondary); font-size: 0.9rem;
}
.privacy-content .last-updated {
  font-style: italic; color: var(--text-muted); margin-bottom: 32px;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 20px 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-text {
  flex: 1; min-width: 280px;
}
.cookie-text p {
  font-size: 0.85rem; color: var(--text-secondary); margin: 0;
  line-height: 1.6;
}
.cookie-text a {
  color: var(--accent); font-weight: 500;
  text-decoration: underline;
}
.cookie-buttons {
  display: flex; gap: 12px; flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 24px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: none;
  font-family: inherit; transition: var(--transition);
}
.cookie-btn-accept {
  background: var(--gradient-accent); color: #fff;
  box-shadow: var(--shadow-sm);
}
.cookie-btn-accept:hover {
  box-shadow: 0 4px 16px var(--accent-glow);
  transform: translateY(-1px);
}
.cookie-btn-reject {
  background: rgba(0,0,0,0.04);
  color: var(--text-secondary);
  border: 1px solid rgba(0,0,0,0.08);
}
.cookie-btn-reject:hover {
  background: rgba(0,0,0,0.08);
  color: var(--text-primary);
}

/* --- Hero Entrance Animations --- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes statCount {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero h1 {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero > .container > .hero-inner > p {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero-buttons {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

/* Card Glow Hover */
.service-card {
  position: relative;
}
.service-card::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 30%, rgba(232,116,0,0.12) 50%, transparent 70%);
  opacity: 0; transition: opacity 0.5s ease;
  z-index: -1;
}
.service-card:hover::before { opacity: 1; }

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1; transform: translateX(0);
}
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1; transform: translateX(0);
}
.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1; transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .contact-grid,
  .support-grid { grid-template-columns: 1fr; gap: 48px; }
  .tech-features-centered { grid-template-columns: 1fr; max-width: 600px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav-links {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 24px; z-index: 999;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .mobile-toggle { display: flex; z-index: 1001; }

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

  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: 2.2rem; }
  .scroll-indicator { bottom: 20px; right: 20px; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-box { padding: 48px 32px; }
  .phone-mockup { width: 200px; height: 400px; }
  
  .cookie-banner .container { flex-direction: column; text-align: center; }
  .cookie-buttons { width: 100%; justify-content: center; }
}
