:root {
  --blue-900: #0b2447;
  --blue-800: #103a67;
  --blue-700: #1e5aa8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --green-500: #10b981;
  --green-600: #059669;
  --dark: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.12);
  --transition: 0.25s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5 { color: var(--dark); line-height: 1.25; font-weight: 700; }

.icon { width: 22px; height: 22px; stroke-width: 2; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; flex-shrink: 0; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-dark, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 15px; cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white); box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37, 99, 235, 0.4); }
.btn-secondary { background: var(--white); color: var(--blue-700); border: 1.5px solid var(--slate-200); }
.btn-secondary:hover { border-color: var(--blue-600); color: var(--blue-600); }
.btn-dark { background: var(--dark); color: var(--white); position: relative; }
.btn-dark:hover { background: var(--blue-900); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 14px; }

.promo-badge, .badge {
  background: var(--green-500); color: var(--white); font-size: 11px;
  font-weight: 700; padding: 3px 8px; border-radius: 20px; letter-spacing: 0.5px;
}

/* Top bar */
.top-bar { background: var(--blue-900); color: var(--slate-200); font-size: 13px; padding: 8px 0; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.contact-info { display: flex; gap: 22px; flex-wrap: wrap; }
.contact-link { display: inline-flex; align-items: center; gap: 6px; color: var(--slate-200); transition: var(--transition); }
.contact-link:hover { color: var(--white); }
.contact-link .icon { width: 15px; height: 15px; }
.company-tag { color: var(--slate-400); font-weight: 500; }

/* Header */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--slate-200); }
.header-content { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { width: 42px; height: 42px; }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-weight: 800; font-size: 17px; color: var(--dark); letter-spacing: -0.3px; }
.logo-subtitle { font-size: 11px; color: var(--slate-500); }
.nav { display: flex; align-items: center; gap: 6px; }
.nav-link { padding: 9px 12px; border-radius: 8px; font-size: 14.5px; font-weight: 500; color: var(--slate-600); transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.nav-link:hover { color: var(--blue-600); background: var(--slate-100); }
.nav-link-rcs .android-icon { width: 18px; height: 18px; }
.header-cta { flex-shrink: 0; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--dark); cursor: pointer; padding: 6px; }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 12px 0; border-top: 1px solid var(--slate-200); }
.mobile-nav.active { display: flex; }
.mobile-nav-link { padding: 12px; border-radius: 8px; font-weight: 500; color: var(--slate-700); }
.mobile-nav-link:hover { background: var(--slate-100); }
.mobile-cta { margin-top: 8px; }

/* Section headers */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-tag { display: inline-block; background: rgba(37,99,235,0.1); color: var(--blue-600); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 14px; }
.section-title { font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; letter-spacing: -0.5px; }
.section-description { color: var(--slate-500); font-size: 17px; }

/* Hero */
.hero { padding: 64px 0 80px; background: linear-gradient(180deg, var(--slate-50), var(--white)); }
.hero-content { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.hero-title { font-size: clamp(36px, 6vw, 62px); font-weight: 800; letter-spacing: -1.5px; }
.hero-subtitle { display: block; background: linear-gradient(120deg, var(--blue-600), var(--green-500)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-description { font-size: 19px; color: var(--slate-500); margin: 22px auto 32px; max-width: 640px; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Partners */
.partners-section { background: var(--white); border: 1px solid var(--slate-200); border-radius: 20px; padding: 36px; box-shadow: var(--shadow); margin-bottom: 56px; }
.partners-header { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--blue-700); font-weight: 600; margin-bottom: 28px; }
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 26px; }
.partner-card { display: flex; align-items: center; gap: 16px; padding: 20px; background: var(--slate-50); border-radius: var(--radius); border: 1px solid var(--slate-200); }
.partner-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); color: var(--white); display: flex; align-items: center; justify-content: center; }
.partner-info h4 { font-size: 16px; }
.partner-info p { font-size: 14px; color: var(--slate-500); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 30px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--slate-600); }
.feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); flex-shrink: 0; }
.acquisition-section { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.acquisition-card { background: linear-gradient(135deg, var(--slate-50), var(--slate-100)); border-radius: var(--radius); padding: 24px; border: 1px solid var(--slate-200); }
.acquisition-card h4 { font-size: 18px; margin-bottom: 10px; color: var(--blue-900); }
.acquisition-card p { font-size: 15px; color: var(--slate-600); }

/* Services */
.services-section { margin-top: 20px; }
.services-grid, .geo-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 26px; text-align: center; transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 14px; background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(16,185,129,0.12)); color: var(--blue-600); display: flex; align-items: center; justify-content: center; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--slate-500); }

/* Geomarketing */
.geomarketing-section { padding: 80px 0; }
.geo-services-grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 40px; }
.geo-service-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: 18px; padding: 30px; transition: var(--transition); }
.geo-service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.geo-service-icon { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); color: var(--white); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.geo-service-card h3 { font-size: 21px; margin-bottom: 10px; }
.geo-service-card > p { color: var(--slate-500); margin-bottom: 18px; }
.geo-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.geo-features li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--slate-600); }
.geo-features .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-500); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.benefits-card { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 18px; padding: 30px; }
.benefits-header { display: flex; align-items: center; gap: 12px; color: var(--blue-700); margin-bottom: 22px; }
.benefits-header h4 { font-size: 19px; }
.benefits-list { display: flex; flex-direction: column; gap: 14px; }
.benefit-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; background: var(--white); border-radius: 10px; border: 1px solid var(--slate-200); }
.benefit-value { font-weight: 800; color: var(--green-600); font-size: 18px; }
.characteristics-list { display: flex; flex-direction: column; gap: 18px; }
.characteristic-item { display: flex; gap: 14px; }
.characteristic-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(37,99,235,0.1); color: var(--blue-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.characteristic-item h5 { font-size: 15.5px; margin-bottom: 3px; }
.characteristic-item p { font-size: 14px; color: var(--slate-500); }

/* SMS */
.sms-section { padding: 80px 0; background: var(--slate-50); }
.sms-advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 40px; }
.sms-advantage-card { background: var(--white); border-radius: 18px; padding: 30px; text-align: center; border: 1px solid var(--slate-200); box-shadow: var(--shadow-sm); }
.sms-advantage-icon { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 16px; background: linear-gradient(135deg, var(--green-500), var(--green-600)); color: var(--white); display: flex; align-items: center; justify-content: center; }
.sms-advantage-card h4 { font-size: 18px; margin-bottom: 10px; }
.sms-advantage-card p { color: var(--slate-500); font-size: 14.5px; }
.operators-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 40px; }
.operator-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: 18px; padding: 26px; }
.operator-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.operator-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; }
.operator-icon.blue { background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); }
.operator-icon.dark { background: linear-gradient(135deg, var(--dark), var(--slate-700)); }
.operator-info { flex: 1; }
.operator-info h5 { font-size: 16px; }
.operator-info p { font-size: 13.5px; color: var(--slate-500); }
.operator-coverage { text-align: center; }
.coverage-value { font-size: 24px; font-weight: 800; color: var(--green-600); }
.coverage-label { font-size: 12px; color: var(--slate-500); }
.operator-features { display: flex; flex-wrap: wrap; gap: 8px; }
.operator-feature { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; background: var(--slate-100); color: var(--slate-600); padding: 6px 10px; border-radius: 20px; }
.operator-feature .icon-sm { width: 13px; height: 13px; color: var(--green-500); }
.targeting-section { background: var(--white); border: 1px solid var(--slate-200); border-radius: 20px; padding: 36px; margin-bottom: 30px; }
.targeting-section > h3 { text-align: center; font-size: 24px; margin-bottom: 30px; }
.targeting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
.targeting-card { text-align: center; padding: 22px; background: var(--slate-50); border-radius: var(--radius); border: 1px solid var(--slate-200); transition: var(--transition); }
.targeting-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.targeting-icon { width: 50px; height: 50px; margin: 0 auto 14px; border-radius: 12px; background: rgba(37,99,235,0.1); color: var(--blue-600); display: flex; align-items: center; justify-content: center; }
.targeting-card h4 { font-size: 16px; margin-bottom: 5px; }
.targeting-card p { font-size: 13.5px; color: var(--slate-500); }
.targeting-cta { text-align: center; }
.bonus-banner { display: flex; align-items: center; gap: 18px; background: linear-gradient(135deg, var(--blue-900), var(--blue-800)); color: var(--white); border-radius: 18px; padding: 26px 30px; }
.bonus-banner .icon { color: var(--green-500); width: 34px; height: 34px; }
.bonus-banner h5 { color: var(--white); font-size: 18px; margin-bottom: 4px; }
.bonus-banner p { color: var(--slate-200); font-size: 14.5px; }

/* Email */
.email-section { padding: 80px 0; }
.email-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 40px; }
.email-feature-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-sm); }
.email-feature-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.email-feature-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, var(--blue-600), var(--green-500)); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.email-feature-card h3 { font-size: 18px; }
.email-feature-card p { color: var(--slate-500); font-size: 14.5px; }
.email-segmentation { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 20px; padding: 34px; margin-bottom: 40px; }
.segmentation-header { display: flex; align-items: center; gap: 12px; color: var(--blue-700); margin-bottom: 24px; }
.segmentation-header h3 { font-size: 22px; }
.segmentation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.segmentation-item { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--white); border-radius: 12px; border: 1px solid var(--slate-200); font-size: 14.5px; }
.segmentation-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(37,99,235,0.1); color: var(--blue-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.email-benefits { margin-bottom: 40px; }
.email-benefits > h3 { text-align: center; font-size: 24px; margin-bottom: 28px; }
.email-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.email-benefit-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 24px; }
.email-benefit-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: var(--green-600); }
.email-benefit-header h4 { font-size: 16px; }
.email-benefit-card p { font-size: 13.5px; color: var(--slate-500); }
.email-cta { text-align: center; background: linear-gradient(135deg, var(--blue-900), var(--blue-800)); border-radius: 22px; padding: 48px 30px; color: var(--white); }
.email-cta h3 { color: var(--white); font-size: 26px; margin-bottom: 12px; }
.email-cta p { color: var(--slate-200); margin-bottom: 26px; }

/* RCS */
.rcs-section { padding: 80px 0; background: var(--slate-50); }
.rcs-hero { text-align: center; max-width: 860px; margin: 0 auto 48px; }
.rcs-title { font-size: clamp(26px, 4vw, 40px); }
.rcs-divider { width: 80px; height: 4px; background: linear-gradient(90deg, var(--blue-600), var(--green-500)); border-radius: 4px; margin: 18px auto; }
.rcs-subtitle { font-size: 19px; color: var(--slate-600); font-weight: 500; margin-bottom: 20px; }
.rcs-description { color: var(--slate-500); font-size: 16px; margin-bottom: 22px; }
.rcs-highlight { background: rgba(37,99,235,0.06); border-left: 4px solid var(--blue-600); padding: 18px 22px; border-radius: 10px; text-align: left; }
.rcs-highlight p { color: var(--slate-600); }
.rcs-image-section { text-align: center; margin-bottom: 56px; }
.rcs-main-image { max-width: 760px; margin: 0 auto; border-radius: 18px; box-shadow: var(--shadow-lg); }
.rcs-image-caption { color: var(--slate-500); font-size: 14px; margin-top: 14px; }
.rcs-examples { text-align: center; margin-bottom: 56px; }
.rcs-examples > h3 { font-size: 26px; margin-bottom: 8px; }
.rcs-examples-desc { color: var(--slate-500); margin-bottom: 24px; }
.rcs-examples-image { max-width: 820px; margin: 0 auto 30px; border-radius: 18px; box-shadow: var(--shadow); }
.rcs-examples-grid, .rcs-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rcs-example-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 24px; }
.rcs-example-icon { width: 50px; height: 50px; margin: 0 auto 14px; border-radius: 12px; background: linear-gradient(135deg, var(--blue-600), var(--green-500)); color: var(--white); display: flex; align-items: center; justify-content: center; }
.rcs-example-card h4 { font-size: 16px; margin-bottom: 5px; }
.rcs-example-card p { font-size: 13.5px; color: var(--slate-500); }
.rcs-features { margin-bottom: 48px; }
.rcs-features > h3 { text-align: center; font-size: 26px; margin-bottom: 8px; }
.rcs-features-desc { text-align: center; color: var(--slate-500); margin-bottom: 28px; }
.rcs-features-grid { grid-template-columns: repeat(2, 1fr); }
.rcs-feature-item { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--slate-200); border-radius: 12px; padding: 18px 20px; }
.rcs-feature-item .icon { color: var(--blue-600); }
.rcs-feature-item span { font-size: 15px; color: var(--slate-600); }
.rcs-cta { text-align: center; background: linear-gradient(135deg, var(--dark), var(--blue-900)); border-radius: 22px; padding: 52px 30px; color: var(--white); }
.rcs-cta h3 { color: var(--white); font-size: 25px; margin-bottom: 14px; line-height: 1.4; }
.rcs-cta-highlight { color: var(--green-500); }
.rcs-cta p { color: var(--slate-200); margin-bottom: 26px; }

/* Contact */
.contact-section { padding: 80px 0; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.contact-card { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 24px; transition: var(--transition); }
.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-card-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card h4 { font-size: 15px; margin-bottom: 2px; }
.contact-card p { font-size: 14px; color: var(--slate-500); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; margin-bottom: 40px; }
.why-us-card { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 18px; padding: 30px; }
.why-us-card h4 { font-size: 20px; margin-bottom: 20px; }
.why-us-card ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.why-us-card li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--slate-600); }
.why-us-card .icon-sm { color: var(--green-500); }
.quick-contact-card { background: linear-gradient(135deg, var(--blue-900), var(--blue-800)); border-radius: 18px; padding: 30px; color: var(--white); }
.quick-contact-header { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.quick-contact-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; }
.quick-contact-header h4 { color: var(--white); font-size: 19px; }
.quick-contact-header p { color: var(--slate-200); font-size: 14px; }
.quick-contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.quick-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--slate-200); }
.quick-contact-list .icon-sm { color: var(--green-500); }
.quick-contact-buttons { display: flex; flex-direction: column; gap: 12px; }
.contact-form-wrapper { background: var(--white); border: 1px solid var(--slate-200); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); max-width: 820px; margin: 0 auto; }
.contact-form-wrapper > h3 { font-size: 24px; margin-bottom: 6px; }
.contact-form-desc { color: var(--slate-500); margin-bottom: 26px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--slate-700); }
.form-group input, .form-group select, .form-group textarea {
  font-family: inherit; font-size: 15px; padding: 12px 14px; border: 1.5px solid var(--slate-200);
  border-radius: 10px; background: var(--slate-50); color: var(--dark); transition: var(--transition); width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue-600); background: var(--white); box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-checkbox { flex-direction: row; align-items: flex-start; gap: 10px; }
.form-checkbox input { width: auto; margin-top: 3px; }
.form-checkbox label { font-weight: 400; font-size: 13.5px; color: var(--slate-500); }
.form-checkbox a { color: var(--blue-600); text-decoration: underline; }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-form .btn-primary { align-self: flex-start; }
.form-status { font-size: 14.5px; font-weight: 500; margin-top: 4px; min-height: 20px; }
.form-status.success { color: var(--green-600); }
.form-status.error { color: #dc2626; }
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea { border-color: #dc2626; }

/* Footer */
.footer { background: var(--dark); color: var(--slate-400); padding: 48px 0 26px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo-icon { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--blue-600), var(--green-500)); color: var(--white); display: flex; align-items: center; justify-content: center; }
.footer-logo h3 { color: var(--white); font-size: 18px; }
.footer-logo p { font-size: 13px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; font-size: 14.5px; transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 24px; font-size: 14px; }
.footer-bottom a { color: var(--slate-400); }
.footer-bottom a:hover { color: var(--white); }
.footer-links { display: flex; gap: 20px; align-items: center; }
.footer-cta { background: var(--blue-600); color: var(--white) !important; padding: 8px 16px; border-radius: 8px; font-weight: 600; }

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 18px; left: 18px; right: 18px; z-index: 200; background: var(--dark); color: var(--slate-200); border-radius: 14px; box-shadow: var(--shadow-lg); max-width: 900px; margin: 0 auto; }
.cookie-banner[hidden] { display: none; }
.cookie-content { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 24px; flex-wrap: wrap; }
.cookie-content p { font-size: 14px; flex: 1; min-width: 240px; }
.cookie-content a { color: var(--blue-500); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }

/* Legal pages */
.legal-page { padding: 60px 0; max-width: 860px; }
.legal-page h1 { font-size: 34px; margin-bottom: 10px; }
.legal-page .legal-updated { color: var(--slate-500); font-size: 14px; margin-bottom: 30px; }
.legal-page h2 { font-size: 22px; margin: 30px 0 12px; }
.legal-page p, .legal-page li { color: var(--slate-600); margin-bottom: 12px; }
.legal-page ul { padding-left: 22px; margin-bottom: 16px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-600); font-weight: 600; margin-bottom: 24px; }

/* Responsive */
@media (max-width: 992px) {
  .nav, .header-cta { display: none; }
  .mobile-menu-btn { display: block; }
  .services-grid, .geo-services-grid, .email-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .rcs-features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .top-bar-content { justify-content: center; }
  .company-tag { display: none; }
  .partners-grid, .features-grid, .benefits-grid, .operators-grid, .sms-advantages-grid,
  .email-features-grid, .segmentation-grid, .targeting-grid, .rcs-examples-grid,
  .contact-cards { grid-template-columns: 1fr; }
  .partners-section, .targeting-section, .contact-form-wrapper { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 44px 0 56px; }
  .geomarketing-section, .sms-section, .email-section, .rcs-section, .contact-section { padding: 56px 0; }
  .footer-content, .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
  .cookie-content { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .services-grid, .geo-services-grid, .email-benefits-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-lg { width: 100%; }
}
