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

:root {
  --color-primary: #1a5f7a;
  --color-primary-dark: #134558;
  --color-secondary: #57c5b6;
  --color-accent: #159895;
  --color-light: #f8fafa;
  --color-dark: #1a2332;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-white: #ffffff;
  --color-border: #e2e8f0;
  --color-success: #48bb78;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
}

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

ul, ol {
  list-style: none;
}

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

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

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

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

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

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

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

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

.nav-link {
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 5px 0;
}

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

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

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

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

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition);
}

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

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

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

/* Main Content */
main {
  padding-top: 70px;
}

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

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

.section-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-visual svg {
  width: 100%;
  max-width: 450px;
}

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

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.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-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Cards */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-text {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Feature Grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-grid .card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
}

/* Stats Section */
.stats-section {
  background: var(--color-primary);
  color: var(--color-white);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-secondary);
}

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

/* Testimonials */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 4rem;
  color: var(--color-secondary);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.testimonial-info span {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Process Section */
.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.process-step {
  flex: 1 1 calc(25% - 23px);
  min-width: 220px;
  text-align: center;
  position: relative;
}

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

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Services List */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 25px;
  transition: all var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-content p {
  color: var(--color-text-light);
  margin-bottom: 15px;
}

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

/* Alternating Content Blocks */
.content-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

.content-block:nth-child(even) {
  flex-direction: row-reverse;
}

.content-block-text {
  flex: 1;
}

.content-block-text h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.content-block-text p {
  color: var(--color-text-light);
  margin-bottom: 15px;
}

.content-block-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.content-block-visual svg {
  width: 100%;
  max-width: 350px;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.faq-question:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

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

.faq-answer p {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.value-item {
  flex: 1 1 calc(50% - 13px);
  min-width: 280px;
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--color-light);
  border-radius: var(--radius-md);
}

.value-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.value-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.value-content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Quote Section */
.quote-section {
  background: var(--color-light);
  text-align: center;
}

.quote-text {
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-dark);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.quote-author {
  color: var(--color-text-light);
  font-size: 1rem;
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--color-text-light);
}

.contact-map {
  flex: 1;
  min-width: 300px;
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-map svg {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  color: var(--color-primary);
}

/* Highlighted Panel */
.highlighted-panel {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
}

.highlighted-panel h2 {
  color: var(--color-white);
  margin-bottom: 15px;
}

.highlighted-panel p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 25px;
}

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

.highlighted-panel .btn:hover {
  background: var(--color-light);
}

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

.industry-item {
  flex: 1 1 calc(25% - 15px);
  min-width: 180px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 25px;
  text-align: center;
  transition: all var(--transition);
}

.industry-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.industry-item svg {
  width: 45px;
  height: 45px;
  margin: 0 auto 12px;
  color: var(--color-primary);
}

.industry-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.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);
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.benefit-item {
  flex: 1 1 calc(50% - 10px);
  min-width: 280px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.benefit-item svg {
  width: 28px;
  height: 28px;
  color: var(--color-success);
  flex-shrink: 0;
}

.benefit-item p {
  font-size: 1rem;
}

/* Milestones */
.milestones {
  position: relative;
  padding-left: 30px;
}

.milestones::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.milestone-item {
  position: relative;
  padding-bottom: 35px;
}

.milestone-item:last-child {
  padding-bottom: 0;
}

.milestone-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

.milestone-year {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.milestone-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.milestone-item p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

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

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

.footer-col {
  flex: 1;
  min-width: 200px;
}

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

.footer-col ul li {
  margin-bottom: 12px;
}

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

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

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

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

.footer-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer-copyright {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-secondary);
}

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

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

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.cookie-text p {
  font-size: 0.95rem;
  opacity: 0.9;
}

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

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.cookie-btn-accept {
  background: var(--color-secondary);
  color: var(--color-dark);
}

.cookie-btn-accept:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-reject:hover {
  border-color: var(--color-white);
}

.cookie-btn-settings {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: none;
  text-decoration: underline;
}

.cookie-btn-settings:hover {
  color: var(--color-white);
}

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

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

.cookie-modal-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 35px;
}

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

.cookie-modal-header h3 {
  font-size: 1.4rem;
}

.cookie-modal-close {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: var(--color-text-light);
  transition: color var(--transition);
}

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

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

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

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

.cookie-category h4 {
  font-size: 1rem;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
}

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

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

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

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

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

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

.cookie-category p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

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

/* Thank You Page */
.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content svg {
  width: 100px;
  height: 100px;
  color: var(--color-success);
  margin: 0 auto 25px;
}

.thank-you-content h1 {
  margin-bottom: 15px;
}

.thank-you-content p {
  color: var(--color-text-light);
  margin-bottom: 30px;
  max-width: 500px;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.legal-content h1 {
  margin-bottom: 30px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 35px;
  margin-bottom: 15px;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 25px;
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 15px;
  padding-left: 25px;
}

.legal-content ul li {
  margin-bottom: 8px;
  list-style: disc;
  color: var(--color-text);
}

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

.legal-updated {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

/* Background Variations */
.bg-light {
  background-color: var(--color-light);
}

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

/* Team Grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.team-member {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  text-align: center;
  padding: 30px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-light);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.team-member h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.team-member span {
  color: var(--color-accent);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 12px;
}

.team-member p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* Insight Cards */
.insight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.insight-card {
  flex: 1 1 calc(33.333% - 17px);
  min-width: 280px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.insight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.insight-header {
  background: var(--color-primary);
  padding: 25px;
  color: var(--color-white);
}

.insight-header span {
  font-size: 0.85rem;
  opacity: 0.8;
}

.insight-header h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-top: 8px;
}

.insight-body {
  padding: 25px;
}

.insight-body p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .content-block,
  .content-block:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .feature-grid .card {
    flex: 1 1 calc(50% - 15px);
  }

  .process-step {
    flex: 1 1 calc(50% - 15px);
  }
}

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

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-link {
    padding: 15px 20px;
    display: block;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-link::after {
    display: none;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-grid .card,
  .testimonial-card,
  .value-item,
  .benefit-item {
    flex: 1 1 100%;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
  }

  .service-icon {
    margin: 0 auto;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-col {
    min-width: 140px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .quote-text {
    font-size: 1.4rem;
  }

  .industry-item {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 1.7rem;
  }

  .btn {
    padding: 12px 22px;
  }

  .card {
    padding: 25px;
  }

  .highlighted-panel {
    padding: 35px 25px;
  }

  .cookie-modal-content {
    padding: 25px;
  }
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 15px;
  z-index: 10001;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Focus Styles */
a:focus,
button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }

  main {
    padding-top: 0;
  }

  section {
    padding: 30px 0;
  }
}
