/* pvaswift - Premium Digital Storefront */
/* ======================================== */

/* CSS Variables */
:root {
  /* Core Colors */
  --white: #FFFFFF;
  --soft-ivory: #FBFBF9;
  --stone-mist: #F4F5F2;
  --soft-mineral: #E8EBE4;
  --deep-forest: #101514;
  --rich-graphite: #1B2422;
  --slate-green: #34423F;
  --muted-stone: #66706D;
  --light-border: #D6DDD7;
  --fine-divider: #EAEDE8;
  
  /* Accent Colors */
  --emerald-depth: #0F7A5A;
  --premium-green: #159A74;
  --champagne-gold: #D4A94D;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  --container-max: 1280px;
  --container-narrow: 980px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(16, 21, 20, 0.06);
  --shadow-md: 0 4px 20px rgba(16, 21, 20, 0.08);
  --shadow-lg: 0 8px 40px rgba(16, 21, 20, 0.12);
  --shadow-xl: 0 16px 60px rgba(16, 21, 20, 0.15);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--white);
  color: var(--rich-graphite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--deep-forest);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  color: var(--slate-green);
  line-height: 1.7;
}

/* Utility Classes */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--section-padding) 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all var(--transition-base);
}

.btn-primary {
  background: var(--emerald-depth);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--premium-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--deep-forest);
  border: 1.5px solid var(--light-border);
}

.btn-secondary:hover {
  border-color: var(--emerald-depth);
  color: var(--emerald-depth);
}

.btn-gold {
  background: var(--champagne-gold);
  color: var(--deep-forest);
}

.btn-gold:hover {
  background: #c49a3d;
  transform: translateY(-2px);
}

/* Top Utility Strip */
.top-strip {
  background: var(--soft-ivory);
  border-bottom: 1px solid var(--fine-divider);
  padding: 10px 0;
}

.top-strip-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted-stone);
}

.top-strip-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-strip-item svg {
  width: 14px;
  height: 14px;
  color: var(--emerald-depth);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--fine-divider);
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--deep-forest);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast), transform var(--transition-base);
}

.logo:hover {
  color: var(--emerald-depth);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--emerald-depth), var(--premium-green));
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 24px rgba(15, 122, 90, 0.18);
  transition: transform var(--transition-base), box-shadow var(--transition-base), filter var(--transition-base);
}

.logo:hover .logo-icon {
  transform: translateY(-1px) scale(1.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 14px 28px rgba(15, 122, 90, 0.24);
  filter: saturate(1.08);
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-green);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--deep-forest);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-depth);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 720px;
  max-width: min(900px, calc(100vw - 40px));
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  max-height: 70vh;
  overflow-y: auto;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.dropdown-menu-services {
  min-width: 860px;
  max-width: min(980px, calc(100vw - 40px));
  padding: 20px;
}

.dropdown-grid-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 20px;
}

.dropdown-section {
  min-width: 0;
}

.dropdown-section-title {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--fine-divider);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--deep-forest);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dropdown-section-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-green);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--soft-ivory);
  color: var(--deep-forest);
}

.dropdown-item svg {
  width: 18px;
  height: 18px;
  color: var(--emerald-depth);
}

.dropdown-view-all {
  display: block;
  margin-top: 16px;
  padding: 12px;
  background: var(--soft-ivory);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  color: var(--emerald-depth);
}

.dropdown-view-all:hover {
  background: rgba(15, 122, 90, 0.1);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-forest);
  transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--soft-ivory) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--emerald-depth);
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title span {
  color: var(--emerald-depth);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--muted-stone);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--slate-green);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--emerald-depth);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
}

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 20px;
}

.hero-card-1 {
  top: 0;
  left: 0;
  width: 280px;
}

.hero-card-2 {
  top: 60px;
  right: 0;
  width: 240px;
}

.hero-card-3 {
  bottom: 80px;
  left: 40px;
  width: 260px;
}

.hero-card-4 {
  bottom: 0;
  right: 20px;
  width: 200px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep-forest);
}

.card-subtitle {
  font-size: 0.75rem;
  color: var(--muted-stone);
}

.card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  padding: 6px 12px;
  background: var(--soft-ivory);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--slate-green);
}

.chip-featured {
  background: rgba(15, 122, 90, 0.1);
  color: var(--emerald-depth);
}

/* Section Intro */
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--emerald-depth);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--muted-stone);
}

/* Category Cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--fine-divider);
  border-radius: 16px;
  padding: 28px;
  transition: all var(--transition-base);
}

.category-card:hover {
  border-color: var(--light-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.category-icon svg {
  width: 28px;
  height: 28px;
}

.category-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-forest);
  margin-bottom: 8px;
}

.category-desc {
  font-size: 0.9rem;
  color: var(--muted-stone);
  margin-bottom: 16px;
}

.category-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-depth);
}

.category-link:hover {
  gap: 10px;
}

.category-link svg {
  width: 16px;
  height: 16px;
}

/* Service Finder */
.finder-box {
  background: var(--soft-ivory);
  border-radius: 20px;
  padding: 40px;
}

.finder-search {
  position: relative;
  margin-bottom: 32px;
}

.finder-search input {
  width: 100%;
  padding: 18px 24px 18px 56px;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--deep-forest);
  transition: all var(--transition-fast);
}

.finder-search input:focus {
  outline: none;
  border-color: var(--emerald-depth);
  box-shadow: 0 0 0 3px rgba(15, 122, 90, 0.1);
}

.finder-search svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  color: var(--muted-stone);
}

.finder-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-green);
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--emerald-depth);
  border-color: var(--emerald-depth);
  color: var(--white);
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.finder-card {
  background: var(--white);
  border: 1px solid var(--fine-divider);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all var(--transition-base);
}

.finder-card:hover {
  border-color: var(--emerald-depth);
  box-shadow: var(--shadow-md);
}

.finder-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.finder-card-icon svg {
  width: 24px;
  height: 24px;
}

.finder-card-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-forest);
  margin-bottom: 4px;
}

.finder-card-type {
  font-size: 0.75rem;
  color: var(--muted-stone);
}

/* Featured Destinations */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.featured-card {
  background: var(--white);
  border: 1px solid var(--fine-divider);
  border-radius: 16px;
  padding: 28px;
  transition: all var(--transition-base);
  position: relative;
}

.featured-card:hover {
  border-color: var(--light-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: rgba(212, 169, 77, 0.15);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--champagne-gold);
}

.featured-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.featured-icon svg {
  width: 28px;
  height: 28px;
}

.featured-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-forest);
  margin-bottom: 8px;
}

.featured-desc {
  font-size: 0.85rem;
  color: var(--muted-stone);
  margin-bottom: 16px;
}

.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-depth);
}

.featured-cta:hover {
  gap: 10px;
}

.featured-cta svg {
  width: 16px;
  height: 16px;
}

/* Why Structure Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.why-card {
  display: flex;
  gap: 20px;
}

.why-number {
  width: 48px;
  height: 48px;
  background: var(--emerald-depth);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.why-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.why-content p {
  font-size: 0.9rem;
  color: var(--muted-stone);
}

/* Order Flow */
.order-flow {
  background: var(--soft-ivory);
}

.flow-steps {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--light-border);
  z-index: 0;
}

.flow-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.flow-step-number {
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 2px solid var(--emerald-depth);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--emerald-depth);
  margin: 0 auto 16px;
}

.flow-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-forest);
  margin-bottom: 8px;
}

.flow-step-desc {
  font-size: 0.85rem;
  color: var(--muted-stone);
}

/* Advantage Board */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.advantage-card {
  background: var(--white);
  border: 1px solid var(--fine-divider);
  border-radius: 12px;
  padding: 24px;
  transition: all var(--transition-base);
}

.advantage-card:hover {
  border-color: var(--emerald-depth);
  box-shadow: var(--shadow-sm);
}

.advantage-icon {
  width: 44px;
  height: 44px;
  background: rgba(15, 122, 90, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.advantage-icon svg {
  width: 22px;
  height: 22px;
  color: var(--emerald-depth);
}

.advantage-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-forest);
  margin-bottom: 6px;
}

.advantage-desc {
  font-size: 0.85rem;
  color: var(--muted-stone);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--fine-divider);
  border-radius: 16px;
  padding: 28px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--champagne-gold);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--slate-green);
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--emerald-depth), var(--premium-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-forest);
}

.testimonial-meta {
  font-size: 0.8rem;
  color: var(--muted-stone);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--fine-divider);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-forest);
  text-align: left;
}

.faq-question svg {
  width: 22px;
  height: 22px;
  color: var(--emerald-depth);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: var(--muted-stone);
}

/* Final CTA */
.final-cta {
  background: var(--deep-forest);
  padding: 100px 0;
  text-align: center;
}

.final-cta-title {
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta-desc {
  color: var(--muted-stone);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-base);
}

.cta-btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.cta-btn-whatsapp:hover {
  background: #1faa52;
  transform: translateY(-2px);
}

.cta-btn-telegram {
  background: #0088cc;
  color: var(--white);
}

.cta-btn-telegram:hover {
  background: #006ba3;
  transform: translateY(-2px);
}

.cta-btn-email {
  background: var(--white);
  color: var(--deep-forest);
}

.cta-btn-email:hover {
  background: var(--soft-ivory);
  transform: translateY(-2px);
}

.cta-btn svg {
  width: 20px;
  height: 20px;
}

/* Floating Contact Stack */
.floating-contacts {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn svg {
  width: 24px;
  height: 24px;
}

.floating-whatsapp {
  background: #25D366;
  color: var(--white);
}

.floating-telegram {
  background: #0088cc;
  color: var(--white);
}

.floating-email {
  background: var(--white);
  color: var(--deep-forest);
  border: 1px solid var(--light-border);
}

/* Order Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 21, 20, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 40px;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-base);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--soft-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--fine-divider);
}

.modal-close svg {
  width: 18px;
  height: 18px;
  color: var(--slate-green);
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--muted-stone);
  margin-bottom: 32px;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--soft-ivory);
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.modal-option:hover {
  background: var(--fine-divider);
}

.modal-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-option-icon svg {
  width: 24px;
  height: 24px;
}

.modal-option-info {
  flex: 1;
}

.modal-option-label {
  font-size: 0.8rem;
  color: var(--muted-stone);
  margin-bottom: 2px;
}

.modal-option-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-forest);
}

.modal-option-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--muted-stone);
}

.modal-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted-stone);
  padding-top: 20px;
  border-top: 1px solid var(--fine-divider);
}

/* Footer */
.footer {
  background: var(--soft-ivory);
  border-top: 1px solid var(--fine-divider);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted-stone);
  margin-top: 16px;
  max-width: 280px;
}

.footer-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--deep-forest);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--slate-green);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--emerald-depth);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--fine-divider);
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--muted-stone);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--emerald-depth);
  color: var(--white);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* Service Page Styles */
.page-header {
  background: linear-gradient(180deg, var(--soft-ivory) 0%, var(--white) 100%);
  padding: 60px 0 40px;
  text-align: center;
}

.page-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.page-icon svg {
  width: 40px;
  height: 40px;
}

.page-title {
  margin-bottom: 12px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--muted-stone);
  max-width: 600px;
  margin: 0 auto;
}

/* Value Strip */
.value-strip {
  background: var(--deep-forest);
  padding: 20px 0;
}

.value-strip-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.value-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--white);
}

.value-strip-item svg {
  width: 18px;
  height: 18px;
  color: var(--emerald-depth);
}

/* Package Cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--fine-divider);
  border-radius: 16px;
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
}

.package-card:hover {
  border-color: var(--emerald-depth);
  box-shadow: var(--shadow-md);
}

.package-card.featured {
  border-color: var(--emerald-depth);
  box-shadow: var(--shadow-lg);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--emerald-depth);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
}

.package-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-forest);
  margin-bottom: 8px;
  text-align: center;
}

.package-desc {
  font-size: 0.9rem;
  color: var(--muted-stone);
  text-align: center;
  margin-bottom: 24px;
}

.package-price {
  text-align: center;
  margin-bottom: 24px;
}

.package-price-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--deep-forest);
}

.package-price-unit {
  font-size: 0.9rem;
  color: var(--muted-stone);
}

.package-features {
  margin-bottom: 28px;
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--slate-green);
  border-bottom: 1px solid var(--fine-divider);
}

.package-feature:last-child {
  border-bottom: none;
}

.package-feature svg {
  width: 18px;
  height: 18px;
  color: var(--emerald-depth);
  flex-shrink: 0;
}

.package-btn {
  width: 100%;
}

/* Related Services */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--fine-divider);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all var(--transition-base);
}

.related-card:hover {
  border-color: var(--emerald-depth);
  box-shadow: var(--shadow-sm);
}

.related-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.related-icon svg {
  width: 22px;
  height: 22px;
}

.related-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep-forest);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--fine-divider);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: var(--emerald-depth);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon svg {
  width: 32px;
  height: 32px;
}

.contact-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-forest);
  margin-bottom: 8px;
}

.contact-detail {
  font-size: 0.95rem;
  color: var(--slate-green);
  margin-bottom: 20px;
}

.contact-btn {
  width: 100%;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep-forest);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--deep-forest);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--emerald-depth);
  box-shadow: 0 0 0 3px rgba(15, 122, 90, 0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--fine-divider);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  border-color: var(--light-border);
  box-shadow: var(--shadow-md);
}

.blog-image {
  height: 180px;
  background: var(--soft-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image svg {
  width: 48px;
  height: 48px;
  color: var(--light-border);
}

.blog-content {
  padding: 24px;
}

.blog-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(15, 122, 90, 0.1);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--emerald-depth);
  margin-bottom: 12px;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-forest);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--muted-stone);
  margin-bottom: 16px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-depth);
}

.blog-link:hover {
  gap: 10px;
}

.blog-link svg {
  width: 16px;
  height: 16px;
}

/* Privacy Policy */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h3 {
  margin-bottom: 16px;
}

.privacy-section p {
  margin-bottom: 12px;
}

.privacy-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.privacy-section li {
  font-size: 0.95rem;
  color: var(--slate-green);
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-visual {
    display: none;
  }
  
  .dropdown-menu {
    min-width: 620px;
  }
  
  .dropdown-menu-services {
    min-width: min(100%, 720px);
    max-width: calc(100vw - 32px);
    padding: 16px;
  }
  
  .dropdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .dropdown-grid-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-strip {
    display: none;
  }

  .navbar-content {
    height: 64px;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .logo-icon svg {
    width: 18px;
    height: 18px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 16px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--fine-divider);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: flex;
    padding: 6px;
  }

   .nav-link,
   .dropdown-toggle,
   .btn {
    width: 100%;
   }

   .dropdown-toggle {
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
   }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: 100%;
    max-width: 100%;
    max-height: 0;
    padding: 0;
    display: block;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-base);
    border-top: 0;
    margin-top: 0;
  }
  
  .dropdown.active .dropdown-menu {
    padding: 12px 0;
    border-top: 1px solid var(--fine-divider);
    margin-top: 4px;
  }
  
  .dropdown-grid {
    grid-template-columns: 1fr;
  }
  
  .dropdown-grid-services {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .dropdown-menu-services {
    padding: 0;
  }

  .dropdown.active .dropdown-menu-services {
    padding: 12px 0;
  }
  
  .dropdown-section {
    padding: 0 0 8px;
  }

   .dropdown-item {
    padding: 12px;
   }
  
  .dropdown-section-title {
    padding: 0 12px 8px;
  }
  
  .flow-steps {
    flex-direction: column;
    gap: 32px;
  }
  
  .flow-steps::before {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .floating-contacts {
    bottom: 16px;
    left: 16px;
  }
  
  .floating-btn {
    width: 44px;
    height: 44px;
  }
  
  .floating-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .final-cta-buttons {
    flex-direction: column;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}


/* Pricing Tables & Tabs */
.pricing-tabs-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pricing-tab {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--light-border);
  background: var(--white);
  color: var(--slate-green);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.pricing-tab:hover,
.pricing-tab.active {
  background: var(--emerald-depth);
  border-color: var(--emerald-depth);
  color: var(--white);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

.pricing-panel-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}

.pricing-panel-title {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.pricing-panel-description {
  font-size: 0.95rem;
  color: var(--muted-stone);
}

.pricing-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.pricing-section .package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-section .package-price {
  text-align: center;
}

.pricing-section .package-price-unit {
  display: inline-block;
  margin-left: 4px;
}

.pricing-section .package-features {
  flex: 1;
}

.pricing-section .package-btn {
  width: 100%;
  margin-top: auto;
}

.platform-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.platform-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-height: 100%;
  padding: 28px 20px 22px;
  background: var(--white);
  border: 1px solid var(--fine-divider);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.platform-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 122, 90, 0.28);
  box-shadow: var(--shadow-md);
}

.platform-service-logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--logo-start), var(--logo-end));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 28px rgba(16, 21, 20, 0.12);
}

.platform-service-logo span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.platform-service-name {
  font-size: 1.05rem;
  line-height: 1.35;
  text-align: center;
  margin: 0;
  min-height: 2.85em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-price {
  margin: 0 0 18px;
}

.platform-price .package-price-value {
  font-size: clamp(1.55rem, 1.3vw + 1rem, 2rem);
}

.platform-price .package-price-unit {
  display: block;
  margin-top: 6px;
  font-size: 0.84rem;
}

.platform-card-actions {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}

.platform-action-btn {
  flex: 1;
  min-width: 0;
  padding: 11px 12px;
}

@media (max-width: 1100px) {
  .platform-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .platform-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

.monthly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.monthly-card {
  background: var(--white);
  border: 1px solid var(--fine-divider);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.monthly-card.featured {
  border-color: var(--emerald-depth);
  box-shadow: var(--shadow-md);
}

.monthly-duration {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(15, 122, 90, 0.08);
  color: var(--emerald-depth);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-overview-card {
  background: var(--soft-ivory);
  border: 1px solid var(--fine-divider);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.service-overview-title {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.service-overview-text {
  color: var(--slate-green);
}

.service-overview-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-overview-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate-green);
  line-height: 1.65;
}

.service-overview-item svg {
  width: 18px;
  height: 18px;
  color: var(--emerald-depth);
  flex-shrink: 0;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .pricing-tab {
    width: 100%;
    text-align: center;
  }

  .platform-service-card {
    padding: 20px 14px 16px;
    gap: 12px;
  }

  .platform-service-logo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .platform-service-name {
    font-size: 0.95rem;
    min-height: 2.7em;
  }

  .platform-price .package-price-value {
    font-size: 1.3rem;
  }

  .platform-price .package-price-unit {
    font-size: 0.78rem;
  }

  .platform-card-actions {
    gap: 8px;
  }

  .platform-action-btn {
    padding: 10px 8px;
    font-size: 0.84rem;
  }

  .service-overview-card {
    padding: 24px;
  }
}
