/* ============================================================
   CodeScriptum – Web Administration Landing Page
   Color Palette: Emerald/Teal → Warm Gold (soothing, trustworthy)
   ============================================================ */

:root {
  --emerald: #10B981;
  --emerald-light: #34D399;
  --emerald-dark: #059669;
  --teal: #14B8A6;
  --teal-dark: #0D9488;
  --gold: #F59E0B;
  --gold-light: #FBBF24;
  --gold-warm: #D97706;
  --sage: #6EE7B7;
  --danger: #EF4444;
  --danger-light: #FCA5A5;

  --primary: #10B981;
  --primary-light: #34D399;
  --secondary: #14B8A6;
  --accent: #F59E0B;

  --dark-900: #021A0F;
  --dark-800: #0A1F17;
  --dark-700: #132E22;
  --dark-600: #1E3A2E;
  --light-100: #F0FDF4;
  --light-200: #ECFDF5;
  --light-300: #D1FAE5;

  --white: #FFFFFF;
  --text: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  --grad-hero: linear-gradient(135deg, #021A0F 0%, #0A1F17 40%, #091A12 100%);
  --grad-primary: linear-gradient(135deg, var(--emerald) 0%, var(--teal) 50%, var(--gold) 100%);
  --grad-glow: linear-gradient(135deg, var(--emerald) 0%, var(--gold) 100%);
  --grad-card: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(20,184,166,0.05) 100%);
  --grad-dark-sec: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-900) 100%);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', var(--font);
  --max-w: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: color var(--ease); }
img { max-width: 100%; display: block; }

.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.gradient-text { background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-danger { color: var(--danger); -webkit-text-fill-color: var(--danger); }

.pulse-dot { display: inline-block; width: 8px; height: 8px; background: var(--emerald); border-radius: 50%; margin-right: 8px; animation: pulse 2s ease-in-out infinite; box-shadow: 0 0 8px var(--emerald); }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; border-radius: var(--radius-sm); font-family: var(--font); font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; transition: all var(--ease); text-align: center; }
.btn--primary { background: var(--grad-primary); color: var(--white); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16,185,129,0.4); }
.btn--glow { box-shadow: 0 4px 20px rgba(16,185,129,0.3); }
.btn--ghost { background: transparent; border: 2px solid rgba(255,255,255,0.2); color: var(--white); }
.btn--ghost:hover { border-color: var(--emerald); color: var(--emerald); }
.btn--outline { background: transparent; border: 2px solid var(--emerald); color: var(--emerald); }
.btn--outline:hover { background: var(--emerald); color: var(--white); }
.btn--full { width: 100%; justify-content: center; }

/* HEADER */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(2,26,15,0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.06); transition: background var(--ease), box-shadow var(--ease); }
.header--scrolled { background: rgba(2,26,15,0.92); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo img { height: 34px; }
.nav__menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__link { padding: 8px 16px; border-radius: var(--radius-xs); color: var(--text-light); font-size: 0.9rem; font-weight: 500; transition: all var(--ease); }
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav__link--cta { background: var(--grad-primary); color: var(--white) !important; padding: 8px 20px; border-radius: var(--radius-sm); box-shadow: 0 2px 12px rgba(16,185,129,0.3); }
.nav__link--cta:hover { box-shadow: 0 4px 20px rgba(16,185,129,0.5); transform: translateY(-1px); }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle-bar { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }
.nav__toggle--active .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle--active .nav__toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle--active .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero { position: relative; min-height: 100vh; background: var(--grad-hero); display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden; }
.hero__mesh { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 600px 400px at 20% 50%, rgba(16,185,129,0.1) 0%, transparent 70%), radial-gradient(ellipse 500px 500px at 80% 30%, rgba(20,184,166,0.08) 0%, transparent 70%), radial-gradient(ellipse 400px 300px at 60% 80%, rgba(245,158,11,0.06) 0%, transparent 70%); }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; animation: float 8s ease-in-out infinite; }
.hero__orb--1 { width: 400px; height: 400px; top: 10%; left: -5%; background: rgba(16,185,129,0.12); }
.hero__orb--2 { width: 350px; height: 350px; bottom: 10%; right: -5%; background: rgba(20,184,166,0.1); animation-delay: -3s; }
.hero__orb--3 { width: 250px; height: 250px; top: 50%; left: 40%; background: rgba(245,158,11,0.08); animation-delay: -5s; }
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero__badge-top { display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 50px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); color: var(--emerald); font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; }
.hero__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.15; color: var(--white); margin-bottom: 20px; }
.hero__title-small { font-size: 0.5em; font-weight: 500; color: var(--text-light); display: block; margin-top: 8px; }
.hero__subtitle { font-size: 1.1rem; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; max-width: 540px; }
.hero__stats { display: flex; gap: 32px; margin-bottom: 36px; }
.hero__stat-number { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__stat-label { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__trust { display: flex; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-light); }
.hero__trust-item i { color: var(--emerald); font-size: 0.9rem; }
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__canvas { width: 100%; max-width: 620px; height: 580px; border-radius: var(--radius); }

/* SECTIONS */
.section { padding: 100px 0; position: relative; }
.section--dark { background: var(--grad-dark-sec); color: var(--white); }
.section--dark-red { background: linear-gradient(180deg, var(--dark-800) 0%, #1A0A0A 50%, var(--dark-900) 100%); color: var(--white); }
.section--light { background: var(--light-100); }
.section--gradient { background: linear-gradient(135deg, var(--dark-900) 0%, #0A2618 40%, var(--dark-800) 100%); color: var(--white); }
.section--contact { background: linear-gradient(135deg, var(--dark-900) 0%, #0A2618 50%, var(--dark-800) 100%); color: var(--white); }
.section__title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; text-align: center; margin-bottom: 12px; }
.section__title--light { color: var(--white); }
.section__subtitle { text-align: center; color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto 60px; }
.section__subtitle--light { color: var(--text-light); }

/* PAIN POINTS */
.pain__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px; }
.pain-card { background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.15); border-radius: var(--radius); padding: 32px; transition: all var(--ease); }
.pain-card:hover { transform: translateY(-4px); border-color: rgba(239,68,68,0.3); }
.pain-card__icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: rgba(239,68,68,0.1); border-radius: var(--radius-sm); color: var(--danger); font-size: 1.3rem; margin-bottom: 16px; }
.pain-card__risk { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--danger-light); margin-bottom: 8px; }
.pain-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.pain-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

.pain__cta { margin-top: 20px; }
.pain__cta-inner { display: flex; align-items: center; gap: 24px; background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.2); border-radius: var(--radius); padding: 28px 36px; }
.pain__cta-icon { width: 56px; height: 56px; min-width: 56px; display: flex; align-items: center; justify-content: center; background: rgba(16,185,129,0.15); border-radius: 50%; color: var(--emerald); font-size: 1.5rem; }
.pain__cta-inner h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); margin-bottom: 4px; }
.pain__cta-inner p { color: var(--text-light); font-size: 0.9rem; }
.pain__cta-inner .btn { flex-shrink: 0; }

/* SERVICES */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--light-300); border-radius: var(--radius); padding: 32px; transition: all var(--ease); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-primary); opacity: 0; transition: opacity var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.2); }
.service-card:hover::before { opacity: 1; }
.service-card__icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(20,184,166,0.1) 100%); border-radius: var(--radius-sm); font-size: 1.3rem; color: var(--emerald); margin-bottom: 18px; transition: all var(--ease); }
.service-card:hover .service-card__icon { background: var(--grad-primary); color: var(--white); box-shadow: 0 4px 15px rgba(16,185,129,0.3); }
.service-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 14px; }
.service-card__freq { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--emerald); background: rgba(16,185,129,0.08); padding: 4px 12px; border-radius: 50px; }

/* MONITORING */
.monitoring__particles { position: absolute; inset: 0; z-index: 0; }
.monitoring__content { position: relative; z-index: 1; }
.monitoring__chart-wrapper { margin: 0 auto 3rem; max-width: 900px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); overflow: hidden; }
.monitoring__chart-canvas { width: 100%; height: 280px; display: block; }
.monitoring__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.monitor-card { text-align: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 32px 20px; transition: all var(--ease); }
.monitor-card:hover { transform: translateY(-6px); border-color: rgba(16,185,129,0.3); }
.monitor-card__icon { width: 52px; height: 52px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; background: rgba(16,185,129,0.1); border-radius: 50%; font-size: 1.2rem; color: var(--emerald); }
.monitor-card__number { font-family: var(--font-display); font-size: 2rem; font-weight: 800; background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.monitor-card__label { font-weight: 600; font-size: 0.9rem; color: var(--white); margin: 4px 0 8px; }
.monitor-card p { color: var(--text-light); font-size: 0.82rem; line-height: 1.5; }

/* COMPARISON */
.compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.compare-col { border-radius: var(--radius); padding: 36px; }
.compare-col--bad { background: rgba(239,68,68,0.03); border: 1px solid rgba(239,68,68,0.15); }
.compare-col--good { background: rgba(16,185,129,0.03); border: 2px solid rgba(16,185,129,0.3); box-shadow: 0 8px 30px rgba(16,185,129,0.08); }
.compare-col__header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.compare-col__header i { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1rem; }
.compare-col--bad .compare-col__header i { background: rgba(239,68,68,0.1); color: var(--danger); }
.compare-col--good .compare-col__header i { background: rgba(16,185,129,0.15); color: var(--emerald); }
.compare-col__header h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.compare-col ul { list-style: none; }
.compare-col ul li { padding: 8px 0; font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; border-bottom: 1px solid rgba(0,0,0,0.04); }
.compare-col ul li:last-child { border-bottom: none; }
.compare-col--bad ul li i { color: var(--danger); font-size: 0.8rem; margin-top: 4px; }
.compare-col--good ul li i { color: var(--emerald); font-size: 0.8rem; margin-top: 4px; }

/* PROCESS */
.process__particles { position: absolute; inset: 0; z-index: 0; }
.process__content { position: relative; z-index: 1; }
.process__timeline { position: relative; max-width: 700px; margin: 0 auto; padding-left: 60px; }
.process__line { position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--emerald), var(--teal), var(--gold)); opacity: 0.3; }
.process-step { position: relative; margin-bottom: 48px; display: flex; align-items: flex-start; gap: 20px; }
.process-step:last-child { margin-bottom: 0; }
.process-step__marker { position: absolute; left: -60px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--dark-900); border: 2px solid var(--emerald); border-radius: 50%; z-index: 2; }
.process-step__marker span { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--emerald); }
.process-step__body { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 28px; flex: 1; transition: all var(--ease); }
.process-step:hover .process-step__body { border-color: rgba(16,185,129,0.3); transform: translateX(6px); }
.process-step__icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(16,185,129,0.1); border-radius: var(--radius-xs); color: var(--emerald); font-size: 1.1rem; margin-bottom: 12px; }
.process-step__body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.process-step__body p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }
.process-step__cta { text-align: center; margin-top: 48px; position: relative; z-index: 1; }

/* PRICING */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.pricing-card { background: var(--white); border: 1px solid var(--light-300); border-radius: var(--radius); padding: 0; overflow: hidden; transition: all var(--ease); }
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(16,185,129,0.1); }
.pricing-card--popular { border-color: var(--emerald); box-shadow: 0 8px 30px rgba(16,185,129,0.15); position: relative; transform: scale(1.04); }
.pricing-card--popular:hover { transform: scale(1.04) translateY(-6px); }
.pricing-card__badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--grad-primary); color: var(--white); padding: 6px 20px; border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-size: 0.8rem; font-weight: 700; }
.pricing-card__header { text-align: center; padding: 40px 28px 24px; border-bottom: 1px solid var(--light-300); }
.pricing-card__header h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.pricing-card__price { font-size: 0.95rem; color: var(--text-muted); }
.pricing-card__price strong { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--emerald); }
.pricing-card__header p { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.pricing-card__features { list-style: none; padding: 28px; }
.pricing-card__features li { padding: 6px 0; font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.pricing-card__features i { color: var(--emerald); font-size: 0.85rem; }
.pricing-card .btn { margin: 0 28px 28px; width: calc(100% - 56px); justify-content: center; }

.pricing__savings { margin-top: 40px; }
.pricing__savings-inner { display: flex; align-items: center; gap: 24px; background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.2); border-radius: var(--radius); padding: 28px 36px; }
.pricing__savings-icon { width: 52px; height: 52px; min-width: 52px; display: flex; align-items: center; justify-content: center; background: rgba(245,158,11,0.12); border-radius: 50%; color: var(--gold); font-size: 1.3rem; }
.pricing__savings-inner h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--text); margin-bottom: 4px; }
.pricing__savings-inner p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* TESTIMONIALS */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 32px; transition: all var(--ease); }
.testimonial-card:hover { transform: translateY(-6px); border-color: rgba(16,185,129,0.2); }
.testimonial-card__stars { margin-bottom: 16px; }
.testimonial-card__stars i { color: var(--gold); font-size: 0.9rem; margin-right: 2px; }
.testimonial-card blockquote { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(16,185,129,0.15); border-radius: 50%; color: var(--emerald); font-size: 1rem; }
.testimonial-card__author strong { color: var(--white); font-size: 0.9rem; display: block; }
.testimonial-card__author span { color: var(--text-light); font-size: 0.8rem; }

/* FAQ */
.faq__list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-300); overflow: hidden; }
.faq-item__question { width: 100%; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; background: none; border: none; cursor: pointer; font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--text); text-align: left; transition: color var(--ease); }
.faq-item__question:hover { color: var(--emerald); }
.faq-item__icon { color: var(--emerald); transition: transform 0.3s; font-size: 0.9rem; }
.faq-item--active .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item--active .faq-item__answer { max-height: 300px; padding-bottom: 20px; }
.faq-item__answer p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* CONTACT */
.contact__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.contact-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 36px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form__group { display: flex; flex-direction: column; gap: 6px; }
.contact-form__group label { font-size: 0.85rem; font-weight: 600; color: var(--text-light); }
.contact-form__group label small { color: var(--text-light); font-weight: 400; }
.contact-form__group input, .contact-form__group select, .contact-form__group textarea { padding: 12px 16px; border-radius: var(--radius-xs); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: var(--white); font-family: var(--font); font-size: 0.9rem; transition: border-color var(--ease), box-shadow var(--ease); }
.contact-form__group input:focus, .contact-form__group select:focus, .contact-form__group textarea:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(16,185,129,0.15); }
.contact-form__group input::placeholder, .contact-form__group textarea::placeholder { color: var(--text-light); opacity: 0.5; }
.contact-form__group select option { background: var(--dark-800); color: var(--white); }
.contact-form__group textarea { resize: vertical; min-height: 100px; }
.contact-form__error { font-size: 0.8rem; color: var(--danger); min-height: 1.2em; }
.contact-form__group--error input, .contact-form__group--error select, .contact-form__group--error textarea { border-color: var(--danger); }

.contact-form__rodo { margin: 16px 0 20px; }
.contact-form__checkbox { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 0.8rem; }
.contact-form__checkbox input { display: none; }
.contact-form__checkmark { width: 20px; height: 20px; min-width: 20px; border: 2px solid rgba(255,255,255,0.2); border-radius: 4px; margin-top: 2px; position: relative; transition: all var(--ease); }
.contact-form__checkbox input:checked + .contact-form__checkmark { background: var(--emerald); border-color: var(--emerald); }
.contact-form__checkbox input:checked + .contact-form__checkmark::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 0.65rem; color: var(--white); }
.contact-form__checkbox-text { color: var(--text-light); line-height: 1.5; }
.contact-form__checkbox-text a { color: var(--emerald); text-decoration: underline; }

.form-toast { position: fixed; top: 24px; right: 24px; background: var(--dark-800); border: 1px solid rgba(16,185,129,0.3); border-radius: var(--radius-sm); padding: 18px 24px; display: flex; align-items: center; gap: 14px; box-shadow: 0 8px 30px rgba(0,0,0,0.4); z-index: 10000; transform: translateX(120%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.form-toast--show { transform: translateX(0); }
.form-toast__icon { font-size: 1.5rem; color: var(--emerald); }
.form-toast__content strong { color: var(--white); display: block; }
.form-toast__content p { color: var(--text-light); font-size: 0.85rem; }
.form-toast__close { background: none; border: none; color: var(--text-light); cursor: pointer; font-size: 1rem; padding: 4px; }

.contact-info h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.contact-info > p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 28px; line-height: 1.6; }
.contact-info__list { list-style: none; margin-bottom: 24px; }
.contact-info__list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: var(--text-light); font-size: 0.95rem; }
.contact-info__list i { color: var(--emerald); font-size: 1rem; width: 20px; text-align: center; }
.contact-info__list a { color: var(--white); }
.contact-info__list a:hover { color: var(--emerald); }
.contact-info__social { display: flex; gap: 12px; margin-bottom: 28px; }
.contact-info__social a { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xs); color: var(--text-light); font-size: 1.1rem; transition: all var(--ease); }
.contact-info__social a:hover { color: var(--white); border-color: var(--emerald); background: rgba(16,185,129,0.2); }
.contact-info__badges { display: flex; gap: 12px; }
.badge-card { display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xs); }
.badge-card i { color: var(--emerald); font-size: 1.1rem; }
.badge-card span { color: var(--text-light); font-size: 0.8rem; font-weight: 600; }

/* FOOTER */
.footer { background: var(--dark-900); border-top: 1px solid rgba(255,255,255,0.06); padding: 0; }
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand .nav__logo { outline: none; text-decoration: none; }
.footer__brand .nav__logo img { height: 32px; }
.footer__seo { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); color: var(--text-light);
  font-size: 0.9rem; transition: all 0.3s ease;
}
.footer__social a:hover { background: var(--emerald); color: var(--white); transform: translateY(-2px); }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.footer__col a { font-size: 0.82rem; color: var(--text-light); transition: color 0.3s; text-decoration: none; }
.footer__col a:hover { color: var(--emerald); }
.footer__col a i { margin-right: 6px; font-size: 0.75rem; }
.footer__col p { font-size: 0.82rem; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.footer__col p i { color: var(--emerald); font-size: 0.8rem; flex-shrink: 0; }
.footer__col p a { color: var(--text-light); }
.footer__col p a:hover { color: var(--emerald); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 0.78rem; color: rgba(148,163,184,0.6);
}
.footer__bottom p { margin: 0; }
.footer__bottom-links { display: flex; gap: 16px; }
.footer__bottom-links a { color: rgba(148,163,184,0.6); transition: color 0.3s; text-decoration: none; }
.footer__bottom-links a:hover { color: var(--emerald); }

/* COOKIE */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--dark-800); border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.cookie-banner--show { transform: translateY(0); }
.cookie-banner__inner { width: 90%; max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-banner__text { display: flex; align-items: flex-start; gap: 14px; flex: 1; }
.cookie-banner__icon { font-size: 1.5rem; color: var(--emerald); margin-top: 2px; }
.cookie-banner__text strong { color: var(--white); font-size: 0.95rem; display: block; margin-bottom: 4px; }
.cookie-banner__text p { color: var(--text-light); font-size: 0.8rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn { padding: 10px 20px; border-radius: var(--radius-xs); font-family: var(--font); font-size: 0.85rem; font-weight: 600; cursor: pointer; border: none; transition: all var(--ease); }
.cookie-banner__btn--accept { background: var(--grad-primary); color: var(--white); }
.cookie-banner__btn--accept:hover { box-shadow: 0 4px 15px rgba(16,185,129,0.4); }
.cookie-banner__btn--reject { background: rgba(255,255,255,0.06); color: var(--text-light); border: 1px solid rgba(255,255,255,0.1); }
.cookie-banner__btn--reject:hover { background: rgba(255,255,255,0.1); }
.cookie-banner__btn--settings { background: none; color: var(--text-light); border: 1px solid rgba(255,255,255,0.1); }
.cookie-banner__btn--settings:hover { border-color: var(--emerald); color: var(--emerald); }

.cookie-modal { position: fixed; inset: 0; z-index: 10001; display: none; align-items: center; justify-content: center; }
.cookie-modal--show { display: flex; }
.cookie-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.cookie-modal__panel { position: relative; z-index: 1; background: var(--dark-800); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); width: 90%; max-width: 540px; max-height: 90vh; overflow-y: auto; }
.cookie-modal__header { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cookie-modal__header h3 { color: var(--white); font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.cookie-modal__header h3 i { color: var(--emerald); }
.cookie-modal__close { background: none; border: none; color: var(--text-light); cursor: pointer; font-size: 1.2rem; }
.cookie-modal__body { padding: 24px 28px; }
.cookie-modal__intro { color: var(--text-light); font-size: 0.85rem; margin-bottom: 20px; line-height: 1.6; }
.cookie-modal__intro a { color: var(--emerald); text-decoration: underline; }
.cookie-modal__category { padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.cookie-modal__cat-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.cookie-modal__cat-header strong { color: var(--white); font-size: 0.9rem; }
.cookie-modal__cat-header span { color: var(--text-light); font-size: 0.75rem; margin-left: 8px; }
.cookie-modal__category > p { color: var(--text-light); font-size: 0.8rem; }
.cookie-toggle { position: relative; width: 44px; height: 24px; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle__slider { position: absolute; inset: 0; cursor: pointer; background: rgba(255,255,255,0.1); border-radius: 24px; transition: 0.3s; }
.cookie-toggle__slider::after { content: ''; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; background: var(--white); border-radius: 50%; transition: 0.3s; }
.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--emerald); }
.cookie-toggle input:checked + .cookie-toggle__slider::after { transform: translateX(20px); }
.cookie-toggle--locked { opacity: 0.5; }
.cookie-toggle--locked .cookie-toggle__slider { cursor: not-allowed; background: var(--emerald); }
.cookie-toggle--locked .cookie-toggle__slider::after { transform: translateX(20px); }
.cookie-modal__footer { display: flex; gap: 10px; justify-content: flex-end; padding: 16px 28px; border-top: 1px solid rgba(255,255,255,0.08); }

/* ANIMATIONS */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pain__grid { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .monitoring__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav__menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(13,17,23,.97); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 24px; z-index: 999; opacity: 0; pointer-events: none; transition: opacity .35s ease; }
  .nav__menu--open { opacity: 1; pointer-events: auto; }
  .nav__menu .nav__link { font-size: 1.2rem; padding: 10px 0; }
  .nav__menu .nav__link--cta { margin-top: 8px; font-size: 1rem; padding:10px 20px; }
  .nav__toggle { display: block; z-index: 1001; }
  .nav__link { color: var(--white); font-size: 1rem; padding: 12px 16px; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__stats { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; flex-wrap: wrap; }
  .hero__canvas { max-width: 100%; height: 350px; }
  .pain__grid { grid-template-columns: 1fr; }
  .pain__cta-inner { flex-direction: column; text-align: center; }
  .services__grid { grid-template-columns: 1fr; }
  .monitoring__grid { grid-template-columns: 1fr 1fr; }
  .compare__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card--popular { transform: none; }
  .pricing-card--popular:hover { transform: translateY(-6px); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .cookie-banner__inner { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; text-align: center; gap: 32px; padding: 32px 0; }
  .footer__brand { align-items: center; }
  .footer__social { justify-content: center; }
  .footer__col { align-items: center; }
  .footer__col p { justify-content: center; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .contact-form 
  {
    padding:30px 15px;
  }

  #submitBtn 
  {
    padding:10px 12px;
  }
  .hero 
  {
    padding:90px 0 80px;
  }

  .contact-form__group textarea 
  {
    min-height: 150px;
  }

  .container 
  {
    width:98%;
  }
}
@media (max-width: 480px) {
  .hero__stats { flex-direction: row; gap: 16px; flex-wrap: wrap; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .monitoring__grid { grid-template-columns: 1fr; }
  .contact-info__badges { flex-direction: column; }
  .pricing__savings-inner { flex-direction: column; text-align: center; }

  .hero__badge-top 
  {
    font-size:12px;
  }
}
