:root {
  --cyan: #00AEEF;
  --magenta: #EC008C;
  --yellow: #FFD100;
  --black: #231F20;
  --accent: var(--magenta);
  --accent-dark: #c4007a;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --dark: var(--black);
  --text: #4a4a6a;
  --text-light: #8b8ba7;
  --border: #e8e8f0;
  --radius: 20px;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--text-light); border-radius: 3px; }

::selection { background: var(--accent); color: var(--white); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto;
}

.highlight {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  background: rgba(236, 0, 140, 0.08);
  color: var(--accent);
  border: 1px solid rgba(236, 0, 140, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(236, 0, 140, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(236, 0, 140, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-whatsapp {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
  padding: 12px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img { height: 100px; width: auto; }
.header.scrolled .nav-logo img { height: 85px; }

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.header.scrolled .nav-link { color: var(--text); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #25D366;
  color: var(--white) !important;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.header.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(0, 174, 239, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 40%, rgba(236, 0, 140, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 85%, rgba(255, 209, 0, 0.08) 0%, transparent 40%);
  animation: heroBgPulse 8s ease-in-out infinite alternate;
}

@keyframes heroBgPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text { opacity: 0; animation: fadeUp 0.8s ease forwards 0.2s; }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  background: rgba(236, 0, 140, 0.12);
  color: #FF8A8A;
  border: 1px solid rgba(236, 0, 140, 0.2);
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-rotate-wrapper {
  display: inline-block;
  position: relative;
}

.hero-rotate {
  color: var(--magenta);
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 20px;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 2s ease forwards infinite;
}

@keyframes drawLine {
  0% { stroke-dashoffset: 200; }
  40% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -200; }
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.hero-stats::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
}

.hero-stat { text-align: left; }
.hero-stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.hero-mockup {
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

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

.mockup-screen { padding: 16px; }

.mockup-header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.mockup-header span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-header span:nth-child(1) { background: var(--magenta); }
.mockup-header span:nth-child(2) { background: #FBBF24; }
.mockup-header span:nth-child(3) { background: #34D399; }

.mockup-body { display: flex; flex-direction: column; gap: 10px; }

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.mockup-grid span {
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}

.float-icon {
  position: absolute;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  font-size: 1.5rem;
  color: var(--white);
  animation: floatIcon 5s ease-in-out infinite;
  z-index: 2;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(-2deg); }
  75% { transform: translateY(8px) rotate(2deg); }
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.15), transparent 70%);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 1; }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border-radius: 11px;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--cyan);
  animation: scrollDot 2s ease infinite;
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* MARQUEE */
.marquee-section {
  background: var(--white);
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: fit-content;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  padding: 0 24px;
}

.marquee-group span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.marquee-group .dot {
  color: var(--cyan);
  font-size: 0.6rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SERVICES */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--icon-color, var(--accent));
  transition: height 0.4s ease;
  opacity: 0.6;
}

.service-card:hover::before { height: 100%; opacity: 0.03; }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.sc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  background: var(--icon-bg);
  color: var(--icon-color);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card > p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.sc-list { list-style: none; }

.sc-list li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 7px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sc-list li:first-child { border-top: none; }

.sc-list li i {
  font-size: 0.7rem;
  color: var(--icon-color, var(--accent));
}

/* ABOUT + STATS */
.about {
  padding: 100px 0;
  background: var(--off-white);
}

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

.about-text .badge { margin-bottom: 16px; }

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.about-text p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}

.stats-grid-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.stat-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* WORK */
.work {
  padding: 100px 0;
  background: var(--white);
}

.work-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.wf-btn {
  padding: 10px 24px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wf-btn:hover, .wf-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 0, 140, 0.25);
}

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

.work-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.work-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.wi-thumb {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.work-item:hover .wi-thumb { transform: scale(1.02); }

.wi-body { padding: 20px; }

.wi-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(0, 174, 239, 0.08);
  color: var(--cyan);
  margin-bottom: 8px;
}

.wi-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

/* TESTIMONIALS */
.testimonials {
  padding: 100px 0;
  background: var(--off-white);
}

.testimonial-swiper {
  padding: 20px 4px 60px;
  max-width: 720px;
  margin: 0 auto;
}

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

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.tc-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #FBBF24;
  font-size: 1rem;
}

.testimonial-card > p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tc-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 600;
}

.tc-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.swiper-pagination-bullet-active {
  background: var(--accent) !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--accent) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1rem !important;
  font-weight: 700;
}

/* PRICING */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

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

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
  transform: scale(1.03);
  z-index: 1;
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 18px;
  border-radius: 50px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.pc-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.pc-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.pc-symbol {
  font-size: 1.5rem;
  vertical-align: super;
}

.pc-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

.pc-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.pc-list li:first-child { border-top: none; }

.pc-list li i {
  font-size: 0.8rem;
  width: 18px;
  text-align: center;
}

.pc-list li i.fa-check { color: #10B981; }
.pc-list li.disabled { color: var(--text-light); opacity: 0.6; }
.pc-list li.disabled i.fa-times { color: var(--text-light); }

.pc-btn { width: 100%; justify-content: center; }

.pricing-card.featured .pc-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(236, 0, 140, 0.3);
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: var(--off-white);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item:hover {
  border-color: rgba(236, 0, 140, 0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color 0.3s;
  gap: 16px;
}

.faq-question i {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
  color: var(--accent);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

/* CONTACT */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.ci-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.ci-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.ci-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(236, 0, 140, 0.06);
  transform: translateX(4px);
}

.ci-card i {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(236, 0, 140, 0.06);
  border-radius: 10px;
  flex-shrink: 0;
}

.ci-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 2px;
}

.ci-card span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.ci-social {
  display: flex;
  gap: 10px;
}

.ci-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 1rem;
}

.ci-social a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(236, 0, 140, 0.25);
}

.contact-form {
  background: var(--off-white);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s;
  background: var(--white);
  color: var(--dark);
  margin-bottom: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(236, 0, 140, 0.08);
}

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

.form-row {
  display: flex;
  gap: 10px;
}

.form-row .btn-primary {
  flex: 1;
  padding: 16px;
  justify-content: center;
}

/* CTA SECTION */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark), #2a1a3e);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(236, 0, 140, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 174, 239, 0.12) 0%, transparent 50%);
}

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

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

/* FOOTER */
.footer {
  background: var(--dark);
  padding: 60px 0 24px;
  color: rgba(255,255,255,0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.85rem;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--accent); }

.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: none;
  color: var(--white);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-form button {
  width: 44px;
  background: var(--accent);
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s;
  flex-shrink: 0;
}

.newsletter-form button:hover { background: var(--accent-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 868px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-stat { text-align: center; }
  .hero-text h1 { font-size: 2.8rem; }
  .hero-visual { min-height: 300px; }
  .hero-mockup { max-width: 340px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }

  .section-header h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -300px;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 28px 28px;
    gap: 20px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.08);
    transition: right 0.4s ease;
    align-items: stretch;
  }
  .nav-menu.open { right: 0; }
  .nav-link { color: var(--text) !important; font-size: 0.95rem; }
  .nav-cta { text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }

  .work-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .hero-text h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat-num { font-size: 1.3rem; }
  .section-header h2 { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid-about { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-number { font-size: 1.8rem; }
  .work-grid { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 1.8rem; }
  .contact-form { padding: 20px; }
  .testimonial-card { padding: 24px 20px; }
  .pricing-card { padding: 28px 20px; }
}
