/* ===== VARIABLES ===== */
:root {
  /* Colors - Apple-inspired neutral palette */
  --primary-color: #16e6cf;
  --primary-dark: #14d4bc;
  --bg-color: #FFFFFF;
  --bg-elevated: #F5F5F7;
  --bg-surface: #FBFBFD;
  --text-color: #1D1D1F;
  --text-secondary: #6E6E73;
  --border-color: rgba(0, 0, 0, 0.1);
  --separator-color: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', system-ui, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.0625rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: clamp(2.5rem, 5vw, 3.5rem);

  /* Font weights */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Spacing - 8px base grid */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max-width: 1280px;
  --border-radius: 0.75rem;
  --border-radius-sm: 0.5rem;
  --border-radius-lg: 1.25rem;
  --transition: all 0.25s ease-in-out;
  --shadow: none;
  --shadow-lg: none;

  /* Z-index */
  --z-header: 100;
  --z-modal: 1000;
  --z-tooltip: 1010;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-regular);
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-24) 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-20);
}

.section__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-6);
  color: var(--text-color);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section__subtitle {
  font-size: var(--font-size-lg);
  font-weight: var(--font-regular);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

.highlight {
  background: linear-gradient(90deg, #16e6cf, #14d4bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-base);
  font-weight: var(--font-medium);
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  letter-spacing: -0.01em;
}

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

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

.btn--outline {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--separator-color);
}

.btn--outline:hover {
  background: var(--bg-elevated);
  border-color: var(--border-color);
  transform: translateY(-2px);
}

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

.btn--secondary:hover {
  background: var(--text-color);
  color: white;
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--separator-color);
  z-index: var(--z-header);
  transition: var(--transition);
}

.nav {
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xl);
  font-weight: var(--font-bold);
  color: var(--text-color);
  text-decoration: none;
}

.nav__logo-text {
  color: var(--text-color);
  font-size: var(--font-size-xl);
  font-weight: var(--font-semibold);
}

.nav__menu {
  display: flex;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: var(--space-8);
}

.nav__link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: var(--font-medium);
  position: relative;
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--primary-color);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  color: var(--text-color);
  font-size: var(--font-size-xl);
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 120px 5% 140px 5%;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  gap: 40px;
  min-height: 100vh;
}

.hero-content {
  max-width: 580px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.08;
  color: var(--text-color);
  letter-spacing: -0.03em;
}

.subtext {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 12px;
  color: #444;
}

.value-text {
  font-size: 15px;
  color: #777;
  margin-bottom: 32px;
  line-height: 1.65;
  border-left: 3px solid var(--primary-color);
  padding-left: 14px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--primary-color);
  padding: 15px 32px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 18px rgba(22, 230, 207, 0.35);
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(22, 230, 207, 0.45);
}

.btn-secondary {
  padding: 15px 28px;
  border-radius: 10px;
  border: 1.5px solid #d0d0d0;
  color: #444;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.25s ease;
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.trust-text {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

/* --- FLOATING LAPTOP MOCKUP --- */
.hero-mockup {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.laptop {
  width: 520px;
  animation: float 5s ease-in-out infinite;
  position: relative;
}

.screen {
  width: 100%;
  height: 300px;
  background: #1a1a1a;
  border-radius: 16px 16px 0 0;
  border: 6px solid #2c2c2c;
  border-bottom: 0;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.screen::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #1a1a1a;
  border-radius: 0 0 8px 8px;
  z-index: 10;
}

/* Soft glass reflection */
.screen::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 60%;
  height: 120%;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 40%, rgba(255,255,255,0) 60%);
  transform: rotate(-10deg);
  pointer-events: none;
  z-index: 5;
}

.screen-content {
  text-align: center;
  padding: 25px 20px;
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, #f7f7f7 0%, #ececec 100%);
  border-radius: 8px;
  margin: 8px;
  height: calc(100% - 16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mini-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.mini-title {
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  margin: 0 0 6px 0;
}

.mini-subtitle {
  font-size: 13px;
  color: #666;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.mini-btn {
  background: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(22, 230, 207, 0.25);
  transition: all 0.2s ease;
}

.mini-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(22, 230, 207, 0.35);
}

.base {
  width: 100%;
  height: 14px;
  background: linear-gradient(to bottom, #d4d4d6 0%, #c7c7cc 50%, #b8b8bd 100%);
  position: relative;
  border-radius: 0 0 8px 8px;
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.base::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 3px;
  background: linear-gradient(to bottom, #9a9a9f, #7e7e83);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.base::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5) 50%, transparent);
}

/* Glow behind laptop */
.laptop::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 420px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0) 70%);
  transform: translateX(-50%);
  filter: blur(25px);
  z-index: -1;
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg-elevated);
}

.services .section__title {
  color: var(--text-color);
}

.services__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.services__item {
  background: white;
  padding: var(--space-10);
  border-radius: var(--border-radius-lg);
  text-align: center;
  border: 1px solid var(--separator-color);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  min-width: 0;
}

.services__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.services__icon {
  font-size: var(--font-size-4xl);
  color: var(--primary-color);
  margin-bottom: var(--space-5);
  display: block;
}

.services__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-semibold);
  color: var(--text-color);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.services__description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: var(--font-size-base);
  margin: 0;
}

/* ===== ABOUT ===== */
.about__container {
  max-width: 1000px;
  margin: 0 auto;
}

.about__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.about__text {
  margin-bottom: var(--space-8);
}

.about__heading {
  font-size: var(--font-size-xl);
  font-weight: var(--font-semibold);
  color: var(--primary-color);
  margin-bottom: var(--space-3);
  margin-top: var(--space-6);
}

.about__heading:first-child {
  margin-top: 0;
}

.about__description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.about__stats {
  display: grid;
  gap: var(--space-6);
}

.about__stat {
  background: var(--bg-elevated);
  padding: var(--space-6);
  border-radius: var(--border-radius-lg);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.about__stat:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.about__stat-number {
  font-size: var(--font-size-lg);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.about__stat-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: var(--font-medium);
}

/* ===== LOCAL AREA ===== */
.local-area {
  background: var(--bg-elevated);
}

.local-area__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media screen and (min-width: 768px) {
  .local-area__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.local-area__map {
  background: white;
  border: 1px solid var(--separator-color);
  border-radius: var(--border-radius-lg);
  padding: var(--space-10);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.local-area__locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.local-area__location {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-lg);
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.local-area__location i {
  color: var(--primary-color);
  font-size: var(--font-size-base);
}

.local-area__heading {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.local-area__description {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.local-area__description:last-child {
  margin-bottom: 0;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--bg-color);
}

.pricing__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  max-width: 1400px;
  margin: 0 auto;
  grid-auto-rows: 1fr;
}

/* Better spacing for wide screens */
@media screen and (min-width: 1200px) {
  .pricing__container {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    max-width: 1600px;
    padding: 0 var(--space-8);
  }
}

.pricing__card {
  background: white;
  border: 1px solid var(--separator-color);
  border-radius: var(--border-radius-lg);
  padding: var(--space-10);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: var(--border-color);
}

.pricing__card--featured {
  border-color: var(--primary-color);
  border-width: 2px;
}

.pricing__card--premium {
  position: relative;
}

@media screen and (min-width: 1200px) {
  .pricing__card--premium {
    border-color: var(--primary-color);
    border-width: 2px;
  }
}

.pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius-lg);
  font-size: var(--font-size-sm);
  font-weight: var(--font-medium);
  white-space: nowrap;
  z-index: 10;
  letter-spacing: -0.01em;
}

.pricing__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.pricing__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-1);
}

.pricing__currency {
  font-size: var(--font-size-xl);
  font-weight: var(--font-medium);
  color: var(--text-color);
}

.pricing__amount {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-semibold);
  color: var(--text-color);
  letter-spacing: -0.02em;
}

.pricing__period {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  font-weight: var(--font-regular);
}

.pricing__setup {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: var(--font-regular);
  margin-top: var(--space-2);
  text-align: center;
}

.pricing__features {
  list-style: none;
  margin-bottom: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pricing__feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-base);
}

.pricing__feature i {
  color: var(--primary-color);
  font-size: var(--font-size-sm);
  width: 16px;
  flex-shrink: 0;
}

.pricing__feature--header {
  font-weight: var(--font-semibold);
  color: var(--text-color);
  margin-top: var(--space-4);
  margin-bottom: var(--space-3);
}

.pricing__feature--header:first-child {
  margin-top: 0;
}

.pricing__feature--header i {
  color: var(--text-secondary);
}

.pricing__btn {
  width: 100%;
  justify-content: center;
  padding: var(--space-4) var(--space-6);
  margin-top: auto;
  margin-bottom: 0;
  flex-shrink: 0;
}

.pricing__note {
  text-align: center;
  margin-top: var(--space-12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__note p {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.testimonial__card {
  background: white;
  border: 1px solid var(--separator-color);
  border-radius: var(--border-radius-lg);
  padding: var(--space-10);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testimonial__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.testimonial__content {
  margin-bottom: var(--space-6);
}

.testimonial__stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.testimonial__stars i {
  color: var(--primary-color);
  font-size: var(--font-size-sm);
}

.testimonial__text {
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial__avatar {
  width: 50px;
  height: 50px;
  background: var(--bg-color);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: var(--font-size-lg);
}

.testimonial__name {
  font-size: var(--font-size-base);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-1);
}

.testimonial__role {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

/* ===== CLIENTS SECTION ===== */
.clients {
  background: var(--bg-elevated);
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-4);
}

.clients__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  background: var(--bg-color);
  border-radius: var(--border-radius-lg);
  transition: transform 0.3s ease;
}

.clients__tile:hover {
  transform: translateY(-8px);
}

.clients__icon {
  width: 100%;
  height: auto;
  max-width: 180px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* ===== FEATURES SECTION ===== */
.features {
  background: var(--bg-elevated);
}

.features__image {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-4);
}

.features__illustration {
  width: 100%;
  height: auto;
  max-width: 400px;
  transition: var(--transition);
}

.features__illustration:hover {
  transform: scale(1.01);
  opacity: 0.95;
}

/* ===== DEMO SHOWCASE SECTION ===== */
.demos {
  background: var(--bg-color);
}

.demos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.demos__card--last {
  grid-column: 1 / -1;
  max-width: calc(50% - var(--space-3));
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.demos__card {
  background: var(--bg-surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--separator-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.demos__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.demos__image {
  width: 100%;
  height: 200px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--separator-color);
}

/* Browser-style preview */
.demos__browser {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #f5f5f7;
}

.demos__browser-bar {
  background: #e8e8ea;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #d8d8da;
  flex-shrink: 0;
}

.demos__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d0d2;
}

.demos__dot:nth-child(1) { background: #ff5f57; }
.demos__dot:nth-child(2) { background: #febc2e; }
.demos__dot:nth-child(3) { background: #28c840; }

.demos__url {
  background: white;
  border-radius: 4px;
  font-size: 11px;
  color: #666;
  padding: 3px 10px;
  flex: 1;
  text-align: center;
  border: 1px solid #ddd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demos__browser-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f7f7f7 0%, #efefef 100%);
  transition: background 0.3s ease;
}

.demos__card:hover .demos__browser-body {
  background: linear-gradient(135deg, #f0fdfb 0%, #e6faf7 100%);
}

.demos__site-icon {
  font-size: 32px;
  color: var(--primary-color);
  opacity: 0.8;
}

.demos__site-name {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin: 0;
  text-align: center;
  padding: 0 12px;
}

.demos__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}

.demos__badge {
  display: inline-block;
  background: rgba(22, 230, 207, 0.12);
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(22, 230, 207, 0.3);
}

.demos__category {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
}

.demos__category i {
  font-size: 12px;
  color: var(--primary-color);
}

.demos__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-semibold);
  color: var(--text-color);
  letter-spacing: -0.01em;
}

.demos__description {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.demos__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--primary-color);
  font-weight: var(--font-medium);
  font-size: var(--font-size-base);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.demos__link:hover {
  gap: var(--space-3);
}

.demos__link i {
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}

.demos__link:hover i {
  transform: translateX(4px);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--bg-elevated);
}

.contact__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
  color: var(--text-color);
  letter-spacing: -0.02em;
}

.contact__subtitle {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.contact__btn {
  font-size: var(--font-size-lg);
  padding: var(--space-5) var(--space-10);
  margin-bottom: var(--space-8);
}

.contact__info {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-secondary);
  font-size: var(--font-size-base);
}

.contact__detail i {
  color: var(--primary-color);
  font-size: var(--font-size-lg);
  width: 20px;
  text-align: center;
}

/* ===== FAQ ===== */
.faq {
  background: var(--bg-color);
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
  transition: var(--transition);
}

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

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6);
  cursor: pointer;
  transition: var(--transition);
}

.faq__question:hover {
  background: var(--bg-elevated);
}

.faq__question h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-semibold);
  color: var(--text-color);
  margin: 0;
}

.faq__icon {
  color: var(--primary-color);
  font-size: var(--font-size-lg);
  transition: var(--transition);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq__answer p {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.faq__item.active .faq__answer {
  max-height: 200px;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-color);
  border-top: 1px solid var(--border-color);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__container {
  display: grid;
  gap: var(--space-12);
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-xl);
  font-weight: var(--font-bold);
  color: var(--text-color);
}

.footer__logo-image {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-right: var(--space-2);
  display: inline-block;
  max-width: 120px;
}

.footer__description {
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.footer__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
  color: var(--text-color);
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: var(--space-2);
}

.footer__link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--primary-color);
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__contact i {
  color: var(--primary-color);
  width: 16px;
  text-align: center;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-color);
}

.footer__copy {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

.footer__social {
  display: flex;
  gap: var(--space-4);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  transform: translateY(-2px);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: var(--space-8);
  left: var(--space-6);
  background: white;
  color: #25D366;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  transition: var(--transition);
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--separator-color);
}

.whatsapp-btn:hover {
  background: var(--bg-elevated);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  background: var(--primary-color);
  color: var(--bg-color);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: var(--z-header);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade in animation for sections */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ===== RESPONSIVE DESIGN ===== */
/* MacBook Air 13" (1440x900) and similar laptops */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .container {
    max-width: 1100px;
    padding: 0 var(--space-6);
  }
  
  .clients__photo {
    max-width: 450px;
    margin: 0 auto;
    display: block;
  }
  
  .features__illustration {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
  
  .clients__image,
  .features__image {
    padding: 0 var(--space-6);
    max-width: 100%;
    overflow: hidden;
  }
  
  .section {
    padding: var(--space-16) 0;
  }
  
  .section__title {
    font-size: var(--font-size-3xl);
  }
  
  .section__subtitle {
    font-size: var(--font-size-lg);
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Larger desktop screens */
@media screen and (min-width: 1441px) {
  .clients__photo {
    max-width: 700px;
  }
  
  .features__illustration {
    max-width: 450px;
  }
  
  .clients__image,
  .features__image {
    padding: 0 var(--space-8);
  }
}

@media screen and (max-width: 1024px) {
  .hero__mockup {
    height: 300px;
    max-width: 600px;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about__content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .contact__info {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }

  .services__item {
    padding: var(--space-6);
  }
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: var(--z-header);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    opacity: 0;
  }
  
  .nav__menu.show {
    max-height: 400px;
    opacity: 1;
  }
  
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-4) var(--space-6);
    gap: var(--space-2);
  }
  
  .nav__link {
    font-size: var(--font-size-base);
    color: var(--text-color);
    padding: var(--space-3) var(--space-4);
    width: 100%;
    border-radius: var(--border-radius-sm);
    transition: background 0.2s ease;
  }
  
  .nav__link:hover {
    background: var(--bg-elevated);
  }
  
  .nav__toggle {
    display: block;
  }
  
  .section__title {
    font-size: var(--font-size-3xl);
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 110px 6% 80px 6%;
    gap: 48px;
  }
  
  .hero h1 {
    font-size: 36px;
    letter-spacing: -0.025em;
    line-height: 1.12;
  }
  
  .eyebrow {
    font-size: 10px;
  }
  
  .value-text {
    border-left: none;
    border-top: 3px solid var(--primary-color);
    padding-left: 0;
    padding-top: 12px;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .btn-primary, .btn-secondary {
    display: block;
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 16px 24px;
  }
  
  .trust-text {
    text-align: center;
  }
  
  .laptop {
    width: 340px;
  }
  
  .screen {
    height: 200px;
    border: 5px solid #2c2c2c;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
  }
  
  .screen::before {
    width: 60px;
    height: 5px;
    top: -5px;
  }
  
  .screen-content {
    padding: 15px 10px;
  }
  
  .mini-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  
  .mini-title {
    font-size: 14px;
    margin-bottom: 4px;
  }
  
  .mini-subtitle {
    font-size: 11px;
    margin-bottom: 10px;
  }
  
  .mini-btn {
    padding: 6px 16px;
    font-size: 11px;
  }
  
  .pricing__container {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .testimonials__container {
    grid-template-columns: 1fr;
  }
  
  .footer__links {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .footer__bottom {
    flex-direction: column;
  }
  
  .clients__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
  
  .clients__icon {
    max-width: 150px;
  }
  
  .features__illustration {
    max-width: 300px;
  }

  /* WhatsApp button — smaller and stays out of the way on mobile */
  .whatsapp-btn {
    width: 46px;
    height: 46px;
    font-size: 22px;
    bottom: var(--space-6);
    left: var(--space-4);
  }

  /* Demos last card — full width on mobile, not centred at 50% */
  .demos__card--last {
    grid-column: auto;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* Demos grid — single column on mobile */
  .demos__grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 var(--space-3);
  }
  
  .section {
    padding: var(--space-16) 0;
  }
  
  .section__title {
    font-size: var(--font-size-2xl);
  }
  
  .hero__title {
    font-size: var(--font-size-3xl);
  }
  
  .hero__subtitle {
    font-size: var(--font-size-xl);
  }
  
  .pricing__card,
  .testimonial__card,
  .faq__item {
    padding: var(--space-6);
  }
  
  .scroll-top {
    bottom: var(--space-4);
    right: var(--space-4);
    width: 45px;
    height: 45px;
  }

  .whatsapp-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
    bottom: var(--space-4);
    left: var(--space-3);
  }

  .services__item {
    padding: var(--space-5);
  }

  .services__icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-3);
  }
  
  .clients__image,
  .features__image {
    padding: 0 var(--space-2);
  }
  
  .clients__photo {
    max-width: 100%;
    border-radius: var(--border-radius);
  }
  
  .features__illustration {
    max-width: 250px;
  }
  
  .section__subtitle {
    font-size: var(--font-size-base);
    line-height: 1.5;
  }
}

/* ===== PRIVACY POLICY MODAL ===== */
.privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  display: none;
}

.privacy-modal.active {
  display: block;
}

.privacy-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.privacy-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.privacy-modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.privacy-modal__close:hover {
  background: var(--border-color);
  color: var(--text-color);
}

.privacy-modal__header {
  margin-bottom: var(--space-6);
  padding-right: var(--space-8);
}

.privacy-modal__header h2 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: var(--space-2);
}

.privacy-modal__header p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

.privacy-modal__body {
  color: var(--text-secondary);
  line-height: 1.6;
}

.privacy-modal__body h3 {
  color: var(--text-color);
  font-size: var(--font-size-lg);
  font-weight: var(--font-semibold);
  margin: var(--space-6) 0 var(--space-3) 0;
}

.privacy-modal__body h3:first-child {
  margin-top: 0;
}

.privacy-modal__body ul {
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.privacy-modal__body li {
  margin-bottom: var(--space-2);
}

.privacy-modal__body a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.privacy-modal__body a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .privacy-modal__content {
    padding: var(--space-6);
    max-height: 90vh;
  }
  
  .privacy-modal__header {
    padding-right: var(--space-6);
  }
  
  .privacy-modal__header h2 {
    font-size: var(--font-size-xl);
  }
}
