:root {
  --primary: #1a4f6e;
  --primary-dark: #0d3a54;
  --secondary: #e8a946;
  --accent: #2d8b74;
  --text: #2c3e50;
  --text-light: #5a6c7d;
  --bg: #ffffff;
  --bg-alt: #f7f9fb;
  --bg-dark: #1a2f3d;
  --border: #e1e8ed;
  --shadow: rgba(26, 79, 110, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

h1 { font-size: 2.2rem; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; margin-bottom: 0.9rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.6rem; }

p {
  margin-bottom: 1rem;
}

/* Header */
.header {
  background: var(--bg);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

.nav {
  display: none;
}

.nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  box-shadow: 0 4px 10px var(--shadow);
  padding: 20px;
  gap: 15px;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  padding: 8px 0;
}

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

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.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(6px, -6px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  gap: 8px;
}

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

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

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

.btn-secondary:hover {
  background: #d69a3a;
  color: var(--primary-dark);
}

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

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

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

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

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

/* Sections */
.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--bg-alt);
}

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

.section-dark h2,
.section-dark h3 {
  color: white;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-header p {
  color: var(--text-light);
}

/* Cards */
.cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.card {
  background: var(--bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

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

.card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Service Cards */
.service-card {
  border-left: 4px solid var(--secondary);
}

.service-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 15px;
}

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

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

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

.feature-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--primary);
}

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

/* Stats */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.stat {
  text-align: center;
  padding: 20px;
  flex: 1;
  min-width: 140px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}

.stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial {
  background: var(--bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
}

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

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

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

.author-info strong {
  display: block;
  color: var(--primary-dark);
}

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

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

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

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

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

.step-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

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

.faq-item {
  background: var(--bg);
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow);
  overflow: hidden;
}

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

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

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

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

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

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

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.contact-details h4 {
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Values */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.value-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--bg);
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary) 0%, #d69a3a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* Industries */
.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.industry-tag {
  background: var(--bg);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 500;
  color: var(--primary);
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.3s ease;
}

.industry-tag:hover {
  background: var(--primary);
  color: white;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  text-align: center;
  padding: 60px 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 15px;
}

.cta-section p {
  opacity: 0.95;
  margin-bottom: 25px;
}

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

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 15px;
}

.footer-brand p {
  opacity: 0.8;
  max-width: 300px;
}

.footer-links h4 {
  color: var(--secondary);
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: white;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

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

.cookie-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-content a {
  color: var(--secondary);
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
  background: #d69a3a;
}

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

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

.cookie-btn-settings {
  background: transparent;
  color: var(--secondary);
  text-decoration: underline;
}

/* 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: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--bg);
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

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

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

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cookie-option {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-option:last-child {
  border-bottom: none;
}

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

.cookie-option h4 {
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  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: var(--border);
  border-radius: 26px;
  transition: 0.3s;
}

.cookie-toggle-slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

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

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

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

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

.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Thank You Page */
.thank-you {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.thank-you-content svg {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
}

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

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

/* Legal Pages */
.legal-content {
  padding: 60px 0;
}

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

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

.legal-content h3 {
  margin-top: 25px;
  margin-bottom: 15px;
}

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

.legal-content ul,
.legal-content ol {
  padding-left: 25px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 8px;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(26, 79, 110, 0.08) 0%, rgba(45, 139, 116, 0.08) 100%);
  border-left: 4px solid var(--primary);
  padding: 25px;
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
}

.highlight-box h3 {
  margin-bottom: 10px;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-item {
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
}

.comparison-header {
  background: var(--primary);
  color: white;
  padding: 15px 20px;
  font-weight: 600;
}

.comparison-item.featured .comparison-header {
  background: var(--secondary);
  color: var(--primary-dark);
}

.comparison-body {
  padding: 20px;
}

.comparison-body ul {
  list-style: none;
}

.comparison-body li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-body li:last-child {
  border-bottom: none;
}

.comparison-body li svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
}

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

.milestones::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary) 0%, var(--accent) 100%);
  border-radius: 3px;
}

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

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

.milestone::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--secondary);
  border-radius: 50%;
  border: 3px solid var(--bg);
}

.milestone-year {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 5px;
}

.milestone h4 {
  margin-bottom: 8px;
}

.milestone p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Team */
.team {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.team-member {
  background: var(--bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.team-info h4 {
  margin-bottom: 5px;
}

.team-role {
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.team-bio {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Two Column */
.two-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.two-col-content {
  order: 2;
}

.two-col-visual {
  order: 1;
  display: flex;
  justify-content: center;
}

.two-col-visual svg {
  max-width: 300px;
  width: 100%;
}

/* Media Queries */
@media (min-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.6rem; }

  .header-inner {
    padding: 18px 30px;
  }

  .nav {
    display: flex;
    gap: 30px;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding: 100px 0;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }

  .hero-visual svg {
    max-width: 400px;
  }

  .section {
    padding: 80px 0;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .features {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature {
    flex: 1;
    min-width: 300px;
    flex-direction: row;
    align-items: flex-start;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

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

  .cookie-content p {
    flex: 1;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-brand {
    flex: 1;
  }

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

  .values-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .value-item {
    flex: 1;
    min-width: 280px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1;
  }

  .team {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .team-member {
    flex: 1;
    min-width: 250px;
  }

  .two-col {
    flex-direction: row;
    align-items: center;
  }

  .two-col-content {
    flex: 1;
    order: 1;
  }

  .two-col-visual {
    flex: 1;
    order: 2;
  }

  .two-col.reverse .two-col-content {
    order: 2;
  }

  .two-col.reverse .two-col-visual {
    order: 1;
  }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.2rem; }

  .hero h1 {
    font-size: 3rem;
  }

  .container {
    padding: 0 40px;
  }
}
