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

:root {
  --color-primary: #1a5f7a;
  --color-secondary: #086e7d;
  --color-accent: #57c5b6;
  --color-dark: #1a2238;
  --color-light: #f8fafc;
  --color-white: #ffffff;
  --color-gray: #64748b;
  --color-gray-light: #e2e8f0;
  --color-success: #22c55e;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-white);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

.section-subtitle {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--color-gray);
  max-width: 700px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  gap: 8px;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

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

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-dark);
}

.btn-accent:hover {
  background: #4ab3a5;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo svg {
  width: 40px;
  height: 40px;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 32px;
}

.nav-desktop a {
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
  padding: 4px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--color-primary);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 3px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  padding: 30px 20px;
  transform: translateX(-100%);
  transition: transform var(--transition);
  z-index: 999;
  overflow-y: auto;
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile a {
  display: block;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

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

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--color-light) 0%, #e0f2fe 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  color: var(--color-dark);
}

.hero h1 span {
  color: var(--color-primary);
}

.hero-text {
  font-size: 1.125rem;
  color: var(--color-gray);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-gray-light);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--color-gray);
}

/* Sections */
section {
  padding: 80px 0;
}

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

.section-header .section-desc {
  margin: 0 auto;
}

/* Services Cards */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 100%;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid var(--color-gray-light);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--color-gray);
  margin-bottom: 16px;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.service-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-gray);
}

/* Feature Blocks */
.features-section {
  background: var(--color-light);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  background: var(--color-white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-dark);
}

.feature-content h4 {
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--color-gray);
  margin: 0;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 140px;
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
  background: var(--color-light);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial-card {
  flex: 1 1 100%;
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--color-dark);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-info h5 {
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--color-gray);
}

/* Process Section */
.process-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.process-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.process-content {
  flex: 1;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-gray-light);
}

.process-step:last-child .process-content {
  border-bottom: none;
}

.process-content h4 {
  margin-bottom: 8px;
}

.process-content p {
  color: var(--color-gray);
  margin: 0;
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--color-gray-light);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-dark);
  transition: all var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-primary);
  transition: transform var(--transition);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--color-gray);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Values/Philosophy Section */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.value-card {
  flex: 1 1 100%;
  background: var(--color-white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
}

.value-card h4 {
  margin-bottom: 10px;
  color: var(--color-primary);
}

.value-card p {
  color: var(--color-gray);
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
}

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

.cta-content h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

/* About Page */
.about-hero {
  padding: 120px 0 60px;
  background: var(--color-light);
}

.about-intro {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-intro-content h1 {
  margin-bottom: 20px;
}

.about-intro-content p {
  color: var(--color-gray);
  font-size: 1.1rem;
}

.story-section {
  background: var(--color-white);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content p {
  color: var(--color-gray);
  font-size: 1.05rem;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.team-card {
  flex: 1 1 100%;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.75rem;
  font-weight: 700;
}

.team-card h4 {
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--color-gray);
  font-size: 0.95rem;
  margin: 0;
}

/* Milestones */
.milestones-section {
  background: var(--color-light);
}

.milestones-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.milestone-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.milestone-year {
  flex-shrink: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.milestone-content h4 {
  margin-bottom: 6px;
}

.milestone-content p {
  color: var(--color-gray);
  margin: 0;
}

/* Contact Page */
.contact-hero {
  padding: 120px 0 60px;
  background: var(--color-light);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.contact-info {
  flex: 1 1 100%;
}

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.contact-card h3 {
  margin-bottom: 20px;
  color: var(--color-primary);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--color-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
}

.contact-item-content h5 {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item-content p {
  color: var(--color-gray);
  margin: 0;
}

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

.contact-item-content a:hover {
  text-decoration: underline;
}

/* Services Page */
.services-hero {
  padding: 120px 0 60px;
  background: var(--color-light);
}

.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-detailed-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detailed-card h3 {
  color: var(--color-dark);
}

.service-detailed-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.service-detailed-card .price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-gray);
}

.service-detailed-card p {
  color: var(--color-gray);
  margin: 0;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-gray);
}

.service-feature svg {
  width: 18px;
  height: 18px;
  fill: var(--color-success);
}

/* Comparison Table */
.comparison-section {
  background: var(--color-light);
}

.comparison-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 500px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-light);
}

.comparison-table th {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--color-light);
}

.check-icon {
  color: var(--color-success);
  font-weight: 700;
}

/* Legal Pages */
.legal-hero {
  padding: 120px 0 40px;
  background: var(--color-light);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--color-gray);
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-content li {
  color: var(--color-gray);
  margin-bottom: 8px;
}

/* Thank You Page */
.thankyou-section {
  padding: 120px 0;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thankyou-content {
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-icon {
  width: 100px;
  height: 100px;
  background: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thankyou-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--color-white);
}

.thankyou-content h1 {
  margin-bottom: 16px;
}

.thankyou-content p {
  color: var(--color-gray);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 60px 0 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col {
  flex: 1 1 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-logo svg {
  width: 36px;
  height: 36px;
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.footer-col h4 {
  color: var(--color-white);
  margin-bottom: 20px;
  font-size: 1rem;
}

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

.footer-col a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-text h4 {
  margin-bottom: 8px;
}

.cookie-text p {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin: 0;
}

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

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-buttons .btn {
  padding: 12px 20px;
  font-size: 0.9rem;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.cookie-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  background: var(--color-white);
  border-radius: var(--radius-md);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-gray-light);
}

.cookie-modal-header h3 {
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gray);
  padding: 4px;
  line-height: 1;
}

.cookie-modal-close:hover {
  color: var(--color-dark);
}

.cookie-modal-body {
  padding: 24px;
}

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

.cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

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

.cookie-category h5 {
  font-weight: 600;
}

.cookie-category p {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin: 0;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-gray-light);
  border-radius: 26px;
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--color-white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

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

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-gray-light);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-modal-footer .btn {
  flex: 1;
  min-width: 120px;
}

/* Industries */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.industry-tag {
  background: var(--color-light);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--color-dark);
  border: 1px solid var(--color-gray-light);
}

/* Insights Section */
.insights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.insight-card {
  flex: 1 1 100%;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-accent);
}

.insight-card h4 {
  margin-bottom: 12px;
  color: var(--color-primary);
}

.insight-card p {
  color: var(--color-gray);
  margin: 0;
}

/* Trust Indicators */
.trust-section {
  background: var(--color-light);
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.trust-item {
  flex: 1 1 140px;
  text-align: center;
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.trust-item svg {
  width: 48px;
  height: 48px;
  fill: var(--color-primary);
  margin-bottom: 12px;
}

.trust-item h5 {
  font-weight: 600;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--color-gray);
  margin: 0;
}

/* Responsive */
@media (min-width: 640px) {
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }

  .value-card {
    flex: 1 1 calc(50% - 12px);
  }

  .team-card {
    flex: 1 1 calc(50% - 12px);
  }

  .insight-card {
    flex: 1 1 calc(50% - 12px);
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-buttons {
    flex-shrink: 0;
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-desktop {
    display: block;
  }

  .nav-mobile {
    display: none;
  }

  section {
    padding: 100px 0;
  }

  .footer-col {
    flex: 1 1 calc(25% - 30px);
  }
}

@media (min-width: 1024px) {
  .service-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .testimonial-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .team-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .value-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .insight-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .service-detailed-card {
    flex-direction: row;
    align-items: center;
  }

  .service-header {
    flex: 0 0 250px;
  }
}
