:root {
  --color-primary: #1a3a5c;
  --color-secondary: #2d5a87;
  --color-accent: #c9a227;
  --color-dark: #0f1f2e;
  --color-light: #f5f7fa;
  --color-white: #ffffff;
  --color-text: #2c3e50;
  --color-text-light: #6b7c93;
  --color-border: #d1d9e6;
  --font-primary: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --shadow-soft: 0 4px 20px rgba(26, 58, 92, 0.08);
  --shadow-medium: 0 8px 32px rgba(26, 58, 92, 0.12);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: #ddb52e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.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-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

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

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

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 18px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 4px;
}

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

.nav-cta {
  margin-left: 16px;
}

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

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Split Section Layout */
.split-section {
  display: flex;
  min-height: 100vh;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content {
  padding: 80px 60px;
}

.split-visual {
  position: relative;
  overflow: hidden;
}

.split-visual img,
.split-visual svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 58, 92, 0.85), rgba(45, 90, 135, 0.7));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: var(--color-white);
  text-align: center;
}

/* Hero Section */
.hero {
  padding-top: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.hero .split-content {
  color: var(--color-white);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

/* Section Styles */
.section {
  padding: 100px 0;
}

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

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

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

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

.section-header h2 {
  margin-bottom: 16px;
}

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

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

.service-card {
  flex: 1;
  min-width: 320px;
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

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

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

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

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

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

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

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

.service-price .period {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

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

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  counter-reset: step;
}

.process-step {
  flex: 1;
  min-width: 250px;
  position: relative;
  padding-left: 80px;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background: var(--color-accent);
  color: var(--color-dark);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h4 {
  margin-bottom: 10px;
}

.process-step p {
  color: var(--color-text-light);
}

/* Team Grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.team-member {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  text-align: center;
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 3rem;
  font-weight: 600;
}

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

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

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

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

.testimonial-card {
  flex: 1;
  min-width: 320px;
  background: var(--color-white);
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 24px;
  position: relative;
  padding-left: 24px;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 3rem;
  color: var(--color-accent);
  line-height: 1;
}

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

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

.testimonial-name {
  font-weight: 600;
  color: var(--color-dark);
}

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

/* Form Styles */
.form-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-medium);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

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

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

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

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

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

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

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

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

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

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

.footer-logo {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* 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;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--color-accent);
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

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

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-cta .btn {
  box-shadow: var(--shadow-medium);
}

/* Page Header */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  text-align: center;
  color: var(--color-white);
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-header p {
  opacity: 0.9;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

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

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

.contact-item h4 {
  margin-bottom: 4px;
}

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

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.legal-content p {
  color: var(--color-text);
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 20px;
}

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

/* Thanks Page */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding-top: 80px;
}

.thanks-content {
  text-align: center;
  color: var(--color-white);
  max-width: 600px;
  padding: 40px;
}

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

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

.thanks-content h1 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.thanks-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* Map Placeholder */
.map-container {
  height: 400px;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: 20px;
  box-shadow: var(--shadow-medium);
  z-index: 999;
}

.mobile-nav.active {
  display: block;
}

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

/* Responsive */
@media (max-width: 992px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .split-content {
    padding: 60px 30px;
  }

  .split-visual {
    min-height: 400px;
  }

  .stats-row {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .service-card,
  .testimonial-card,
  .process-step {
    min-width: 100%;
  }

  .footer-grid {
    gap: 40px;
  }

  .footer-col {
    min-width: 45%;
  }

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

  .sticky-cta {
    bottom: 20px;
    right: 20px;
  }

  .form-container {
    padding: 32px 24px;
  }
}

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

  .hero {
    padding-top: 70px;
  }

  .page-header {
    padding: 120px 0 60px;
  }

  .footer-col {
    min-width: 100%;
  }

  .btn {
    padding: 12px 24px;
  }
}
