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

:root {
  --navy: #0f1f4b;
  --navy-mid: #1a2f6e;
  --blue-accent: #3b5bdb;
  --blue-light: #4c6ef5;
  --gray-text: #6b7280;
  --light-bg: #f0f2f8;
  --lighter-bg: #f6f8fc;
  --white: #ffffff;
  --border: #e5e7eb;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  text-decoration: none;
}
.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-icon svg { width: 100%; height: 100%; display: block; }
.logo-text span { opacity: 0.5; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}
.btn-outline:hover { background: var(--light-bg); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #e8eaf6 0%, #f0f2fb 40%, #dde4f0 100%);
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 60% 30%, rgba(100,130,255,0.12), transparent),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(150,170,255,0.08), transparent);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 36px;
  font-weight: 500;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-accent);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  max-width: 700px;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--gray-text);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn-primary-lg {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary-lg:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline-lg {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid #d1d5db;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-outline-lg:hover { border-color: var(--navy); }
.hero-tags {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-tags a, .hero-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}
.hero-tags a:hover { color: var(--blue-accent); }
.hero-tags a:not(:last-child)::after, .hero-tags span:not(:last-child)::after {
  content: '\00b7';
  margin-left: 24px;
  color: #d1d5db;
}

/* ── SECTIONS ── */
section { padding: 100px 40px; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 16px;
  text-align: center;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  color: var(--gray-text);
  text-align: center;
  max-width: 480px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* ── SERVICES ── */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(15,31,75,0.08); transform: translateY(-2px); }
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 20px; height: 20px; stroke: white; fill: none; }
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.service-card p { font-size: 14px; color: var(--gray-text); line-height: 1.6; }

/* ── TEMPLATES ── */
#templates { background: var(--lighter-bg); }
.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.template-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.template-card:hover { box-shadow: 0 10px 40px rgba(15,31,75,0.1); transform: translateY(-3px); }
.template-preview {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}
.tp-iframe-wrap {
  width: 200%;
  height: 200%;
  transform: scale(0.5);
  transform-origin: top left;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.tp-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}
.template-preview-link { display: block; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.template-preview-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.template-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f0f4f8 25%, #e2e8f0 50%, #f0f4f8 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
  z-index: 1;
  transition: opacity 0.3s;
}
.template-preview.loaded::before { opacity: 0; pointer-events: none; }
@keyframes skeleton-pulse { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.preview-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
}
.preview-mockup {
  width: 80%;
  height: 130px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

/* ── TEMPLATE MOCKUPS ── */
.tp-mockup {
  width: 82%;
  height: 140px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tpm-bar {
  height: 10px;
  background: rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 5px;
}
.tpm-bar span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}
.tpm-nav {
  height: 14px;
  padding: 2px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tpm-logo-s {
  width: 16px;
  height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}
.tpm-links {
  display: flex;
  gap: 4px;
}
.tpm-links span {
  width: 10px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 1px;
}
.tpm-hero-s {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
}
.tpm-badge-s {
  width: 30px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}
.tpm-h1-s {
  width: 70%;
  height: 5px;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
}
.tpm-sub-s {
  width: 55%;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}
.tpm-btns-s {
  display: flex;
  gap: 4px;
  margin-top: 3px;
}
.tpm-btns-s span {
  width: 22px;
  height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,0.35);
}
.tpm-btns-s span:first-child {
  background: rgba(255,255,255,0.55);
}
.tpm-btn-single {
  width: 28px;
  height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.tpm-split {
  flex: 1;
  display: flex;
  gap: 6px;
  padding: 8px;
}
.tpm-split-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.tpm-split-img {
  width: 40%;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}
.tpm-cols-3 {
  display: flex;
  gap: 4px;
  padding: 4px 8px;
}
.tpm-cols-3 span {
  flex: 1;
  height: 18px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}
.tpm-fullimg {
  height: 35%;
  margin: 4px 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}
.tpm-gallery-row {
  display: flex;
  gap: 4px;
  padding: 0 8px 6px;
  flex: 1;
}
.tpm-gallery-row span {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}
.tpm-menu-rows {
  padding: 4px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tpm-menu-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tpm-mi-name {
  width: 30%;
  height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 1px;
}
.tpm-mi-dots {
  flex: 1;
  height: 0;
  border-bottom: 1px dotted rgba(255,255,255,0.2);
}
.tpm-mi-price {
  width: 14px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 1px;
}
.tpm-search-bar {
  height: 10px;
  margin: 6px 8px 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.12);
}
.tpm-listings {
  display: flex;
  gap: 4px;
  padding: 0 8px 4px;
}
.tpm-listings span {
  flex: 1;
  height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.template-info { padding: 22px 24px; }
.template-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.template-info h3 { font-size: 18px; font-weight: 700; color: var(--navy); }
.use-link {
  font-size: 14px;
  color: var(--blue-accent);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.use-link:hover { text-decoration: underline; }
.template-info p { font-size: 13px; color: var(--gray-text); line-height: 1.5; }

/* ── PRICING ── */
#pricing { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
}
.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1050px;
}
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 36px 30px;
  background: var(--white);
}
.pricing-card.featured {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  position: relative;
  padding-top: 50px;
}
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #1c1917;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.plan-name { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.plan-price {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price span { font-size: 16px; font-weight: 400; color: inherit; opacity: 0.6; }
.plan-price-custom { font-size: 36px; letter-spacing: -1px; }
.plan-desc { font-size: 13px; margin-bottom: 28px; opacity: 0.65; }
.plan-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: inherit;
}
.plan-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(59,91,219,0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%233b5bdb' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}
.pricing-card.featured .plan-features li::before {
  background-color: rgba(255,255,255,0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.plan-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.plan-btn-dark { background: var(--navy); color: white; }
.plan-btn-dark:hover { background: var(--navy-mid); }
.plan-btn-white { background: white; color: var(--navy); }
.plan-btn-white:hover { background: #f0f0f0; }

/* ── PORTFOLIO ── */
#portfolio { background: var(--lighter-bg); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.portfolio-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.portfolio-card:hover { box-shadow: 0 10px 40px rgba(15,31,75,0.1); transform: translateY(-3px); }
.portfolio-preview {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pp-1 { background: linear-gradient(135deg, #0f1f4b 0%, #1a2f6e 100%); }
.pp-2 { background: linear-gradient(135deg, #0d9488 0%, #065f46 100%); }
.pp-3 { background: linear-gradient(135deg, #374151 0%, #1f2937 100%); }
.pp-4 { background: linear-gradient(135deg, #ea580c 0%, #9a3412 100%); }
.port-inner {
  width: 75%;
  height: 150px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
}
.portfolio-info {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portfolio-info h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.portfolio-info p { font-size: 13px; color: var(--blue-accent); font-weight: 500; }
.arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lighter-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.arrow-btn:hover { background: var(--light-bg); }

/* ── FAQ ── */
#faq { background: var(--lighter-bg); }
.faq-list {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--border);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: background 0.15s;
  font-family: inherit;
}
.faq-q:hover { background: var(--lighter-bg); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lighter-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--navy);
  transition: transform 0.2s;
}
.faq-a {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-a.open {
  max-height: 200px;
  padding: 0 28px 20px;
}
.faq-a p { font-size: 14px; color: var(--gray-text); line-height: 1.7; }

/* ── CONTACT ── */
#contact { background: var(--white); }
.contact-box {
  max-width: 940px;
  margin: 0 auto;
  border: 2px solid var(--navy);
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-left h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.contact-left h2 em { font-style: normal; color: var(--blue-accent); }
.contact-left p { font-size: 14px; color: var(--gray-text); line-height: 1.7; margin-bottom: 28px; }
.contact-meta { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--navy);
}
.meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lighter-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.meta-icon svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1ebe5a; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; display: block; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--navy);
  background: var(--lighter-bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(59,91,219,0.1);
  background: white;
}
.form-input::placeholder, .form-textarea::placeholder { color: #9ca3af; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }
.btn-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
}
.btn-send:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ── CONTACT LINK ── */
.contact-link {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--blue-accent); }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 40px;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover { box-shadow: 0 8px 32px rgba(15,31,75,0.08); transform: translateY(-2px); }
.review-stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--navy); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.review-author strong { font-size: 14px; color: var(--navy); display: block; }
.review-author span { font-size: 12px; color: var(--gray-text); }
/*.trustpilot-cta { text-align: center; }
.trustpilot-cta p { font-size: 14px; color: var(--gray-text); margin-bottom: 16px; }
.trustpilot-btn { display: inline-flex; align-items: center; gap: 8px; } */

/* ── PORTFOLIO LINK ── */
a.portfolio-card { text-decoration: none; color: inherit; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PRIVACY PAGE ── */
.privacy-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.privacy-page h1 { font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.privacy-updated { font-size: 13px; color: var(--gray-text); margin-bottom: 40px; }
.privacy-page h2 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.privacy-page h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin: 16px 0 8px; }
.privacy-page p { font-size: 15px; color: #374151; line-height: 1.7; margin-bottom: 12px; }
.privacy-page ul { margin: 0 0 16px 20px; }
.privacy-page li { font-size: 15px; color: #374151; line-height: 1.7; margin-bottom: 6px; }
.privacy-page a { color: var(--blue-accent); }
.privacy-back { margin-top: 48px; text-align: center; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .logo { color: white; }
footer p { font-size: 13px; }
.footer-right { text-align: right; }
.footer-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer-link:hover { color: white; }

/* ── THEME TOGGLE ── */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
  color: var(--navy);
}
.theme-toggle:hover { background: var(--lighter-bg); }
.theme-toggle svg { width: 18px; height: 18px; }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

/* ── DARK MODE ── */
html[data-theme="dark"] {
  --blue-accent: #6b8cff;
  --blue-light: #7c9bff;
  --gray-text: #94a3b8;
  --lighter-bg: #111720;
  --light-bg: #161d2a;
  --border: #2a3344;
  color-scheme: dark;
}
[data-theme="dark"] body { background: #0d1117; color: #c9d1d9; }
[data-theme="dark"] nav { background: rgba(13,17,23,0.95); }
[data-theme="dark"] .logo { color: #e2e8f0; }
[data-theme="dark"] .nav-links a { color: #c9d1d9; }
[data-theme="dark"] .theme-toggle { color: #c9d1d9; }
[data-theme="dark"] .hero { background: linear-gradient(135deg, #0d1117 0%, #131a26 40%, #162032 100%); }
[data-theme="dark"] .hero::before { background: radial-gradient(ellipse 70% 50% at 60% 30%, rgba(107,140,255,0.06), transparent), radial-gradient(ellipse 50% 40% at 20% 80%, rgba(107,140,255,0.04), transparent); }
[data-theme="dark"] .hero-badge { background: #161d2a; color: #c9d1d9; }
[data-theme="dark"] .hero h1 { color: #e2e8f0; }
[data-theme="dark"] .hero-tags a, [data-theme="dark"] .hero-tags span { color: #64748b; }
[data-theme="dark"] .hero-tags a::after, [data-theme="dark"] .hero-tags span::after { color: #475569; }
[data-theme="dark"] .hero-tags a:hover { color: var(--blue-accent); }
[data-theme="dark"] .btn-outline-lg { background: #161d2a; color: #c9d1d9; border-color: #2a3344; }
[data-theme="dark"] .section-title { color: #e2e8f0; }
[data-theme="dark"] .service-card,
[data-theme="dark"] .template-card,
[data-theme="dark"] .pricing-card:not(.featured),
[data-theme="dark"] .portfolio-card,
[data-theme="dark"] .review-card { background: #161d2a; }
[data-theme="dark"] .service-card h3,
[data-theme="dark"] .template-info h3,
[data-theme="dark"] .portfolio-info h3 { color: #e2e8f0; }
[data-theme="dark"] .template-preview { background: #1a2230; }
[data-theme="dark"] .template-preview::before { background: linear-gradient(90deg, #1a2230 25%, #243040 50%, #1a2230 75%); background-size: 200% 100%; }
[data-theme="dark"] .logo-icon { opacity: 0.95; }
[data-theme="dark"] .service-icon { background: var(--blue-accent); }
[data-theme="dark"] .review-avatar { background: var(--blue-accent); }
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .btn-primary-lg { background: var(--blue-accent); color: #0d1117; }
[data-theme="dark"] .btn-primary:hover,
[data-theme="dark"] .btn-primary-lg:hover { background: var(--blue-light); }
[data-theme="dark"] .btn-send { background: var(--blue-accent); color: #0d1117; }
[data-theme="dark"] .btn-send:hover { background: var(--blue-light); }
[data-theme="dark"] .plan-btn-dark { background: var(--blue-accent); color: #0d1117; }
[data-theme="dark"] .plan-btn-dark:hover { background: var(--blue-light); }
[data-theme="dark"] .pricing-card.featured { background: #1a2f6e; border-color: #1a2f6e; }
[data-theme="dark"] .plan-btn-white { background: rgba(255,255,255,0.1); color: #e2e8f0; }
[data-theme="dark"] .plan-btn-white:hover { background: rgba(255,255,255,0.15); }
[data-theme="dark"] .review-text { color: #c9d1d9; }
[data-theme="dark"] .review-author strong { color: #e2e8f0; }
[data-theme="dark"] .faq-list { background: #161d2a; }
[data-theme="dark"] .faq-q { color: #e2e8f0; }
[data-theme="dark"] .faq-q:hover { background: #1a2230; }
[data-theme="dark"] .faq-icon { background: #1a2230; color: #c9d1d9; }
[data-theme="dark"] .contact-box { border-color: #2a3344; }
[data-theme="dark"] .contact-left h2 { color: #e2e8f0; }
[data-theme="dark"] .contact-meta-item { color: #c9d1d9; }
[data-theme="dark"] .meta-icon { background: #1a2230; }
[data-theme="dark"] .meta-icon svg { stroke: #c9d1d9; }
[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea { background-color: #1a2230; color: #c9d1d9; }
[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] .form-textarea:focus { background-color: #161d2a; }
[data-theme="dark"] .form-input::placeholder,
[data-theme="dark"] .form-textarea::placeholder { color: #64748b; }
[data-theme="dark"] .form-label { color: #c9d1d9; }
[data-theme="dark"] .contact-link { color: #c9d1d9; }
[data-theme="dark"] .arrow-btn { background: #1a2230; }
[data-theme="dark"] .hamburger span { background: #e2e8f0; }
[data-theme="dark"] .privacy-page p,
[data-theme="dark"] .privacy-page li { color: #c9d1d9; }
[data-theme="dark"] .privacy-page h1,
[data-theme="dark"] .privacy-page h2,
[data-theme="dark"] .privacy-page h3 { color: #e2e8f0; }
[data-theme="dark"] footer { background: #080b10; }
[data-theme="dark"] .btn-outline { border-color: #c9d1d9; color: #c9d1d9; }
[data-theme="dark"] .btn-outline:hover { background: #1a2230; }
[data-theme="dark"] .form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
@media (max-width: 620px) {
  [data-theme="dark"] .nav-links { background: #0d1117; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid, .templates-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid-2 { grid-template-columns: 1fr 1fr; }
  .pricing-grid-3 { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-box { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  nav { padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { font-size: 16px; opacity: 1; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 64px 20px; }
  .hero { padding: 60px 20px 50px; }
  .services-grid, .templates-grid, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid-2 { grid-template-columns: 1fr; }
  .pricing-grid-3 { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-box { padding: 28px 22px; }
  .footer-right { text-align: left; margin-top: 16px; }
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  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: rgba(255,255,255,0.85);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 200;
  font-size: 14px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { flex: 1; margin: 0; line-height: 1.5; }
.cookie-banner a { color: #93b4ff; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept, .cookie-decline {
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  border: none;
}
.cookie-accept { background: white; color: var(--navy); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
  z-index: 90;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-2px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ── FORM VALIDATION ── */
.input-error { border-color: #e53e3e !important; box-shadow: 0 0 0 2px rgba(229, 62, 62, 0.15) !important; }
.form-error { color: #e53e3e; font-size: 12px; margin-top: 4px; display: block; }
.form-success { display: flex; align-items: center; gap: 10px; padding: 16px 20px; background: #f0fff4; border: 1px solid #38a169; border-radius: 12px; color: #22543d; font-weight: 500; margin-top: 12px; }
.form-success svg { color: #38a169; flex-shrink: 0; }
.form-error-global { padding: 12px 16px; background: #fff5f5; border: 1px solid #e53e3e; border-radius: 12px; color: #c53030; font-size: 14px; margin-top: 12px; }
.hidden { display: none !important; }
[data-theme="dark"] .form-success { background: #1a332a; border-color: #38a169; color: #9ae6b4; }
[data-theme="dark"] .form-error-global { background: #332020; border-color: #e53e3e; color: #feb2b2; }

/* ── ACTIVE NAV ── */
.nav-links a.active { opacity: 1; color: var(--blue-accent); }

/* ── SECTOR PAGES ── */
.sector-hero {
  text-align: center;
  padding: 100px 40px 60px;
  max-width: 800px;
  margin: 0 auto;
}
.sector-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.sector-hero h1 em { color: var(--blue-accent); font-style: normal; }
.sector-features {
  max-width: 600px;
  margin: 0 auto;
}
.sector-features .plan-features { font-size: 16px; }
.sector-preview {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

/* ── 404 PAGE ── */
.notfound-page {
  text-align: center;
  padding: 120px 40px;
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.notfound-page h1 {
  font-size: 120px;
  font-weight: 900;
  color: var(--blue-accent);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -4px;
}
.nf-title { font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.nf-desc { font-size: 16px; color: var(--gray-text); margin-bottom: 32px; }

/* Dark mode — new features */
[data-theme="dark"] .cookie-banner { background: #161d2a; border-top: 1px solid #2a3344; }
[data-theme="dark"] .cookie-accept { background: var(--blue-accent); color: #0d1117; }
[data-theme="dark"] .back-to-top { background: var(--blue-accent); color: #0d1117; }
[data-theme="dark"] .nf-title { color: #e2e8f0; }

@media (max-width: 620px) {
  .cookie-banner { flex-direction: column; padding: 16px 20px; text-align: center; }
  .cookie-btns { width: 100%; justify-content: center; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
  .notfound-page h1 { font-size: 80px; }
}
