:root {
  --black: #080808;
  --white: #F5F2ED;
  --orange: #F47920;
  --orange-dark: #C45E10;
  --navy: #0D1B2A;
  --grey: #1A1A1A;
  --mid: #888;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
  animation: page-fade-in 0.6s ease;
}
@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), #FFB37A);
  z-index: 10001;
  transition: width 0.1s ease-out;
}

/* ACCESSIBILITY */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* CUSTOM CURSOR */
.cursor {
  width: 16px; height: 16px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  box-shadow: 0 0 6px rgba(244,121,32,0.8);
  transition: transform 0.2s cubic-bezier(0.2, 1, 0.3, 1);
}
.cursor-ring {
  width: 48px; height: 48px;
  border: 1.5px solid rgba(244,121,32,0.7);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  transition: width 0.25s ease, height 0.25s ease;
}
.cursor.hover-effect { transform: scale(2) !important; background: var(--white); }
.cursor-ring.hover-effect { width: 64px; height: 64px; background: rgba(244,121,32,0.08); }
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95), transparent);
  backdrop-filter: blur(2px);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
nav.scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--orange); display: inline-block; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.logo:hover span { transform: rotate(180deg) scale(1.3); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active-link,
.mobile-menu a.active-link { color: var(--orange); }
.nav-links a.active-link::after { width: 100%; }
.nav-cta {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--black);
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--white); transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(244,121,32,0.12) 0%, transparent 60%),
              radial-gradient(ellipse 40% 60% at 20% 70%, rgba(13,27,42,0.8) 0%, transparent 50%),
              var(--black);
}
.hero-noise {
  position: absolute; inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.6;
}
.hero-orb.orb-1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(244,121,32,0.35), transparent 70%);
  top: -12%; right: 4%;
  animation: orb-float-1 20s ease-in-out infinite;
}
.hero-orb.orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(13,27,42,0.9), transparent 70%);
  bottom: -18%; left: -4%;
  animation: orb-float-2 24s ease-in-out infinite;
}
@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-70px, 50px) scale(1.15); }
}
@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-orb { animation: none; }
}
.hero-tag, .hero h1, .hero-bottom {
  position: relative;
  z-index: 1;
}
.hero-tag {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--orange); }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: 2px;
}
.hero h1 .outline {
  -webkit-text-stroke: 1px rgba(245,242,237,0.3);
  color: transparent;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--orange), #FFB37A, var(--orange));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 4s linear infinite;
}
@keyframes gradient-shift {
  to { background-position: 200% center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 .accent { animation: none; background: none; color: var(--orange); }
}
.hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-top: 48px;
}
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.scroll-cue:hover { color: var(--orange); }
.scroll-cue .scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-cue-move 2s ease-in-out infinite;
}
@keyframes scroll-cue-move {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.55); opacity: 0.4; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue .scroll-line { animation: none; }
}
@media (max-width: 768px) {
  .scroll-cue { display: none; }
}
.hero-desc {
  max-width: 380px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,242,237,0.6);
}
.hero-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.btn-primary {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--black);
  padding: 18px 48px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.hero-stats { display: flex; gap: 48px; font-family: 'Syne', sans-serif; }
.stat-num { font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-num .stat-suffix { color: var(--orange); }
.stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); margin-top: 4px; }

/* MARQUEE */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,242,237,0.4);
  white-space: nowrap;
}
.marquee-item.accent { color: var(--orange); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* TRUST BADGES */
.trust-badges {
  padding: 40px 60px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-badges p {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 24px;
}
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  align-items: center;
}
.logo-placeholder {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: rgba(245,242,237,0.4);
  background: rgba(255,255,255,0.03);
  padding: 12px 24px;
  border-radius: 2px;
}

/* SERVICES */
.services { padding: 120px 60px; position: relative; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 64px; }
.section-tag {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 6vw, 80px); line-height: 1; letter-spacing: 1px; }
.section-subtitle { max-width: 320px; font-size: 15px; font-weight: 300; line-height: 1.7; color: rgba(245,242,237,0.5); text-align: right; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.service-card {
  background: var(--black);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.35s ease, box-shadow 0.35s ease;
  --mx: 50%; --my: 50%;
}
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; z-index: 2; }
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle 240px at var(--mx) var(--my), rgba(244,121,32,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.service-card:hover { background: #0F0F0F; transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.45); z-index: 1; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-num { font-family: 'Bebas Neue', sans-serif; font-size: 72px; color: rgba(255,255,255,0.04); line-height: 1; position: absolute; top: 20px; right: 30px; }
.service-icon { font-size: 28px; margin-bottom: 24px; }
.service-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(245,242,237,0.5); }
.service-arrow { margin-top: 32px; font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 8px; opacity: 0; transform: translateX(-8px); transition: opacity 0.3s, transform 0.3s; }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* WORK */
.work { padding: 0 60px 120px; position: relative; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.work-card {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy);
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.work-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }
.work-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.work-card:hover img { transform: scale(1.06); }
.work-card-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 10%, rgba(8,8,8,0.1) 70%);
}
.work-card-category {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.work-card h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; line-height: 1.3; }
.work-cta { display: flex; justify-content: center; margin-top: 56px; }

/* PACKAGES */
.packages { padding: 120px 60px; background: var(--navy); position: relative; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.package-card { padding: 48px 40px; border: 1px solid rgba(255,255,255,0.08); transition: all 0.3s; position: relative; }
.package-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.35); }
.package-card.featured { border-color: var(--orange); background: rgba(244,121,32,0.05); animation: featured-glow 3s ease-in-out infinite; }
.package-card.featured:hover { animation-play-state: paused; }
@keyframes featured-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(244,121,32,0); }
  50% { box-shadow: 0 0 36px rgba(244,121,32,0.25); }
}
@media (prefers-reduced-motion: reduce) {
  .package-card.featured { animation: none; }
}
.featured-badge { position: absolute; top: -1px; left: 40px; background: var(--orange); color: var(--black); font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; padding: 6px 16px; }
.package-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--mid); margin-bottom: 16px; }
.package-price { font-family: 'Bebas Neue', sans-serif; font-size: 64px; line-height: 1; margin-bottom: 8px; display: flex; align-items: baseline; gap: 4px; }
.price-display { font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: var(--white); }
.price-suffix { font-size: 20px; color: var(--mid); }
.package-period { font-size: 13px; color: var(--mid); margin-bottom: 32px; }
.package-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 32px; }
.package-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.package-features li { font-size: 14px; font-weight: 300; color: rgba(245,242,237,0.7); display: flex; align-items: center; gap: 10px; }
.package-features li::before { content: '→'; color: var(--orange); }
.btn-package { display: block; text-align: center; font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 16px; text-decoration: none; border: 1px solid rgba(255,255,255,0.15); color: var(--white); transition: all 0.25s; }
.btn-package:hover, .package-card.featured .btn-package { background: var(--orange); border-color: var(--orange); color: var(--black); }
.btn-package:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(244,121,32,0.25); }

/* FAQ */
.faq {
  padding: 80px 60px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.faq-question {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--orange);
}
.faq-question.active::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: rgba(245,242,237,0.6);
  line-height: 1.6;
  margin-top: 8px;
}
.faq-question.active + .faq-answer { max-height: 200px; margin-top: 16px; }

/* WHY US */
.why { padding: 120px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.why-left p { font-size: 16px; font-weight: 300; line-height: 1.8; color: rgba(245,242,237,0.55); margin-bottom: 40px; }
.why-right { display: flex; flex-direction: column; gap: 0; }
.why-item { padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; gap: 24px; align-items: flex-start; transition: padding-left 0.3s ease, border-color 0.3s ease; }
.why-item:hover { padding-left: 14px; border-color: rgba(244,121,32,0.35); }
.why-num { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--orange); min-width: 32px; transition: transform 0.3s ease; }
.why-item:hover .why-num { transform: scale(1.15); }
.why-content h4 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-content p { font-size: 14px; font-weight: 300; line-height: 1.6; color: rgba(245,242,237,0.5); }

/* TESTIMONIALS */
.testimonials {
  background: rgba(244,121,32,0.03);
  padding: 80px 60px;
  text-align: center;
}
.testimonial-grid {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  padding: 32px;
  max-width: 350px;
  border-radius: 4px;
  text-align: left;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245,242,237,0.8);
  margin-bottom: 20px;
}
.testimonial-author {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--orange);
}
.testimonial-title {
  font-size: 12px;
  color: var(--mid);
}

/* CTA SECTION with FORM */
.cta-section {
  margin: 0 60px 120px;
  background: linear-gradient(120deg, var(--orange-dark), var(--orange), #FFA84D, var(--orange));
  background-size: 300% 300%;
  animation: cta-gradient 10s ease infinite;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
@keyframes cta-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .cta-section { animation: none; background: var(--orange); }
}
.cta-section::before {
  content: 'CREAON';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  color: rgba(0,0,0,0.06);
  pointer-events: none;
}
.cta-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  color: var(--black);
  margin-bottom: 16px;
}
.cta-text p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(0,0,0,0.6);
  margin-bottom: 24px;
}
.btn-dark {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 18px 48px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, transform 0.25s;
}
.btn-dark:hover { background: var(--navy); transform: translateY(-1px); }
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  border-radius: 40px;
  transition: transform 0.2s;
}
.whatsapp-link:hover { transform: scale(1.02); background: #128C7E; }
.cta-links { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-form {
  background: rgba(0,0,0,0.2);
  padding: 32px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}
.cta-form h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  color: var(--black);
  margin-bottom: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group {
  margin-bottom: 16px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px;
  background: white;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}
.form-group input:focus, .form-group textarea:focus { outline: 2px solid var(--black); }
.form-error {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--black);
  background: rgba(255,255,255,0.6);
  border-left: 3px solid var(--black);
  padding: 6px 10px;
  margin-bottom: 16px;
}
.form-success {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  padding: 32px 0;
}
.btn-submit {
  background: var(--black);
  color: white;
  border: none;
  padding: 14px 24px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.btn-submit:hover { background: #1a1a1a; }

/* INDUSTRIES */
.industries { padding: 80px 60px; border-top: 1px solid rgba(255,255,255,0.06); }
.industry-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px; }
.industry-tag {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(245,242,237,0.6);
  transition: all 0.2s;
  cursor: default;
}
.industry-tag:hover { border-color: var(--orange); color: var(--orange); background: rgba(244,121,32,0.05); transform: translateY(-3px); }

/* FOOTER */
footer { padding: 60px; border-top: 1px solid rgba(255,255,255,0.06); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 3px; text-decoration: none; color: var(--white); display: block; margin-bottom: 16px; }
.footer-logo span { color: var(--orange); }
.footer-desc { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--mid); }
.footer-heading { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; font-weight: 300; color: var(--mid); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact p { font-size: 13px; font-weight: 300; color: var(--mid); margin-bottom: 8px; }
.footer-contact a { color: var(--orange); text-decoration: none; }
.footer-bottom { padding: 24px 60px; border-top: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
.social-links { display: flex; gap: 12px; }
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: all 0.25s ease;
}
.social-links a svg { width: 16px; height: 16px; fill: currentColor; }
.social-links a:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: rgba(244,121,32,0.08);
  transform: translateY(-3px);
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; position: relative; z-index: 1; }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.2s infinite;
  z-index: 0;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before { animation: none; }
}

/* STICKY CTA (MOBILE) */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 28px;
  left: 20px;
  z-index: 1000;
  gap: 12px;
}
.sticky-btn {
  background: var(--orange);
  color: var(--black);
  padding: 14px 20px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  nav { padding: 18px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 200; }
  .hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: all 0.3s; }
  .hero { padding: 120px 24px 60px; justify-content: flex-start; min-height: auto; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; margin-top: 40px; }
  .hero-actions { align-items: flex-start; width: 100%; }
  .btn-primary, .btn-dark { width: 100%; text-align: center; padding: 16px 32px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .section-subtitle { text-align: left; max-width: 100%; }
  .work { padding: 0 24px 64px; }
  .work-grid { grid-template-columns: 1fr; gap: 20px; }
  .packages { padding: 64px 24px; }
  .packages-grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }
  .cta-section { grid-template-columns: 1fr; margin: 0 24px 80px; padding: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .testimonials { padding: 60px 24px; }
  .faq { padding: 60px 24px; }
  .trust-badges { padding: 40px 24px; }
  .industries { padding: 48px 24px; }
  footer { grid-template-columns: 1fr; padding: 48px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; padding: 20px 24px; text-align: center; }
  .service-arrow { opacity: 1; transform: translateX(0); }
  .hero h1 { font-size: clamp(56px, 16vw, 96px); }
}

.hamburger { display: none; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; display: flex; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 3px;
  color: rgba(245,242,237,0.5);
  text-decoration: none;
  padding: 16px 0;
  width: 80%;
  text-align: center;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.cta { color: var(--orange); }

.reveal { opacity: 1; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.pre-reveal { opacity: 0; transform: translateY(24px); }
.reveal.visible { opacity: 1; transform: translateY(0); }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); }

.currency-toggle-wrap { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.currency-toggle { display: inline-flex; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 4px; position: relative; border-radius: 2px; }
.cur-btn { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; padding: 10px 24px; background: none; border: none; color: var(--mid); cursor: pointer; z-index: 1; transition: color 0.25s; }
.cur-btn.active { color: var(--black); }
.cur-slider { position: absolute; top: 4px; left: 4px; height: calc(100% - 8px); width: calc(50% - 4px); background: var(--orange); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); border-radius: 1px; }
.cur-slider.usd { transform: translateX(100%); }
.price-display { transition: opacity 0.2s, transform 0.2s; display: inline-block; }
.price-display.switching { opacity: 0; transform: translateY(-6px); }
.currency-note { font-family: 'Syne', sans-serif; font-size: 11px; letter-spacing: 1px; color: var(--mid); font-style: italic; }

/* BLOG */
.blog-hero { padding: 160px 60px 60px; }
.blog-hero p { max-width: 480px; font-size: 16px; font-weight: 300; line-height: 1.7; color: rgba(245,242,237,0.5); margin-top: 16px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding: 0 60px 80px; }
.blog-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.blog-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--navy); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card-category {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.blog-card h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.blog-card p { font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(245,242,237,0.5); flex: 1; }
.blog-card-meta {
  margin-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Syne', sans-serif; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--mid);
}
.blog-card-read {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange);
}

/* PAGINATION */
.pagination { display: flex; justify-content: center; gap: 8px; list-style: none; padding: 0 60px 120px; flex-wrap: wrap; }
.pagination .page-item .page-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 12px;
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--mid);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: all 0.2s;
}
.pagination .page-item .page-link:hover { border-color: var(--orange); color: var(--orange); }
.pagination .page-item.active .page-link { background: var(--orange); border-color: var(--orange); color: var(--black); }
.pagination .page-item.disabled .page-link { opacity: 0.3; cursor: default; }

/* SINGLE POST */
.post-hero { padding: 160px 60px 0; }
.post-category {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
}
.post-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 7vw, 88px); line-height: 1.05; letter-spacing: 1px; max-width: 900px; }
.post-subtitle { max-width: 700px; font-size: 18px; font-weight: 300; line-height: 1.7; color: rgba(245,242,237,0.55); margin-top: 20px; }
.post-meta { margin-top: 28px; display: flex; gap: 24px; font-family: 'Syne', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); }
.post-cover { margin: 48px 60px; max-height: 520px; overflow: hidden; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-body { max-width: 760px; margin: 0 auto; padding: 0 24px 100px; font-size: 17px; font-weight: 300; line-height: 1.9; color: rgba(245,242,237,0.75); }
.post-body p { margin-bottom: 24px; }
.post-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.post-tag {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--mid);
  border: 1px solid rgba(255,255,255,0.1); padding: 8px 16px;
}
.related-section { padding: 80px 60px 120px; border-top: 1px solid rgba(255,255,255,0.06); }
.related-section .blog-grid { padding: 0; }

@media (max-width: 768px) {
  .blog-hero { padding: 120px 24px 40px; }
  .blog-grid { grid-template-columns: 1fr; padding: 0 24px 60px; gap: 24px; }
  .pagination { padding: 0 24px 80px; }
  .post-hero { padding: 120px 24px 0; }
  .post-cover { margin: 32px 24px; max-height: 320px; }
  .post-body { padding: 0 24px 80px; }
  .related-section { padding: 60px 24px 80px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: clamp(48px, 18vw, 72px); }
  .mobile-menu a { font-size: 36px; }
}
