/* =============================================
   SYNORMORAI DIGITAL - MAIN STYLESHEET
   ============================================= */


:root {
  --color-primary: #1a56db;
  --color-primary-dark: #1341b0;
  --color-primary-light: #e8f0fe;
  --color-secondary: #0e9f6e;
  --color-secondary-light: #e6f7f2;
  --color-accent: #7c3aed;
  --color-accent-light: #ede9fe;

  --color-bg: #f8f9fc;
  --color-bg-alt: #ffffff;
  --color-bg-dark: #0f172a;
  --color-bg-mid: #f1f4fb;

  --color-text: #1e2d45;
  --color-text-muted: #5a6880;
  --color-text-light: #8a96a8;
  --color-border: #e2e8f0;

  --gradient-primary: linear-gradient(135deg, #1a56db 0%, #7c3aed 100%);
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1a2d5a 60%, #1a56db 100%);
  --gradient-section: linear-gradient(180deg, #f1f4fb 0%, #ffffff 100%);
  --gradient-cta: linear-gradient(135deg, #1341b0 0%, #7c3aed 100%);
  --gradient-text: linear-gradient(135deg, #1a56db, #7c3aed);

  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.08), 0 2px 4px rgba(15,23,42,0.05);
  --shadow-lg: 0 10px 30px rgba(15,23,42,0.1), 0 4px 10px rgba(15,23,42,0.06);
  --shadow-xl: 0 20px 50px rgba(15,23,42,0.14), 0 8px 20px rgba(15,23,42,0.08);
  --shadow-blue: 0 8px 30px rgba(26,86,219,0.2), 0 2px 8px rgba(26,86,219,0.12);
  --shadow-card: 0 2px 8px rgba(15,23,42,0.06), 0 8px 24px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --nav-height: 72px;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}


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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Manrope', sans-serif;
  color: var(--color-text);
  line-height: 1.2;
}


.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.site-nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 36px; width: auto; }
.footer-logo { height: 32px; width: auto; margin-bottom: 12px; }

.nav-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--color-bg-mid);
  padding: 5px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

.nav-tab {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: all var(--transition);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.nav-tab:hover {
  color: var(--color-primary);
  background: rgba(26,86,219,0.07);
}

.nav-tab.active {
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  font-weight: 500;
}

.nav-tab-cta {
  background: var(--color-primary) !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-blue);
}

.nav-tab-cta:hover {
  background: var(--color-primary-dark) !important;
  color: #ffffff !important;
}

.nav-tab-cta.active {
  background: var(--color-primary) !important;
  color: #ffffff !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-panel {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  padding: 16px;
  gap: 4px;
}

.nav-mobile-panel.open { display: flex; }

.nav-mobile-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: all var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  box-shadow: var(--shadow-blue);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(26,86,219,0.3), 0 4px 12px rgba(26,86,219,0.15);
  color: #ffffff;
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-large { padding: 16px 36px; font-size: 16px; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

/* =============================================
   SECTION LAYOUT UTILITIES
   ============================================= */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-desc {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-heading {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-heading .gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero-trust i {
  color: #60a5fa;
  font-size: 14px;
}

.hero-images {
  position: relative;
  height: 420px;
}

.hero-img-back {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: rotate(3deg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.08);
  z-index: 1;
}

.hero-img-back img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: brightness(0.85);
}

.hero-img-front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.12);
  z-index: 2;
  border: 3px solid rgba(255,255,255,0.15);
}

.hero-img-front img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* =============================================
   FEATURE STRIP
   ============================================= */
.feature-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}

.strip-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.strip-item:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.strip-item i {
  font-size: 18px;
  color: var(--color-primary);
}

/* =============================================
   TABBED SECTION
   ============================================= */
.tabbed-section {
  padding: 96px 0;
  background: var(--color-bg);
}

.tabs-wrapper {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.tabs-nav {
  display: flex;
  padding: 20px 24px 0;
  gap: 4px;
  border-bottom: 2px solid var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: 12px 24px;
  border: none;
  background: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 44px;
}

.tab-btn:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.tab-btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  font-weight: 500;
}

.tabs-content { padding: 40px; }

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tab-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
}

.tab-text p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.feature-list li i {
  color: var(--color-secondary);
  font-size: 14px;
  flex-shrink: 0;
}

.tab-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.tab-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tab-image:hover img { transform: scale(1.03); }

/* =============================================
   COUNTER SECTION
   ============================================= */
.counter-section {
  padding: 96px 0;
  background: var(--gradient-cta);
  position: relative;
  overflow: hidden;
}

.counter-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.counter-header {
  text-align: center;
  margin-bottom: 56px;
}

.counter-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.counter-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.counter-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.counter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.counter-icon {
  font-size: 28px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.counter-number {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1;
}

.counter-label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin-bottom: 8px;
}

.counter-note {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-section {
  padding: 96px 0;
  background: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.step-number {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.step-card:hover .step-number { color: var(--color-primary-light); }

.step-icon {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.step-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* =============================================
   CAROUSEL SECTION
   ============================================= */
.carousel-section {
  padding: 96px 0;
  background: var(--color-bg-mid);
}

.carousel-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.carousel-card-img {
  overflow: hidden;
  height: 200px;
}

.carousel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.carousel-card:hover .carousel-card-img img { transform: scale(1.05); }

.carousel-card-body {
  padding: 24px;
}

.carousel-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.carousel-card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}

.carousel-card-body p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}


.splide__arrow {
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  width: 40px;
  height: 40px;
}

.splide__arrow svg { fill: var(--color-primary); }

.splide__pagination__page {
  background: var(--color-border);
  transition: all var(--transition);
}

.splide__pagination__page.is-active {
  background: var(--color-primary);
  transform: scale(1.3);
}

/* =============================================
   COMMUNICATION SECTION
   ============================================= */
.comm-section {
  padding: 96px 0;
  background: #ffffff;
}

.comm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.comm-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  position: relative;
}

.comm-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,86,219,0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.comm-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.comm-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--color-text);
}

.comm-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.comm-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 32px;
}

.comm-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.comm-feature i {
  color: var(--color-primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 0 24px 0;
  background: var(--color-bg);
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--gradient-cta);
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: var(--shadow-xl);
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 24px 72px;
  background: var(--gradient-hero);
  text-align: center;
}

.page-hero-small {
  padding-bottom: 56px;
}

.page-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.page-hero .section-label {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 20px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro-section {
  padding: 96px 0;
  background: #ffffff;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-intro-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.about-intro-text p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-intro-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-intro-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.values-section {
  padding: 96px 0;
  background: var(--color-bg-mid);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
  box-shadow: var(--shadow-blue);
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.mission-section {
  padding: 96px 0;
  background: #ffffff;
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.mission-quote {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
}

.mission-quote i {
  font-size: 36px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
  display: block;
}

.mission-quote blockquote {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
  font-style: italic;
}

.mission-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.mission-text p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* =============================================
   COSA FACCIAMO PAGE
   ============================================= */
.modules-intro {
  padding: 72px 0 0;
  background: #ffffff;
}

.modules-intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.modules-intro-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.modules-intro-text p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 17px;
}

.modules-detail-section {
  padding: 72px 0 96px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.module-detail-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
}

.module-detail-card.reverse {
  background: var(--color-bg-mid);
}

.module-detail-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  box-shadow: var(--shadow-blue);
  flex-shrink: 0;
}

.module-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.module-detail-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.module-detail-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.module-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.module-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.module-feature-item i {
  color: var(--color-secondary);
  font-size: 14px;
  flex-shrink: 0;
}

.tech-section {
  padding: 96px 0;
  background: var(--color-bg-mid);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tech-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.tech-card > i {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 20px;
  display: block;
}

.tech-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.tech-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* =============================================
   AREA GEOGRAFICA PAGE
   ============================================= */
.geo-section {
  padding: 96px 0;
  background: #ffffff;
}

.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.geo-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.geo-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.geo-areas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.geo-area-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.geo-area-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.geo-area-card.primary {
  background: var(--color-primary-light);
  border-color: rgba(26,86,219,0.2);
}

.geo-area-card.secondary {
  background: var(--color-secondary-light);
  border-color: rgba(14,159,110,0.2);
}

.geo-area-card.national {
  background: var(--color-accent-light);
  border-color: rgba(124,58,237,0.2);
}

.geo-area-card i {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.geo-area-card.primary i { color: var(--color-primary); }
.geo-area-card.secondary i { color: var(--color-secondary); }
.geo-area-card.national i { color: var(--color-accent); }

.geo-area-card strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.geo-area-card span {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.geo-map-placeholder {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.geo-map-placeholder img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.support-section {
  padding: 96px 0;
  background: var(--color-bg-mid);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.support-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.support-icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.support-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.support-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  transition: all var(--transition);
  outline: none;
  min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.form-check label {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-check label a {
  color: var(--color-primary);
  text-decoration: underline;
}

.required { color: #e53e3e; }

.form-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
}

.contact-info-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-info-item a {
  color: var(--color-primary);
}

.contact-legal-card {
  background: var(--color-bg-mid);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  border: 1px solid var(--color-border);
}

.contact-legal-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-legal-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.map-section {
  padding: 0 0 80px;
  background: #ffffff;
}

.map-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

/* =============================================
   THANKS PAGE
   ============================================= */
.thanks-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
  background: var(--color-bg);
  text-align: center;
}

.thanks-inner {
  max-width: 560px;
}

.thanks-icon {
  font-size: 64px;
  color: var(--color-secondary);
  margin-bottom: 24px;
}

.thanks-inner h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.thanks-inner p {
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.thanks-sub {
  font-size: 15px !important;
  margin-bottom: 36px !important;
}

.thanks-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-section {
  padding: 72px 0 96px;
  background: #ffffff;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-updated {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 40px;
  font-style: italic;
}

.legal-container h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--color-text);
}

.legal-container h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.legal-container p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-container a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-col li a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-contact-list li i {
  color: var(--color-primary);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-contact-list li a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   COOKIE BANNER & MODAL
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
  border-top: 2px solid var(--color-primary);
  box-shadow: 0 -4px 24px rgba(15,23,42,0.12);
  padding: 20px 24px;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 240px; }

.cookie-text strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.cookie-text p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  min-height: 44px;
}

.btn-cookie-accept {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.btn-cookie-accept:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn-cookie-customize {
  background: var(--color-bg-mid);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-cookie-customize:hover {
  background: var(--color-border);
}

.btn-cookie-reject {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.btn-cookie-reject:hover {
  background: var(--color-bg-mid);
  color: var(--color-text);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15,23,42,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.cookie-modal-inner {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.cookie-modal-inner h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-category:last-of-type { border-bottom: none; }

.cookie-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cookie-cat-header span:first-child {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
}

.cookie-category p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.badge-required {
  font-size: 11px;
  background: var(--color-secondary-light);
  color: var(--color-secondary);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .slider {
  background: var(--color-primary);
}

.toggle-switch input:checked + .slider::before {
  transform: translateX(20px);
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-images { height: 300px; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-panel-inner { grid-template-columns: 1fr; }
  .tab-image { display: none; }
  .comm-grid { grid-template-columns: 1fr; }
  .comm-image img { height: 280px; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .mission-inner { grid-template-columns: 1fr; }
  .geo-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .module-detail-card { grid-template-columns: 1fr; gap: 24px; }
  .module-detail-icon { width: 52px; height: 52px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-tabs { display: none; }
  .nav-hamburger { display: flex; }

  .hero-section { padding-top: calc(var(--nav-height) + 40px); padding-bottom: 56px; }
  .hero-images { height: 240px; }
  .hero-img-back img { height: 200px; }
  .hero-img-front img { height: 160px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .strip-container { justify-content: center; gap: 8px; }
  .strip-item span { display: none; }

  .tabbed-section { padding: 64px 0; }
  .tabs-content { padding: 24px; }
  .tab-btn { padding: 10px 16px; font-size: 13px; }

  .counter-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .counter-section { padding: 64px 0; }
  .counter-card { padding: 28px 16px; }

  .how-section { padding: 64px 0; }
  .steps-grid { grid-template-columns: 1fr; }

  .carousel-section { padding: 64px 0; }

  .comm-section { padding: 64px 0; }
  .comm-features { grid-template-columns: 1fr; }

  .cta-inner { padding: 48px 28px; }
  .cta-actions { flex-direction: column; align-items: center; }

  .values-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }

  .module-features-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { gap: 12px; }

  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .btn-cookie { flex: 1; text-align: center; }

  .contact-grid { gap: 40px; }
  .geo-grid { gap: 40px; }

  .page-hero { padding-top: calc(var(--nav-height) + 40px); padding-bottom: 56px; }

  .legal-container { padding: 0 16px; }

  .about-intro-image img { height: 260px; }
  .geo-map-placeholder img { height: 280px; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .counter-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .btn-primary, .btn-outline, .btn-outline-light { width: 100%; justify-content: center; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: auto; }
  .cta-actions .btn-primary, .cta-actions .btn-outline-light { width: 100%; justify-content: center; }
  .tabs-nav { padding: 16px 16px 0; }
  .tab-btn { padding: 8px 12px; font-size: 12px; }
  .module-detail-card { padding: 40px 16px; }
  .cta-inner { border-radius: var(--radius-lg); padding: 40px 20px; }
  .cookie-modal-inner { padding: 28px 20px; }
  .hero-trust { flex-direction: column; gap: 8px; }
}