:root {
  /* LIGHT THEME */
  --bg-base: #f8fafc;
  --bg-alt: rgba(255, 255, 255, 0.6);
  --surface: rgba(255, 255, 255, 0.9);
  --text-main: #0f172a;
  --text-muted: #475569;
  --border: rgba(15, 23, 42, 0.08);
  --nav-glass: rgba(255, 255, 255, 0.85);
  
  /* SAAS GRADIENTS */
  --grad-start: #00c6ff;
  --grad-end: #ff3cac;
  --grad-mid: #8b5cf6;
  --gradient-primary: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(0, 198, 255, 0.1) 0%, rgba(255, 60, 172, 0.1) 100%);
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --bg-base: #0a0f1c;
  --bg-alt: rgba(15, 23, 42, 0.6);
  --surface: rgba(15, 23, 42, 0.9);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --nav-glass: rgba(10, 15, 28, 0.85);
}

/* CUSTOM SCROLLBAR & SELECTION */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: rgba(139, 92, 246, 0.3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--grad-start); }
::selection { background: rgba(0, 198, 255, 0.3); color: var(--text-main); }

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

html, body { 
  font-family: 'Inter', sans-serif; 
  background: var(--bg-base); 
  color: var(--text-main); 
  transition: background 0.5s ease, color 0.5s ease; 
  line-height: 1.6; 
  overflow-x: hidden; 
  width: 100%;
  scroll-behavior: smooth;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 10; }
.section-padding { padding: 8rem 0; position: relative; }

/* GLOBAL AMBIENT BLOBS */
.global-bg {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  z-index: 0; overflow: hidden; pointer-events: none;
}
.ambient-blob {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.15;
  animation: float-ambient 15s infinite alternate ease-in-out;
}
[data-theme="dark"] .ambient-blob { opacity: 0.08; }
.blob-top { width: 600px; height: 600px; background: var(--grad-start); top: -200px; left: -100px; }
.blob-bottom { width: 500px; height: 500px; background: var(--grad-end); bottom: -200px; right: -100px; animation-delay: -5s; animation-direction: alternate-reverse; }

@keyframes float-ambient {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 50px) scale(1.1); }
}

/* --- TEXT GRADIENT ANIMATION --- */
.text-gradient-animate {
  background: linear-gradient(to right, var(--grad-start), var(--grad-end), var(--grad-mid), var(--grad-start));
  background-size: 300% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradient-shine 6s linear infinite;
}
@keyframes gradient-shine { to { background-position: 300% center; } }

/* --- NAVBAR & LOGO --- */
.navbar { position: fixed; top: 1.5rem; left: 0; right: 0; margin: 0 auto; width: calc(100% - 4rem); max-width: 1200px; z-index: 1000; background: var(--nav-glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: 50px; transition: all var(--transition); }
.navbar.scrolled { top: 1rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 2rem; transition: padding var(--transition); }

.logo-brand { display: flex; align-items: center; gap: 10px; text-decoration: none !important; transition: opacity 0.3s ease; }
.logo-brand:hover { opacity: 0.8; }
.brand-logo-img { height: 36px; width: auto; display: block; object-fit: contain; }
.brand-text { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; white-space: nowrap; }

.nav-links { display: flex; list-style: none; gap: 2.5rem; align-items: center; position: relative; }
.nav-links li { position: relative; }
.nav-links a { font-weight: 600; color: var(--text-muted); font-size: 0.95rem; text-decoration: none !important; transition: 0.2s; position: relative; z-index: 2; padding: 0.5rem 0; }
.nav-links a:hover { color: var(--text-main); }

/* Dynamic Indicator */
.nav-indicator { position: absolute; bottom: -2px; left: 0; height: 3px; background: var(--gradient-primary); border-radius: 3px; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); z-index: 1; opacity: 0; }
.nav-indicator.active { opacity: 1; }

/* --- SLEEK THEME TOGGLE --- */
.nav-right { display: flex; align-items: center; gap: 1.2rem; flex-shrink: 0; }

#theme-toggle { 
  width: 60px; height: 32px; border-radius: 32px; 
  background: var(--surface); 
  border: 1px solid var(--border); 
  position: relative; cursor: pointer; 
  display: flex; align-items: center; justify-content: space-between; 
  padding: 0 6px; transition: var(--transition); 
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}
#theme-toggle .toggle-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 26px; height: 26px;
  background: var(--gradient-primary);
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.25, 1.5, 0.5, 1);
  z-index: 1;
}
[data-theme="dark"] #theme-toggle .toggle-thumb { transform: translateX(28px); }
#theme-toggle svg { width: 14px; height: 14px; z-index: 2; position: relative; color: var(--text-muted); transition: color 0.4s; }
[data-theme="light"] #theme-toggle .sun { color: white; }
[data-theme="dark"] #theme-toggle .moon { color: white; }

.lang-switch { display: flex; align-items: center; gap: 8px; margin-right: 5px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; }
.lang-link { text-decoration: none !important; color: var(--text-muted); transition: 0.3s; }
.lang-link:hover { color: var(--grad-start); }
.active-lang { color: var(--text-main); position: relative; }
.active-lang::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px; background: var(--gradient-primary); border-radius: 2px; }
.lang-divider { color: var(--border); font-weight: 300; }

/* --- BUTTONS --- */
.btn { padding: 0.9rem 2.5rem; border-radius: 50px; font-weight: 700; cursor: pointer; transition: var(--transition); border: none; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; position: relative; overflow: hidden; }
.btn-primary { background: var(--gradient-primary); color: #fff; box-shadow: 0 10px 20px rgba(255,60,172,0.2); z-index: 1; }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent); transform: skewX(-20deg); z-index: -1; animation: sweep 5s infinite; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255,60,172,0.4); color: white;}
@keyframes sweep { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }

.btn-secondary { background: var(--surface); backdrop-filter: blur(10px); border: 1px solid var(--border); color: var(--text-main); margin-left: 1rem; }
.btn-secondary:hover { border-color: var(--grad-end); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }

/* --- SPINNER ANIMATION FOR BUTTONS --- */
.spinner { display: inline-block; animation: spin 1s linear infinite; margin-left: 8px; }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* --- HERO --- */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; opacity: 0.6; }

.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-base); opacity: 0.85; z-index: 1; transition: var(--transition); backdrop-filter: blur(8px); }
[data-theme="dark"] .hero::before { background: var(--bg-base); opacity: 0.85; }

.hero-container { position: relative; z-index: 2; width: 100%; }
.hero-content { text-align: center; max-width: 900px; margin: 0 auto; }
.hero h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 800; margin-bottom: 1.5rem; letter-spacing: -2px; line-height: 1.1; }
.hero p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 750px; margin-inline: auto; font-weight: 400; }

/* --- SOLUTIONS CARDS (STATIC PREMIUM DESIGN) --- */
.bg-pattern { position: absolute; inset: 0; z-index: 0; background-image: radial-gradient(var(--border) 1px, transparent 1px); background-size: 30px 30px; opacity: 0.5; }
.section-header { text-align: center; margin-bottom: 4rem; max-width: 700px; margin-inline: auto; position: relative; z-index: 2; }
.section-header h2 { font-size: 3rem; margin-bottom: 1rem; font-weight: 800; letter-spacing: -1px; }
.section-header p { color: var(--text-muted); font-size: 1.2rem; }

.solutions-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 2.5rem; 
  position: relative; 
  z-index: 2; 
}

.solution-card { 
  background: var(--bg-alt); 
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px); 
  padding: 3rem 2.5rem; 
  border-radius: var(--radius-lg); 
  border: 1px solid var(--border); 
  display: flex; 
  flex-direction: column; 
  align-items: flex-start; 
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.solution-card::before { 
  content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit; padding: 2px; 
  background: var(--gradient-primary); 
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); 
  -webkit-mask-composite: xor; mask-composite: exclude; 
  opacity: 0; transition: var(--transition); 
}
.solution-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,0,0,0.05); }
.solution-card:hover::before { opacity: 1; }
[data-theme="dark"] .solution-card:hover { box-shadow: 0 25px 50px rgba(0, 198, 255, 0.05); }

.card-icon { width: 56px; height: 56px; background: var(--gradient-soft); color: var(--grad-end); border-radius: 14px; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; position: relative; }
.card-icon::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background: inherit; filter: blur(10px); z-index: -1; }
.card-icon svg { width: 28px; height: 28px; stroke-width: 2; }
.solution-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-main); }
.solution-card p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; line-height: 1.6; }

.card-features { list-style: none; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 0.8rem; width: 100%; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.card-features li { display: flex; align-items: center; gap: 10px; color: var(--text-main); font-size: 0.95rem; font-weight: 500; }
.card-features li svg { color: var(--grad-start); width: 18px; height: 18px; flex-shrink: 0; stroke-width: 2.5; }

.btn-text { color: var(--grad-end); font-weight: 700; margin-top: auto; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: 0.3s; cursor: pointer; font-size: 1.05rem; }
.btn-text:hover { color: var(--grad-start); gap: 10px; }


/* --- TRUST SECTION "WOW" UPGRADE --- */
.trust-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 2rem; 
  position: relative; z-index: 2; 
}
.trust-item { background: var(--bg-alt); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; transition: var(--transition); position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.trust-item::before { content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit; padding: 2px; background: var(--gradient-primary); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: var(--transition); }
.trust-item:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.trust-item:hover::before { opacity: 1; }

.trust-icon { width: 56px; height: 56px; background: var(--gradient-soft); border-radius: 16px; color: var(--grad-end); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.trust-item:hover .trust-icon { background: var(--gradient-primary); color: white; transform: scale(1.1) rotate(5deg); }
.trust-icon svg { width: 28px; height: 28px; }

.trust-item h4 { font-size: 1.25rem; font-weight: 800; color: var(--text-main); line-height: 1.3; }
.trust-item p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

/* Certification Badge */
.cert-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(16, 185, 129, 0.1); color: #10b981; padding: 8px 14px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-top: auto; border: 1px solid rgba(16, 185, 129, 0.2); }
.cert-badge svg { width: 16px; height: 16px; stroke-width: 2.5; }

/* --- ABOUT SECTION (WOW UPDATE) --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.divider { width: 80px; height: 6px; background: var(--gradient-primary); border-radius: 3px; margin: 1.5rem 0 2.5rem; }
.about-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* Modern Floating Tech Stack */
.about-visual { 
  height: 450px; display: flex; justify-content: center; align-items: center; position: relative; 
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, rgba(0,198,255,0.03) 0%, rgba(255,60,172,0.03) 100%);
  border: 1px solid var(--border);
}

/* Blueprint grid background */
.about-visual::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 20px 20px; opacity: 0.4;
}

.glow-orb { position: absolute; border-radius: 50%; filter: blur(50px); z-index: 1; }
.glow-orb.blue { width: 250px; height: 250px; background: rgba(0, 198, 255, 0.3); top: -20px; left: -20px; animation: floatOrb 6s infinite alternate ease-in-out; }
.glow-orb.purple { width: 280px; height: 280px; background: rgba(255, 60, 172, 0.2); bottom: -40px; right: -20px; animation: floatOrb 8s infinite alternate-reverse ease-in-out; }
@keyframes floatOrb { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(30px, 30px) scale(1.1); } }

/* Glass Dashboard Main Frame */
.glass-dashboard {
  position: relative; z-index: 2; width: 75%; height: 60%;
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08); display: flex; flex-direction: column; overflow: hidden;
  animation: floatMain 6s infinite alternate ease-in-out;
}
[data-theme="dark"] .glass-dashboard { box-shadow: 0 25px 50px rgba(0,0,0,0.4); }
@keyframes floatMain { from { transform: translateY(10px); } to { transform: translateY(-10px); } }

.dash-header { height: 32px; background: var(--surface); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 15px; gap: 6px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--text-muted); opacity: 0.3; }
.dash-body { display: flex; flex: 1; padding: 15px; gap: 15px; background: var(--bg-base); }
.dash-sidebar { width: 30%; background: var(--surface); border-radius: 8px; border: 1px solid var(--border); }
.dash-content { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.dash-card { background: var(--surface); border-radius: 8px; border: 1px solid var(--border); }
.dash-card.top { height: 45%; background: linear-gradient(135deg, rgba(0,198,255,0.1), transparent); }
.dash-card-row { display: flex; gap: 10px; flex: 1; }
.dash-card.bottom { flex: 1; }

/* Floating Interactive Badges */
.floating-badge {
  position: absolute; z-index: 3; background: var(--nav-glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border); padding: 10px 18px; border-radius: 50px;
  display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.85rem; color: var(--text-main);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.floating-badge svg { width: 18px; height: 18px; stroke-width: 2.5; }
.badge-1 { top: 12%; right: 2%; animation: floatY 4s infinite alternate-reverse ease-in-out; color: #10b981; }
.badge-2 { bottom: 15%; left: 2%; animation: floatY 5.5s infinite alternate ease-in-out; color: var(--grad-start); }
@keyframes floatY { from { transform: translateY(12px); } to { transform: translateY(-12px); } }

/* --- PRICING SLIDER --- */
.pricing-card { background: var(--bg-alt); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: var(--radius-lg); padding: 4rem; border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0,0,0,0.05); text-align: center; max-width: 800px; margin: 0 auto; position: relative; z-index: 2; overflow: hidden; }
.pricing-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--gradient-primary); }
.price-display { font-size: 4.5rem; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: flex; align-items: center; justify-content: center; gap: 5px; line-height: 1; margin-bottom: 1rem; }
.price-display .currency { font-size: 2.5rem; color: var(--text-main); -webkit-text-fill-color: var(--text-main); }
.price-desc { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 3rem; min-height: 55px; }

.slider-container { margin-bottom: 3rem; position: relative; padding: 0 10px; }
.price-slider { -webkit-appearance: none; width: 100%; height: 10px; border-radius: 5px; background: var(--border); outline: none; transition: 0.2s; position: relative; z-index: 2; }
.price-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 4px solid var(--grad-start); cursor: pointer; box-shadow: 0 4px 15px rgba(0, 198, 255, 0.4); transition: transform 0.1s; }
.price-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.slider-labels { display: flex; justify-content: space-between; margin-top: 1.5rem; color: var(--text-muted); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.pricing-features { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border); margin-bottom: 1.5rem; }
.pricing-features li { display: flex; align-items: center; gap: 8px; color: var(--text-main); font-weight: 600; font-size: 1.05rem; }
.pricing-features li svg { color: var(--grad-end); width: 22px; height: 22px; stroke-width: 2.5; }

.pricing-addon { display: inline-flex; background: var(--gradient-soft); padding: 0.6rem 1.2rem; border-radius: 50px; border: 1px solid rgba(0, 198, 255, 0.2); font-size: 0.95rem; font-weight: 600; color: var(--grad-start); }

/* --- CONTACT SECTION --- */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; background: var(--bg-alt); backdrop-filter: blur(12px); border-radius: var(--radius-lg); padding: 5rem; border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0,0,0,0.05); position: relative; z-index: 2; overflow: hidden; }
.contact-wrapper::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--gradient-primary); }

.contact-info { padding-right: 2rem; }
.contact-info h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 3rem; font-size: 1.1rem; }
.detail-item { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.5rem; color: var(--text-main); font-weight: 600; font-size: 1.1rem; transition: 0.3s; }
.detail-item:hover { transform: translateX(10px); }
.detail-item svg { color: var(--grad-end); width: 28px; height: 28px; }
.detail-item a { color: inherit; text-decoration: none; }

.form-group { margin-bottom: 1.8rem; }
.form-group label { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.6rem; }
.form-group input, .form-group textarea { width: 100%; padding: 1.2rem; border-radius: 12px; border: 2px solid var(--border); background: var(--bg-base); color: var(--text-main); font-family: 'Inter', sans-serif; font-size: 1rem; outline: none; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--grad-start); box-shadow: 0 0 0 4px rgba(0, 198, 255, 0.15); background: var(--bg-alt); }
.btn-block { width: 100%; font-size: 1.1rem; padding: 1rem; }

/* --- CINEMATIC REVEAL ANIMATION --- */
.reveal { opacity: 0; transform: translateY(40px) scale(0.95); filter: blur(10px); transition: 1s cubic-bezier(0.16, 1, 0.3, 1); will-change: transform, opacity, filter; }
.reveal.active { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* --- FOOTER --- */
.footer { padding: 5rem 0 2rem; border-top: 1px solid var(--border); background: var(--bg-base); position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-links h4, .footer-contact h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text-main); }
.footer-links ul, .footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-links a, .footer-contact a { text-decoration: none; color: var(--text-muted); transition: 0.3s; font-weight: 500; }
.footer-links a:hover, .footer-contact a:hover { color: var(--grad-start); padding-left: 5px; }
.footer-bottom { text-align: center; border-top: 1px solid var(--border); padding-top: 2rem; color: var(--text-muted); font-size: 0.9rem; }

/* --- RESPONSIVE DESIGN --- */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 5px; z-index: 1001; }
.hamburger span { width: 28px; height: 2px; background: var(--text-main); transition: 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1024px) { 
  .trust-grid { grid-template-columns: repeat(2, 1fr); } 
  .about-grid, .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; } 
  .contact-info { padding-right: 0; } 
  .contact-wrapper { padding: 3rem; } 
}
@media (max-width: 768px) { 
  .navbar { width: calc(100% - 2rem); top: 1rem; border-radius: 30px; }
  .hamburger { display: flex; } 
  .nav-links { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--nav-glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; transform: translateY(-100%); transition: var(--transition); opacity: 0; z-index: -1; } 
  .nav-links.active { transform: translateY(0); opacity: 1; }
  .nav-links a { font-size: 1.5rem; }
  .nav-indicator { display: none; }
  .hero-buttons { display: flex; flex-direction: column; gap: 1rem; width: 100%; max-width: 300px; margin: 0 auto; } 
  .btn-secondary { margin-left: 0; } 
  .trust-grid { grid-template-columns: 1fr; } 
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; } 
  .footer-links a:hover, .footer-contact a:hover { padding-left: 0; color: var(--grad-start); }
  .section-padding { padding: 5rem 0; }
  .hero h1 { font-size: 2.5rem; }
  .solution-card { padding: 2rem 1.5rem; }
  .pricing-card { padding: 3rem 1.5rem; }
  .price-display { font-size: 3.5rem; }
  .pricing-addon { font-size: 0.85rem; padding: 0.5rem 1rem; }
  .about-visual { height: 350px; } 
}
@media (max-width: 480px) {
  .brand-text { font-size: 1.2rem; }
  .brand-logo-img { height: 30px; }
  .lang-switch { margin-right: 2px; gap: 4px; }
  .contact-wrapper { padding: 2rem 1.5rem; }
}


