:root {
  --primary: #1a1a2e;
  --secondary: #c9a227;
  --accent: #e8d5b7;
  --dark: #0f0f1a;
  --light: #faf8f5;
  --gray: #6b6b7b;
  --white: #ffffff;
  --shadow: rgba(0,0,0,0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--primary);
  background: var(--light);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-funnel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23c9a227" stroke-width="0.5" opacity="0.1"/></svg>');
  background-size: 200px;
  opacity: 0.3;
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 25px;
  max-width: 900px;
}

.hero-title strong {
  font-weight: 700;
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.btn-primary {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  padding: 18px 45px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-dark {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 18px 45px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Story Section */
.story-section {
  padding: 120px 0;
  background: var(--white);
}

.story-intro {
  font-size: 1.4rem;
  color: var(--gray);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.story-block {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.story-block.reverse {
  flex-direction: row-reverse;
}

.story-visual {
  flex: 1;
  position: relative;
}

.story-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-image svg {
  width: 60%;
  height: 60%;
  opacity: 0.3;
}

.story-text {
  flex: 1;
}

.story-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.story-text p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* Problem Section */
.problem-section {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.problem-header {
  text-align: center;
  margin-bottom: 70px;
}

.problem-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

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

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.problem-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: rgba(255,255,255,0.05);
  padding: 40px 30px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.problem-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
}

.problem-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

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

.problem-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.problem-card p {
  opacity: 0.7;
  line-height: 1.7;
}

/* Insight Section */
.insight-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.insight-wrapper {
  display: flex;
  gap: 80px;
  align-items: center;
}

.insight-content {
  flex: 1.2;
}

.insight-label {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.insight-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.insight-content p {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.insight-visual {
  flex: 1;
}

.insight-image {
  width: 100%;
  height: 450px;
  background: var(--primary);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.insight-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary) 0%, transparent 50%);
  opacity: 0.3;
}

/* Trust Section */
.trust-section {
  padding: 100px 0;
  background: var(--primary);
  color: var(--white);
}

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

.trust-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.7;
  margin-top: 10px;
}

.testimonials-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background: rgba(255,255,255,0.05);
  padding: 35px;
  border-radius: 20px;
  border-left: 4px solid var(--secondary);
}

.testimonial-text {
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 25px;
  font-size: 1.05rem;
  line-height: 1.8;
}

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

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

.author-info h5 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.author-info span {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Services/Pricing Section */
.services-section {
  padding: 120px 0;
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.services-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  flex: 1;
  min-width: 320px;
  max-width: 380px;
  background: var(--light);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  border-color: var(--secondary);
  transform: translateY(-10px);
  box-shadow: 0 25px 60px var(--shadow);
}

.service-card.featured {
  border-color: var(--secondary);
  position: relative;
}

.service-card.featured::before {
  content: 'Priporočeno';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--secondary);
  color: var(--primary);
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.service-top {
  padding: 40px 35px 30px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-top h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-top p {
  color: var(--gray);
  font-size: 0.95rem;
}

.service-price {
  padding: 30px 35px;
  text-align: center;
  background: var(--white);
}

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

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

.service-features {
  padding: 30px 35px 40px;
}

.service-features ul {
  list-style: none;
}

.service-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
}

.service-cta {
  padding: 0 35px 40px;
  text-align: center;
}

.service-cta .btn-primary {
  width: 100%;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
}

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

.benefits-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.benefit-item {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px var(--shadow);
}

.benefit-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--secondary);
}

.benefit-item h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.benefit-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Urgency Section */
.urgency-section {
  padding: 80px 0;
  background: var(--secondary);
  text-align: center;
}

.urgency-content h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.urgency-content p {
  font-size: 1.15rem;
  color: var(--primary);
  opacity: 0.8;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Form Section */
.form-section {
  padding: 120px 0;
  background: var(--dark);
  color: var(--white);
}

.form-wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.form-info {
  flex: 1;
}

.form-info h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.form-info p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 35px;
  line-height: 1.8;
}

.form-guarantees {
  list-style: none;
}

.form-guarantees li {
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.form-guarantees li::before {
  content: '✓';
  width: 30px;
  height: 30px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.form-container {
  flex: 1;
  background: var(--white);
  padding: 50px;
  border-radius: 25px;
  color: var(--primary);
}

.form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

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

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

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: var(--primary);
  color: var(--white);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.sticky-cta p {
  color: var(--white);
  font-size: 1rem;
}

.sticky-cta .btn-primary {
  padding: 12px 30px;
  font-size: 0.9rem;
}

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

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

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

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

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

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

.footer-col a {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

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

.footer-col p {
  opacity: 0.7;
  line-height: 1.8;
}

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

.footer-bottom p {
  opacity: 0.6;
  font-size: 0.9rem;
}

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

.footer-legal a {
  opacity: 0.6;
  font-size: 0.9rem;
}

.footer-legal a:hover {
  opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: var(--white);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 10000;
  display: none;
}

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

.cookie-banner h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.cookie-accept {
  padding: 12px 25px;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-reject {
  padding: 12px 25px;
  background: transparent;
  color: var(--gray);
  border: 2px solid var(--gray);
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

/* Thanks Page */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  text-align: center;
  padding: 40px 20px;
}

.thanks-content {
  max-width: 600px;
}

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

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

.thanks-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 25px;
}

.thanks-content p {
  font-size: 1.2rem;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 15px;
}

.thanks-service {
  background: rgba(255,255,255,0.1);
  padding: 20px 30px;
  border-radius: 12px;
  margin: 30px 0;
  color: var(--secondary);
  font-size: 1.1rem;
}

/* Page Header */
.page-header {
  background: var(--primary);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.7;
}

/* Content Pages */
.content-section {
  padding: 80px 0;
  background: var(--white);
}

.content-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--primary);
}

.content-section h3 {
  font-size: 1.5rem;
  margin: 35px 0 15px;
  color: var(--primary);
}

.content-section p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-section ul {
  margin: 20px 0 20px 30px;
  color: var(--gray);
}

.content-section li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* About Page */
.about-intro {
  padding: 100px 0;
  background: var(--light);
}

.about-intro .container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.about-text p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  height: 400px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
}

.team-section {
  padding: 100px 0;
  background: var(--white);
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

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

.team-member {
  text-align: center;
  max-width: 280px;
}

.team-avatar {
  width: 150px;
  height: 150px;
  background: var(--primary);
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--secondary);
  font-weight: 700;
}

.team-member h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.team-member span {
  color: var(--secondary);
  font-size: 0.95rem;
}

.team-member p {
  color: var(--gray);
  margin-top: 15px;
  font-size: 0.95rem;
}

/* Contact Page */
.contact-section {
  padding: 100px 0;
  background: var(--light);
}

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

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

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

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

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

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

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

.contact-map {
  flex: 1;
  background: var(--primary);
  border-radius: 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0.5;
}

/* Services Page Specific */
.services-page-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 80px 0;
}

.service-detail {
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 50px;
  background: var(--light);
  border-radius: 25px;
}

.service-detail:nth-child(even) {
  flex-direction: row-reverse;
  background: var(--white);
  border: 2px solid var(--accent);
}

.service-detail-image {
  flex: 0 0 300px;
  height: 250px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 15px;
}

.service-detail-content {
  flex: 1;
}

.service-detail-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.service-detail-content p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.service-detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
}

/* Mobile Styles */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links a {
    display: block;
    padding: 15px 0;
  }

  .hamburger {
    display: flex;
  }

  .story-block,
  .story-block.reverse {
    flex-direction: column;
  }

  .insight-wrapper {
    flex-direction: column;
  }

  .form-wrapper {
    flex-direction: column;
  }

  .about-intro .container {
    flex-direction: column;
  }

  .contact-grid {
    flex-direction: column;
  }

  .service-detail,
  .service-detail:nth-child(even) {
    flex-direction: column;
  }

  .service-detail-image {
    flex: 0 0 200px;
    width: 100%;
  }

  .footer-grid {
    flex-direction: column;
    gap: 30px;
  }

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .services-header h2,
  .trust-header h2,
  .benefits-header h2 {
    font-size: 2rem;
  }

  .service-card {
    min-width: 100%;
  }

  .trust-stats {
    gap: 30px;
  }

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

  .form-container {
    padding: 30px 20px;
  }

  .sticky-cta {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .sticky-cta p {
    font-size: 0.9rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .thanks-content h1 {
    font-size: 2rem;
  }
}
