/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: "Manrope", sans-serif;
  background: #0B0F0E;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* SECTIONS */
section {
  padding: 120px 0;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0B0F0E;
  background-image:
    radial-gradient(circle at 0% 99%, rgba(34,197,94,0.35) 0%, transparent 67%),
    radial-gradient(circle at 46% 94%, rgba(22,163,74,0.35) 0%, transparent 81%),
    radial-gradient(circle at 93% 95%, rgba(15,26,20,0.9) 0%, transparent 66%),
    radial-gradient(circle at 89% 8%, rgba(11,15,14,1) 0%, transparent 150%);
  background-blend-mode: normal;
  background-size: 120% 120%;
  animation: gradientFloat 20s ease-in-out infinite;
}
@keyframes gradientFloat {
  0% { background-position: 50% 50%; }
  25% { background-position: 55% 45%; }
  50% { background-position: 50% 55%; }
  75% { background-position: 45% 50%; }
  100% { background-position: 50% 50%; }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.hero-text {
  text-align: left;
  max-width: 520px;
}
.hero-text .hero-cta {
  justify-content: flex-start;
}
.hero-text p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  opacity: 0.92;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* HERO RESPONSIVE */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  text-align: left; 
}

/* Hero text container */
.hero-text {
  max-width: 520px;
}

/* Heading */
.hero-text h1 {
  margin-bottom: 24px;
  font-size: clamp(32px, 5vw, 56px); 
  line-height: 1.1;
}

/* Paragraph */
.hero-text p {
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.6;
  max-width: 48ch;
  margin-bottom: 16px;
}

/* Subtext */
.hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  margin-top: 16px;
}

/* CTA buttons */
.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* iPad Air/Pro portrait & landscape */
@media (min-width: 820px) and (max-width: 1024px) {
  .hero-visual {
    margin-top: 48px; 
  }
}
/* MOBILE / TABLET STACKING */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center; 
  }

  .hero-text {
    text-align: center;
    margin: 0 auto;
  }

  .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    min-width: 100%;
  }

  .hero-inner {
    gap: 16px;
  }

  .hero-sub {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
    .hero-text p {
    max-width: 100%;
  }
    .hero-cta {
    justify-content: center;
  }
  .hero-text {
    text-align: center;
  }
    .hero-text .hero-cta {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 24px;
  }
}

/* TYPOGRAPHY */
h1 {
  font-family: "Unbounded", sans-serif;
  font-size: 60px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
p {
  font-size: 16px;
  line-height: 1.6;
  color: #A1A1AA;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  margin: 0 0 16px;
}
.section-header p {
  margin: 4px 0 32px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #22C55E;
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
.hero-cta {  justify-content: center !important;   }
}

/* CTA */
.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-cta a {
  width: auto;
  min-width: 180px;
  text-align: center;
}

/* BUTTONS */
.btn-primary {
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid #4ade80;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  color: #fff; 
  box-shadow: 0 4px 12px rgba(34,197,94,0.35);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 16px rgba(34,197,94,0.45);
  animation: pulseGlow 0.8s ease forwards;
}

@keyframes pulseGlow {
  0%   { box-shadow: 0 0 0 rgba(34,197,94,0.3); }
  50%  { box-shadow: 0 0 8px rgba(34,197,94,0.45); }
  100% { box-shadow: 0 0 0 rgba(34,197,94,0); }
}

.btn-secondary {
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-secondary:hover { border-color: #22C55E; }

/* HEADER STYLES */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  width: 100%;
  background: rgba(11,15,14,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #22C55E;
  text-decoration: none;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 9999;
}
.site-nav a {
  text-decoration: none;
  font-weight: 400;
  color: #ffffff;
  transition: color 0.2s ease;
  font-size: 14px;
}
.site-nav a:hover { color: #22C55E; }
.header-btn {
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #16A34A, #22C55E);
  border: 1px solid #4ADE80;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.header-btn:hover {
 color: #fff !important;
  transform: scale(1.04);
  box-shadow: 0 8px 16px rgba(34,197,94,0.45);
  animation: pulseGlow 0.8s ease forwards;
}
/* Small pill for language switcher */
.header-btn.lang-switch {
  padding: 6px 14px;      
  font-size: 12px;
  border-radius: 999px; 
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05); 
  color: #fff !important;  
  text-decoration: none;
  transition: all 0.2s ease;
}

.header-btn.lang-switch:hover {
  background: rgba(34,197,94,0.15); 
  box-shadow: 0 4px 12px rgba(34,197,94,0.25);
  transform: scale(1.05);
  color: #fff !important;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* SECTIONS COLORS */
.problem-solution { 
  background: #0F1412;  
  padding: 120px 0; 
}
.summary, 
.packages, 
.consultation,
.credibility, 
.testimonials, 
.final-cta {
  padding: 120px 0;
}
.summary, .packages, .consultation { background: #0B0F0E; }
.credibility, .testimonials, .final-cta { background: #0F1412; text-align: center; }
.final-cta .container { max-width: 700px; }

/* Accent color */
.accent { color: #22C55E; }

/* PROBLEM-SOLUTION GRID */
.ps-redesign .ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.ps-redesign .outcome h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}

@media (max-width: 480px) {
  .ps-redesign .outcome h1 {
    font-size: clamp(24px, 6vw, 34px);
  }
}

@media (min-width: 481px) and (max-width: 820px) {
  .ps-redesign .outcome h1 {
    font-size: clamp(28px, 5.5vw, 44px);
  }
}

.ps-redesign .problems .problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.ps-redesign {
  padding: 0 24px;
}

@media (max-width: 768px) {
  .ps-redesign {
    padding: 0 20px 80px;
  }
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body > *:not(.site-footer, .site-header) {
  flex: 1;
}

.icon-box {
  min-width: 48px;
  min-height: 48px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lucide-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  color: #A1A1AA;
}
.problem-item.solution .icon-box { background: rgba(34,197,94,0.15); }
.problem-item.solution .lucide-icon { color: #22C55E; }
.problem-item .text h3 {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}
.problem-item .text p { font-size: 14px; color: #A1A1AA; }
.problem-item.solution .text h3,
.problem-item.solution .text p { color: #22C55E; }

/* GRIDS & CARDS */
.ps-grid, .summary-grid, .package-grid, .testimonial-grid {
  display: grid;
  gap: 24px;
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-content: center;
}
.package-grid { grid-template-columns: repeat(3,1fr); }
.testimonial-grid { grid-template-columns: repeat(3,1fr); }
.credibility-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; }

.ps-card, .summary-card, .package-card, .credibility-card {
  transition: all 0.2s ease;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}
.ps-card { display:flex; align-items:center; gap:12px; padding:18px; margin-bottom:12px; background:#111715; }
.ps-card.solution span { color:#22C55E; }
.ps-card:hover { border-color: rgba(34,197,94,0.4); transform: translateY(-2px); }

.summary-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  gap: 16px;
  background: #111715;
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

/* SAME hover as pricing cards */
.summary-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.4);
}

.summary-card h3 { 
  font-family: "Unbounded"; 
  font-size: 22px; 
}

.summary-card .card-title { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 8px; 
}

.summary-card .icon-box { 
  background: rgba(255,255,255,0.05); 
}

.summary-card .lucide-icon { 
  color: #22C55E; 
}

.summary-card .desc { 
  font-size: 14px; 
  color: #A1A1AA; 
  margin-bottom: 12px; 
}

.summary-card .feature-list { 
  list-style-type: disc; 
  margin-left: 24px; 
  margin-bottom: 0;
}

.summary-card .feature-list li { 
  font-size: 14px; 
  color: #ffffff; 
  margin-bottom: 8px; 
}

/* THIS FIXES YOUR ALIGNMENT ISSUE */
.summary-card .card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* PRICE */
.summary-card .price { 
  font-weight: 500; 
  color: #22C55E; 
}

/* FOOTNOTE */
.summary-card .footnote { 
  font-size: 12px; 
  color: #A1A1AA; 
  margin-top: 6px;
}

/* HIGHLIGHT CARD */
.summary-card.highlight { 
  border: 1px solid rgba(34,197,94,0.4); 
  background: linear-gradient(180deg, rgba(34,197,94,0.08), transparent); 
}

/* MOST POPULAR */
.summary-card .pill {
  display: inline-block;
  width: fit-content;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(34,197,94,0.15);
  color: #22C55E;
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
}

/* Credibility Section */
.credibility-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 40px;
  align-items: center;
}

/* Left column text */
.credibility-text {
  text-align: left;
}
.section-title {
  margin: 0 0 32px;
}

@media (max-width: 768px) {
  .section-title {
    margin: 0 0 24px;
  }
}

.credibility-body p {
  margin-bottom: 16px;
  color: #A1A1AA;
  font-size: 16px;
  line-height: 1.6;
}
.credibility-body p.highlight {
  color: #ffffff;
  font-weight: 500;
  margin-top: 16px;
}

.credibility-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Individual card */
.cred-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100px;
  height: 140px;
}

.cred-card .outer-box {
  width: 100px;
  height: 100px;
  position: relative;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* bottom-left corner accent */
.cred-card .outer-box::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at bottom left,
    rgba(34,197,94,0.5) 0%,
    rgba(34,197,94,0.2) 30%,
    transparent 65%
  );
  filter: blur(20px);
  opacity: 0.7;
}

/* top-right corner accent */
.cred-card .outer-box::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right,
    rgba(34,197,94,0.5) 0%,
    rgba(34,197,94,0.2) 30%,
    transparent 65%
  );
  filter: blur(20px);
  opacity: 0.7;
}

.cred-card .inner-box {
  width: 82px;
  height: 82px;
  background: rgba(11,15,14,0.75);
  backdrop-filter: blur(6px); 
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.04);
}

.cred-card .inner-box .lucide-icon {
  width: 38px;
  height: 38px;
  stroke-width: 2.5;
  color: #22C55E;
}

/* Caption */
.cred-card .caption {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: #22C55E;
  text-align: center;
}
.ps-redesign .outcome h1 {
  font-size: clamp(30px, 4vw, 48px);
}
/* Responsive adjustments */
@media (max-width: 1024px) {
  .credibility-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .credibility-cards {
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 768px) {

  .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .cred-card {
    width: 90px;
    margin-bottom: 16px;
  }
  .cred-card .outer-box {
    width: 90px;
    height: 90px;
  }
  .cred-card .inner-box {
    width: 74px;
    height: 74px;
  }
  .cred-card .inner-box .lucide-icon {
    width: 34px;
    height: 34px;
  }
  .cred-card .caption {
    font-size: 11px;
    line-height: 1.4;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .credibility-cards {
    display: grid;
    grid-template-columns: repeat(2, 100px);
    justify-content: center;
    gap: 16px 12px;
  }

  .cred-card {
    width: 100px;
  }
}

.package-card { 
  padding: 32px; 
  text-align: center; 
  background: #111715; 
  display: flex; 
  flex-direction: column; 
  height: 100%; 
}

.package-card h3 { 
  font-family: "Unbounded"; 
  font-size: 20px; 
  margin-bottom: 10px; 
}

.package-card p { 
  font-size: 14px; 
}

.package-card .price { 
  display: block; 
  margin: 20px 0 12px; 
  font-size: 20px; 
  color: #22C55E; 
}

.package-card .btn-primary,
.package-card .btn-secondary { 
  margin-top: auto; 
}

.package-card.highlight { 
  border: 1px solid rgba(34,197,94,0.4); 
  background: linear-gradient(180deg, rgba(34,197,94,0.08), transparent); 
}

.package-card:hover { 
  transform: translateY(-6px); 
  border-color: rgba(34,197,94,0.4); 
}

.package-card h3 { font-family:"Unbounded"; font-size:20px; margin-bottom:10px; }
.package-card p { font-size:14px; }
.package-card .price { display:block; margin:20px 0; font-size:20px; color:#22C55E; }
.package-card.highlight { border:1px solid rgba(34,197,94,0.4); background: linear-gradient(180deg, rgba(34,197,94,0.08), transparent); }
.package-card:hover { transform: translateY(-6px); border-color: rgba(34,197,94,0.4); }

.credibility-card { padding:30px; background:#111715; }
.stat h3 { font-family:"Unbounded"; font-size:32px; color:#22C55E; }
.stat p { font-size:14px; }

/* TABS */
.tabs { display:flex; justify-content:center; gap:12px; margin-bottom:50px; background:#111715; padding:6px; border-radius:999px; width:fit-content; margin:0 auto 50px auto; }
.tab {
  padding:10px 22px; border-radius:999px; background:transparent; border:none; color:#A1A1AA; font-size:14px; font-weight:500; transition:all 0.2s ease;
}
.tab.active { background: linear-gradient(90deg, #16a34a, #22c55e);
  color: #fff; }
.tab:hover { color:#fff; }
.tab-content { display:none; }
.tab-content.active { display:block; }


/* CONSULT FORM */
.consult-form { margin-top:30px; display:flex; gap:12px; justify-content:center; }
.consult-form input { padding:14px; border-radius:10px; border:none; background:#111715; color:#fff; }

/* HAMBURGER */
.menu-toggle { display:none; flex-direction:column; gap:4px; cursor:pointer; }
.menu-toggle span { width:24px; height:2px; background:#fff; display:block; }

/* REVEAL ANIMATIONS */
.reveal > * { opacity:0; transform:translateY(30px); transition: all 0.6s ease; }
.reveal.active > * { opacity:1; transform:translateY(0); }
.reveal.active > *:nth-child(1) { transition-delay:0.1s; }
.reveal.active > *:nth-child(2) { transition-delay:0.2s; }
.reveal.active > *:nth-child(3) { transition-delay:0.3s; }

.testimonial-cta {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 24px;
  text-align: center;
}

/* Grid layout */
.container.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Form card */
.consultation-form-card {
  background: #111715;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
}

/* Form fields */
.consult-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 14px;
  color: #A1A1AA;
}

/* Inputs and textarea */
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0B0F0E;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
}

/* Focus highlight */
.field input:focus,
.field textarea:focus {
  border-color: #22C55E;
}

/* Status message */
.status {
  font-size: 13px;
  color: #A1A1AA;
  margin-top: 4px;
}

/* Responsive */
@media(max-width:1024px) {
  .container.grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.consultation .section-title {
  margin-bottom: 48px;
}

.consultation .cap-intro {
  margin-top: 0;
}
@media (max-width: 768px) {
  .final-cta h2, .testimonial-cta h2 { font-size: 28px; }
  .final-cta p, .testimonial-cta p { font-size: 15px; margin-bottom: 24px; }
  .final-cta .cta-buttons, .testimonial-cta .cta-buttons { gap: 12px; flex-direction: column; }
  .final-cta .btn-primary, .final-cta .btn-secondary,
  .testimonial-cta .btn-primary, .testimonial-cta .btn-secondary {
    width: 100%;
    max-width: 240px;
  }
}
@media (max-width: 1024px) {
  h1 { font-size:48px; }
  h2 { font-size:40px; }
    .menu-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  .hero { animation: gradientFloat 40s ease-in-out infinite; }
  .ps-redesign .ps-grid, .summary-grid, .package-grid, .testimonial-grid { grid-template-columns:1fr; }
  .section-header { margin-bottom:40px; }
  .summary-card { padding:22px; }
  .credibility-inner { grid-template-columns:1fr; }
  .consult-form { flex-direction:column; }
  .menu-toggle { display:flex; }
  .ps-redesign .outcome { margin-bottom: 40px; }
}

@media (max-width: 640px) {
  section { padding:80px 20px; }
  h1 { font-size:34px; line-height:1.1; }
  h2 { font-size:32px; }
  .hero-sub { font-size:16px; }
   .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta a {
  width: 230px;
}
  .header-btn { padding:8px 18px; font-size:12px; }
}

@media (max-width: 1024px) {
  .site-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    background: rgba(11,15,14,0.95);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.25s ease;
  }

  .site-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #111715;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px); 
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 9999;
  max-width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.cookie-notice p {
  font-size: 13px;
  color: #A1A1AA;
  margin: 0;
    flex: 1;
  margin-right: 10px;
}
.cookie-notice button {
  font-family: "Manrope", sans-serif;
}
.cookie-notice button {
  background: linear-gradient(90deg, #16A34A, #22C55E);
  border: 1px solid #4ade80;;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .cookie-notice {
    left: 20px;
    right: 20px;
    transform: none;
    max-width: none;
    width: auto;

    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 12px;
  }

  .cookie-notice p {
    font-size: 12px;
    line-height: 1.4;
  }
}
.site-footer {
  background: #0F1412;
  color: #A1A1AA;
  font-family: "Manrope", sans-serif;
  padding: 80px 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left, .footer-middle, .footer-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand {
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #22C55E;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: #A1A1AA;
  text-decoration: none; 
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: #22C55E; 
}

.footer-legal {
  display: flex;
  gap: 16px;
  font-size: 12px;
  margin-top: 16px;
}

.footer-legal a {
  color: #A1A1AA;
  text-decoration: none; 
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #22C55E; 
}
.footer-section-title {
  font-weight: 600;
  color: #ffffff;
  margin-top: 12px;
}
.footer-right .footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 24px;
}
.footer-right nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-right a {
  color: #A1A1AA;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-right a:hover {
  color: #22C55E;
}
.footer-middle a {
  color: #A1A1AA;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-middle a:hover {
  color: #22C55E;
}
.footer-note {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: #6B7280;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-left, .footer-middle, .footer-right {
    align-items: center;
  }
  .footer-legal {
    justify-content: center;
  }
  .footer-right .footer-links-grid {
    grid-template-columns: 1fr;
  }
}
.footer-middle p,
.footer-middle a,
.footer-left p {
  font-size: 14px; 
  line-height: 1.5;
  color: #A1A1AA;   
}
.footer-middle p a {
  font-size: 14px;   
}
.summary-card p,
.package-card p {
  font-size: 14px;
  color: #A1A1AA;
  margin-bottom: 12px;
}
.summary-card a.btn-primary,
.summary-card a.btn-secondary,
.package-card a.btn-primary,
.package-card a.btn-secondary {
  margin-top: auto;
}
.testimonial-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.02) 0%,
    rgba(255,255,255,0.00) 40%
  ), #111715;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.25s ease;
}
.testimonial-card::before,
.testimonial-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 80px;
  z-index: 0;
  pointer-events: none;
  filter: blur(20px); 
  opacity: 0.65;     
}
.testimonial-card::before {
  bottom: -20px;
  left: -80px;
  background: linear-gradient(
    60deg,
    rgba(34,197,94,0.35),
    rgba(34,197,94,0.12),
    transparent 75%
  );
}
.testimonial-card::after {
  bottom: -20px;
  right: -80px;
  background: linear-gradient(
    -60deg,
    rgba(34,197,94,0.35),
    rgba(34,197,94,0.12),
    transparent 75%
  );
}
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #A1A1AA;
  margin-bottom: 12px;
}
.testimonial-quote {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.5;
  flex: 1;
}
.testimonial-header .stars {
  color: #22C55E;
  font-size: 14px;
}
.testimonial-name {
  color: #A1A1AA;
  font-weight: 600;
  margin-top: 8px;
  font-size: 14px;
}
.testimonial-cta .btn-secondary {
  margin: 0 auto;
  display: inline-block;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 999px;
}

.tcarousel__btn {
  width: 20px;
  height: 20px;
  color: #22C55E;
}
#consultation h2 {
  margin-bottom: 24px;
}
#consultation p {
  margin-top: 12px;
}
.consult-form .btn-primary {
  font-family: "Manrope", sans-serif;
}

@media(max-width:768px) {
  #consultation .container.grid-2 {
    padding: 0; 
    gap: 24px;     
  }
}

.footer-stripe {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 8px;
  margin-top: 8px;
  opacity: 1;
}

.footer-stripe span {
  font-size: 12px;
  color: #A1A1AA;
}

.footer-stripe img {
  width: 50px;
  height: auto;
}

@media (max-width: 1024px) {
  .footer-right {
    display: none;
  }
}

.privacy-policy-section,
.terms-section {
  padding: 100px 20px 60px;
  color: #D4D4D8;
  line-height: 1.65;
  font-size: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.privacy-policy-section h1,
.privacy-policy-section h2,
.privacy-policy-section h3,
.privacy-policy-section h4,
.privacy-policy-section h5,
.privacy-policy-section h6,
.terms-section h1,
.terms-section h2,
.terms-section h3,
.terms-section h4,
.terms-section h5,
.terms-section h6 {
  font-family: "Unbounded", sans-serif;
  color: #ffffff;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  line-height: 1.25;
}

.privacy-policy-section h1,
.terms-section h1 { font-size: 36px; }
.privacy-policy-section h2,
.terms-section h2 { font-size: 28px; }
.privacy-policy-section h3,
.terms-section h3 { font-size: 22px; }

.privacy-policy-section p,
.terms-section p {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #A1A1AA;
  margin-bottom: 1em;
}

.privacy-policy-section ul,
.privacy-policy-section ol,
.terms-section ul,
.terms-section ol {
  margin: 0 0 1.2em 1.6em;
  padding: 0;
}

.privacy-policy-section li,
.terms-section li {
  margin-bottom: 0.75em;
}

.privacy-policy-section a,
.terms-section a {
  color: #22C55E; 
  text-decoration: underline;
}

.privacy-policy-section a:hover,
.terms-section a:hover {
  color: #16A34A;
  text-decoration: none;
}

.privacy-policy-section::before,
.terms-section::before {
  content: "";
  display: block;
  height: 60px;
}

.tcarousel__head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.tcarousel__controls {
  display: flex;
  gap: 10px;
}

.tcarousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111715;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tcarousel__viewport {
  overflow: hidden;
}

.tcarousel__track {
  display: flex;
  transition: transform 0.4s ease;
}

.tcarousel__track > * {
  flex: 0 0 100%;
}
.testimonial-title {
  font-family: "Unbounded", sans-serif; /* matches your headings */
  font-weight: 600;
  font-size: 16px;
  color: #22C55E; /* accent green to match your theme */
  margin-bottom: 8px; /* space between title and quote */
}


