/* ============================================
   OfertaWebsite.ro - Design System
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Colors from logo */
  --navy: #1e214a;
  --navy-light: #2d3266;
  --orange: #ea580c;
  --orange-hover: #c2410c;
  --orange-light: #fed7aa;

  /* Neutrals */
  --white: #ffffff;
  --bg-light: #f8fafc;
  --bg-alt: #f1f5f9;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Spacing */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;

  /* Typography */
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Container */
  --container-max: 1200px;
  --container-padding: 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  color: var(--text-secondary);
}

.text-small {
  font-size: 0.875rem;
}

.text-large {
  font-size: 1.125rem;
}

.text-muted {
  color: var(--text-muted);
}

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: 80px 0;
}

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

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

.section-header p {
  margin-top: 16px;
  font-size: 1.125rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 12px;
}

/* ---------- Grid ---------- */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

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

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

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

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

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

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

.btn-ghost {
  background-color: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--navy);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

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

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

.nav-link {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

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

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

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: all 0.2s ease;
}

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

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }

  .nav-link {
    width: 100%;
    padding: 16px;
    text-align: center;
    font-size: 1rem;
  }

  .nav-cta {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 33, 74, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--orange);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.hero-benefit svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

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

.hero-illustration {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-illustration::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  transform: rotate(-5deg);
}

.hero-illustration::after {
  content: '</>';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  font-family: monospace;
}

/* Floating elements on illustration */
.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.hero-float:nth-child(1) {
  top: 15%;
  right: -10%;
  animation-delay: 0s;
}

.hero-float:nth-child(2) {
  bottom: 25%;
  left: -10%;
  animation-delay: 1s;
}

.hero-float:nth-child(3) {
  bottom: 10%;
  right: 5%;
  animation-delay: 2s;
}

.hero-float svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-benefits {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-illustration {
    max-width: 400px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 0 80px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

/* ---------- Social Proof ---------- */
.social-proof {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

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

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

.stat-number span {
  color: var(--orange);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 8px;
}

@media (max-width: 640px) {
  .social-proof-inner {
    gap: 40px;
  }

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

/* ---------- Cards ---------- */
.card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

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

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange-light) 0%, rgba(234, 88, 12, 0.1) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

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

.card-description {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Service Cards (large) */
.service-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card .card-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}

.service-card .card-icon svg {
  width: 36px;
  height: 36px;
}

.service-card .card-title {
  font-size: 1.5rem;
}

.service-features {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-grow: 1;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.service-features li svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card .btn {
  margin-top: 24px;
  width: 100%;
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--navy) 100%);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 88px;
  height: 88px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  transition: all 0.3s ease;
}

.process-step:hover .process-number {
  border-color: var(--orange);
  color: var(--orange);
  transform: scale(1.05);
}

.process-title {
  margin-bottom: 8px;
}

.process-description {
  font-size: 0.875rem;
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

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

.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
  content: 'Recomandat';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-features {
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features li.disabled {
  color: var(--text-muted);
}

.pricing-features li.disabled svg {
  color: var(--text-muted);
}

.pricing-card .btn {
  width: 100%;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    order: -1;
  }
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

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

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

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.testimonial-content {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9375rem;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ---------- Portfolio ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.portfolio-preview {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-alt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-preview::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
}

.portfolio-preview span {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.portfolio-info {
  padding: 24px;
}

.portfolio-title {
  margin-bottom: 8px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.portfolio-tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  background: var(--bg-light);
  color: var(--text-secondary);
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

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

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.cta-section .btn-outline:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--navy);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--orange);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.875rem;
}

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

.footer-legal a:hover {
  color: var(--orange);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

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

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

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

.form-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.form-error {
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 6px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

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

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

.contact-info-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-weight: 500;
  color: var(--navy);
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Page Header ---------- */
.page-header {
  background: var(--bg-light);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 16px;
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  color: var(--text-muted);
}

.breadcrumb-current {
  color: var(--navy);
  font-weight: 500;
}

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

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

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

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

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

.legal-content ol li {
  list-style: decimal;
}

.legal-content a {
  color: var(--orange);
}

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

.legal-updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ---------- About Page ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

.about-image svg {
  width: 80px;
  height: 80px;
  color: rgba(255, 255, 255, 0.2);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  flex: 1;
  min-width: 300px;
}

.cookie-banner p a {
  color: var(--orange);
  text-decoration: underline;
}

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

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 10px;
}

/* Success Message */
.success-message {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.success-message svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Error Message */
.error-message {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.error-message svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ================================================
   DROPDOWN NAVIGATION
   ================================================ */
.nav-item {
  position: relative;
}

.nav-item.has-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item.has-dropdown > .nav-link::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover > .nav-link::after,
.nav-item.has-dropdown.active > .nav-link::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  padding: 12px 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--white);
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background: var(--bg-light);
  color: var(--orange);
}

.dropdown-link svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

.dropdown-link span {
  display: flex;
  flex-direction: column;
}

.dropdown-link .dropdown-title {
  font-weight: 500;
  font-size: 0.9375rem;
}

.dropdown-link .dropdown-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Mobile dropdown */
@media (max-width: 1023px) {
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-item.has-dropdown.active .dropdown-menu {
    max-height: 400px;
    margin-top: 8px;
  }

  .dropdown-link {
    padding: 10px 16px;
  }

  .dropdown-link .dropdown-desc {
    display: none;
  }
}

/* ================================================
   SERVICE PAGE HERO
   ================================================ */
.service-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.5;
}

.service-hero .container {
  position: relative;
  z-index: 1;
}

.service-hero .breadcrumb {
  margin-bottom: 24px;
}

.service-hero .breadcrumb a,
.service-hero .breadcrumb span {
  color: rgba(255,255,255,0.7);
}

.service-hero .breadcrumb a:hover {
  color: var(--white);
}

.service-hero .breadcrumb-current {
  color: var(--orange-light);
}

.service-hero-content {
  max-width: 700px;
}

.service-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-hero .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.service-hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 32px;
}

.service-hero-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9375rem;
}

.service-hero-benefits svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

.service-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 767px) {
  .service-hero {
    padding: 100px 0 60px;
  }

  .service-hero-benefits {
    flex-direction: column;
    gap: 12px;
  }
}

/* ================================================
   TARGET AUDIENCE & BENEFITS SECTIONS
   ================================================ */
.audience-section,
.benefits-section {
  padding: 80px 0;
}

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

.audience-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.audience-card,
.benefit-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.audience-card .card-icon svg,
.benefit-card .card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.audience-card h3,
.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.audience-card p,
.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ================================================
   COMPARISON TABLE
   ================================================ */
.comparison-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  background: var(--white);
  border-collapse: collapse;
  min-width: 700px;
}

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

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table thead {
  background: var(--navy);
  color: var(--white);
}

.comparison-table thead th {
  font-weight: 600;
  font-size: 1rem;
  border-bottom: none;
}

.comparison-table thead th:not(:first-child) {
  min-width: 140px;
}

.comparison-table thead th.popular {
  background: var(--orange);
  position: relative;
}

.comparison-table thead th.popular::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  padding: 2px 12px;
  border-radius: 10px;
  font-weight: 500;
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--bg-light);
}

.comparison-table tbody tr:hover {
  background: #fef3e2;
}

.comparison-table .check {
  color: #16a34a;
}

.comparison-table .cross {
  color: #dc2626;
}

.comparison-table .check svg,
.comparison-table .cross svg {
  width: 20px;
  height: 20px;
}

.comparison-table tfoot {
  background: var(--bg-light);
}

.comparison-table tfoot td {
  padding: 20px;
  border-bottom: none;
}

.comparison-table tfoot .btn {
  width: 100%;
}

/* Mobile comparison - accordion style */
.comparison-mobile {
  display: none;
  margin-top: 48px;
}

.comparison-package {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.comparison-package.popular {
  border: 2px solid var(--orange);
}

.comparison-package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background: var(--navy);
  color: var(--white);
}

.comparison-package.popular .comparison-package-header {
  background: var(--orange);
}

.comparison-package-header h3 {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-package-header .badge {
  background: rgba(255,255,255,0.2);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 500;
}

.comparison-package-header svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.comparison-package.active .comparison-package-header svg {
  transform: rotate(180deg);
}

.comparison-package-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.comparison-package.active .comparison-package-content {
  max-height: 1000px;
}

.comparison-feature-list {
  padding: 20px;
}

.comparison-feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.comparison-feature-item:last-child {
  border-bottom: none;
}

.comparison-feature-item .feature-name {
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.comparison-feature-item .feature-value {
  font-weight: 500;
}

.comparison-feature-item .feature-value.included {
  color: #16a34a;
}

.comparison-feature-item .feature-value.not-included {
  color: #dc2626;
}

.comparison-package-footer {
  padding: 20px;
  background: var(--bg-light);
  text-align: center;
}

@media (max-width: 767px) {
  .comparison-table-wrapper {
    display: none;
  }

  .comparison-mobile {
    display: block;
  }
}

/* ================================================
   MINI PORTFOLIO SECTION
   ================================================ */
.mini-portfolio {
  padding: 80px 0;
}

.mini-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.mini-portfolio-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mini-portfolio-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-light);
}

.mini-portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mini-portfolio-card:hover .mini-portfolio-image img {
  transform: scale(1.05);
}

.mini-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,33,74,0.9) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.mini-portfolio-card:hover .mini-portfolio-overlay {
  opacity: 1;
}

.mini-portfolio-overlay span {
  color: var(--white);
  font-weight: 500;
}

.mini-portfolio-content {
  padding: 20px;
}

.mini-portfolio-content h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.mini-portfolio-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.mini-portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-portfolio-tags span {
  background: var(--bg-light);
  color: var(--text-secondary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.mini-portfolio-cta {
  text-align: center;
  margin-top: 48px;
}

/* ================================================
   WHY US SECTION (Service Pages)
   ================================================ */
.why-us-section {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}

.why-us-section .section-subtitle {
  color: var(--orange-light);
}

.why-us-section .section-title {
  color: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.why-us-item {
  text-align: center;
}

.why-us-item .icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-us-item .icon svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.why-us-item h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.why-us-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ================================================
   CROSS-LINK BANNER
   ================================================ */
.cross-link-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.cross-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.cross-link-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cross-link-card .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange) 0%, #f97316 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cross-link-card .icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.cross-link-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.cross-link-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.cross-link-card .link {
  color: var(--orange);
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cross-link-card .link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.cross-link-card:hover .link svg {
  transform: translateX(4px);
}

/* ================================================
   SERVICE FAQ (Extended)
   ================================================ */
.service-faq {
  padding: 80px 0;
}

.service-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

@media (max-width: 1100px) {
  .service-faq .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   CTA BANNER (Service Pages)
   ================================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(234,88,12,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.cta-banner .btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ============================================
   Landing Page - Sales Focused Styles
   ============================================ */

/* Landing Header */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.landing-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-header .phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
}

.landing-header .phone-link svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

/* Landing Hero */
.landing-hero {
  padding: 100px 0 60px;
  background: var(--white);
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.landing-badge svg {
  width: 18px;
  height: 18px;
}

.landing-hero-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.landing-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.landing-hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.landing-trust-badge {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.landing-trust-badge-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-trust-badge-icon svg {
  width: 24px;
  height: 24px;
}

.landing-trust-badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
  margin-bottom: 4px;
}

.landing-trust-badge-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.landing-trust-badge-text {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Social Proof Bar */
.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding: 20px 0;
  margin-top: 24px;
  border-top: 1px solid var(--border);
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-proof-item svg {
  width: 20px;
  height: 20px;
}

.social-proof-item span {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.social-proof-item strong {
  color: var(--navy);
}

/* Service Tabs */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.service-tab {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-light);
  transition: all 0.2s ease;
  text-decoration: none;
}

.service-tab:hover {
  color: var(--navy);
  background: var(--bg-alt);
}

.service-tab.active {
  background: var(--navy);
  color: white;
}

/* Landing Grid */
.landing-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

/* Pricing Box */
.pricing-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.pricing-box-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.pricing-box-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.pricing-box-price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.pricing-box-price span {
  font-size: 1.5rem;
  font-weight: 500;
}

.pricing-box-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.875rem;
  color: #10b981;
  margin-top: 8px;
}

.pricing-box-note svg {
  width: 16px;
  height: 16px;
}

.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 24px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.pricing-feature svg {
  width: 18px;
  height: 18px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Lead Form */
.lead-form-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 80px;
}

.lead-form-header {
  text-align: center;
  margin-bottom: 24px;
}

.lead-form-header h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.lead-form-header p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.lead-form-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
}

.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-light);
  color: var(--navy);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

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

.btn-call svg {
  width: 20px;
  height: 20px;
}

.lead-form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.lead-form-divider::before,
.lead-form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.lead-form .form-group {
  margin-bottom: 16px;
}

.lead-form .form-input {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
}

.lead-form .form-input-phone {
  display: flex;
  gap: 8px;
}

.lead-form .phone-prefix {
  width: 70px;
  padding: 14px 12px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 500;
  color: var(--text-secondary);
}

.lead-form .form-textarea {
  min-height: 80px;
  resize: none;
}

.btn-submit-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.btn-submit-form svg {
  width: 20px;
  height: 20px;
}

.lead-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.lead-form-trust svg {
  width: 14px;
  height: 14px;
}

/* Support Section */
.support-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.support-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.support-header h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.support-header p {
  color: var(--text-secondary);
}

.support-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

.support-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.support-card-icon svg {
  width: 32px;
  height: 32px;
}

.support-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.support-card p {
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

.support-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.support-feature {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
}

.support-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.support-feature h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.support-feature p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Landing Testimonials */
.landing-testimonials {
  padding: 80px 0;
}

.landing-testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials-grid-landing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card-landing {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #fbbf24;
}

.testimonial-card-landing p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

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

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

.testimonial-name-landing {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9375rem;
}

.testimonial-company-landing {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Landing FAQ */
.landing-faq {
  padding: 60px 0;
  background: var(--bg-light);
}

.landing-faq .section-header {
  margin-bottom: 32px;
}

.faq-list-landing {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-landing {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question-landing {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: white;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question-landing:hover {
  background: var(--bg-light);
}

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

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

.faq-answer-landing {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item-landing.active .faq-answer-landing {
  display: block;
}

/* SEO Content Section */
.seo-content {
  padding: 60px 0;
}

.seo-content-inner {
  max-width: 900px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}

.seo-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.seo-content strong {
  color: var(--navy);
}

/* Landing CTA Footer */
.landing-cta-footer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  text-align: center;
  color: white;
}

.landing-cta-footer h2 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.landing-cta-footer p {
  opacity: 0.9;
  margin-bottom: 32px;
}

.landing-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.landing-cta-footer .btn-whatsapp {
  padding: 16px 32px;
  font-size: 1rem;
}

.landing-cta-footer .btn-call {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  padding: 16px 32px;
  font-size: 1rem;
}

.landing-cta-footer .btn-call:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* Landing Footer */
.landing-footer {
  background: var(--bg-light);
  padding: 24px 0;
  text-align: center;
}

.landing-footer p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Responsive Landing */
@media (max-width: 1023px) {
  .landing-hero-content {
    grid-template-columns: 1fr;
  }

  .landing-trust-badge {
    max-width: 400px;
  }

  .landing-grid {
    grid-template-columns: 1fr;
  }

  .lead-form-box {
    position: static;
    max-width: 500px;
    margin: 40px auto 0;
  }

  .pricing-features {
    grid-template-columns: 1fr;
  }

  .support-features {
    grid-template-columns: 1fr;
  }

  .testimonials-grid-landing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .landing-hero {
    padding: 80px 0 40px;
  }

  .social-proof-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .service-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 16px;
  }

  .service-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .lead-form-buttons {
    grid-template-columns: 1fr;
  }

  .support-card {
    padding: 32px 24px;
  }

  .landing-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .landing-cta-footer .btn-whatsapp,
  .landing-cta-footer .btn-call {
    width: 100%;
    max-width: 280px;
  }
}
