/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; transition: .25s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

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

/* ===== SECTION ===== */
.section { padding: 90px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-weight: 600;
  font-size: .95rem; transition: all .3s; cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg,#ff6b35,#f7941d);
  color: #fff; box-shadow: 0 4px 20px rgba(255,107,53,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,53,.5); }
.btn-header {
  background: linear-gradient(135deg,#ff6b35,#f7941d);
  color: #fff; padding: 10px 22px; border-radius: 50px;
  font-weight: 600; font-size: .875rem;
  box-shadow: 0 3px 15px rgba(255,107,53,.4);
}
.btn-header:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,53,.5); }
.btn-ghost {
  background: rgba(255,255,255,.15); color: #fff;
  border: 2px solid rgba(255,255,255,.5); backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.btn-lg { padding: 15px 35px; font-size: 1rem; }
.btn-white-solid { background: #fff; color: #ff6b35; font-weight: 700; }
.btn-white-solid:hover { background: #fff3ee; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); }
.btn-full { width: 100%; justify-content: center; padding: 15px; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; margin: 10px 0 14px; color: #1a1a2e;
  line-height: 1.25;
}
.section-header p { color: #6b7280; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.light-header h2 { color: #fff; }
.light-header p { color: rgba(255,255,255,.8); }

.section-badge {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: linear-gradient(135deg, rgba(255,107,53,.12), rgba(247,148,29,.12));
  color: #ff6b35; font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 6px;
}
.badge-white {
  background: rgba(255,255,255,.2); color: #fff;
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, #ff4500 0%, #ff8c00 50%, #ffa500 100%);
  backdrop-filter: blur(10px);
  padding: 0; transition: all .4s;
  box-shadow: 0 2px 20px rgba(255,69,0,.3);
}
.header.scrolled {
  background: linear-gradient(135deg, #cc3700 0%, #cc7000 50%, #cc8400 100%);
  box-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.nav {
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-icon-wrap { font-size: 1.6rem; }
.logo-text {
  font-size: 1.15rem; font-weight: 600; color: #fff; letter-spacing: -.02em;
}
.logo-text strong { font-weight: 800; }
.nav-links {
  display: flex; align-items: center; gap: 4px; margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: all .25s;
}
.nav-links a:hover { background: rgba(255,255,255,.2); color: #fff; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; margin-left: auto;
}
.hamburger span {
  width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: .3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #ff4500 0%, #ff7000 40%, #ff9800 70%, #ffb347 100%);
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 60px; position: relative; overflow: hidden;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.hs {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.hs1 { width: 500px; height: 500px; top: -150px; right: -100px; animation: floatUp 8s ease-in-out infinite; }
.hs2 { width: 300px; height: 300px; bottom: 50px; left: -80px; animation: floatUp 6s ease-in-out infinite reverse; }
.hs3 { width: 200px; height: 200px; top: 40%; right: 15%; animation: floatUp 10s ease-in-out infinite; }
@keyframes floatUp { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.2);
  color: #fff; padding: 8px 20px; border-radius: 50px;
  font-size: .85rem; font-weight: 600; margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.hero-title .highlight {
  display: inline-block;
  background: linear-gradient(90deg, #fff 0%, #ffe0b2 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(255,255,255,.88); font-size: 1.05rem;
  line-height: 1.75; margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.platforms { }
.platform-label { color: rgba(255,255,255,.7); font-size: .82rem; display: block; margin-bottom: 10px; }
.platform-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.pbadge {
  background: rgba(255,255,255,.18); color: #fff;
  padding: 6px 14px; border-radius: 20px; font-size: .8rem;
  font-weight: 500; backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25);
}

/* Hero Visual */
.hero-visual { position: relative; height: 460px; }
.hero-circle-bg {
  width: 380px; height: 380px; background: rgba(255,255,255,.12);
  border-radius: 50%; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.05)} }
.hero-plate {
  width: 200px; height: 200px; background: rgba(255,255,255,.2);
  border-radius: 50%; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; backdrop-filter: blur(8px);
  border: 3px solid rgba(255,255,255,.3);
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }
.plate-inner { animation: counter-rotateSlow 20s linear infinite; }
@keyframes counter-rotateSlow { from{transform:rotate(0deg)} to{transform:rotate(-360deg)} }
.floating-card {
  position: absolute; background: #fff; border-radius: 16px;
  padding: 14px 20px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  animation: floatCard 3s ease-in-out infinite;
}
.floating-card .fc-icon { font-size: 1.5rem; }
.floating-card .fc-num { font-size: 1.25rem; font-weight: 800; color: #ff6b35; line-height: 1; }
.floating-card .fc-label { font-size: .72rem; color: #6b7280; margin-top: 2px; }
.fc-main { top: 10px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.fc-a { bottom: 60px; left: 0; animation-delay: .5s; }
.fc-b { bottom: 60px; right: 0; animation-delay: 1s; }
@keyframes floatCard { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }
.fc-a, .fc-b { animation: floatCardSide 3s ease-in-out infinite; }
@keyframes floatCardSide { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* Animations */
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-40px)} to{opacity:1;transform:translateX(0)} }
.animate-fade-in { animation: fadeIn .8s ease forwards; }
.animate-fade-in-up { animation: fadeInUp .8s ease forwards; }
.animate-fade-in-right { animation: fadeInRight .9s ease forwards; }

/* ===== WHY US ===== */
.why-us { background: #f8f9fa; }
.why-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.why-card {
  background: #fff; border-radius: 20px; padding: 32px 24px;
  text-align: center; transition: all .35s;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(255,107,53,.15); }
.why-icon-bg {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 16px;
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: #1a1a2e; }
.why-card p { font-size: .875rem; color: #6b7280; line-height: 1.65; }

/* ===== SERVICES ===== */
.services {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative; overflow: hidden;
}
.services-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,107,53,.1) 0%, transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(247,148,29,.08) 0%, transparent 60%);
}
.services .container { position: relative; z-index: 1; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-bottom: 48px;
}
.service-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 36px 28px; transition: all .35s;
  backdrop-filter: blur(4px);
}
.service-card:hover {
  background: rgba(255,107,53,.15); border-color: rgba(255,107,53,.4);
  transform: translateY(-4px);
}
.service-icon {
  width: 60px; height: 60px; background: linear-gradient(135deg,#ff6b35,#f7941d);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #fff;
}
.service-card h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.7; }
.services-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== ADVANTAGES ===== */
.advantages { background: #fff; }
.fayda-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.fayda-left .section-badge { margin-bottom: 10px; }
.fayda-left h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800; color: #1a1a2e; line-height: 1.25; margin-bottom: 32px;
}
.fayda-list { display: flex; flex-direction: column; gap: 24px; }
.fayda-item { display: flex; gap: 16px; }
.fayda-check-icon {
  width: 32px; height: 32px; min-width: 32px;
  background: linear-gradient(135deg,#ff6b35,#f7941d);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; margin-top: 2px;
}
.fayda-text h4 { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.fayda-text p { font-size: .875rem; color: #6b7280; line-height: 1.65; }

.fayda-right { position: relative; }
.fayda-visual-wrap { position: relative; }
.fayda-orange-circle {
  width: 380px; height: 380px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,107,53,.15), rgba(247,148,29,.1));
  border: 2px solid rgba(255,107,53,.2);
  margin: 0 auto; position: relative;
}
.stats-grid {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 280px;
}
.stat-box {
  background: #fff; border-radius: 16px; padding: 20px;
  text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,.1);
  border: 1px solid rgba(255,107,53,.1);
}
.stat-number { display: block; font-size: 1.5rem; font-weight: 900; color: #ff6b35; line-height: 1; }
.stat-desc { display: block; font-size: .72rem; color: #6b7280; margin-top: 4px; }
.delivery-anim {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 24px;
}
.del-icon { font-size: 2.5rem; animation: driveRight 2s ease-in-out infinite; }
@keyframes driveRight { 0%,100%{transform:translateX(-5px)} 50%{transform:translateX(5px)} }
.del-dots { display: flex; gap: 6px; }
.del-dots span {
  width: 8px; height: 8px; background: #ff6b35; border-radius: 50%;
  animation: dotPulse 1.2s ease-in-out infinite;
}
.del-dots span:nth-child(2) { animation-delay: .2s; }
.del-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dotPulse { 0%,100%{opacity:.3;transform:scale(.8)} 50%{opacity:1;transform:scale(1)} }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #f8f9fa; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.testi-card {
  background: #fff; border-radius: 20px; padding: 32px;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  transition: all .3s; border: 1px solid #f0f0f0;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.featured-card {
  background: linear-gradient(135deg, #ff6b35, #f7941d); color: #fff;
  transform: scale(1.02);
}
.featured-card blockquote { color: rgba(255,255,255,.9); }
.featured-card .testi-author strong { color: #fff; }
.featured-card .testi-author span { color: rgba(255,255,255,.8); }
.testi-stars { font-size: 1rem; margin-bottom: 16px; }
.testi-card blockquote {
  font-size: .925rem; color: #4b5563; line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; background: rgba(255,107,53,.15);
  color: #ff6b35; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: .95rem;
}
.featured-card .testi-avatar { background: rgba(255,255,255,.3); color: #fff; }
.testi-author strong { display: block; font-size: .9rem; color: #1a1a2e; }
.testi-author span { font-size: .78rem; color: #9ca3af; }

/* ===== FAQ ===== */
.faq { background: #fff; }
.faq-wrapper { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid #e5e7eb; border-radius: 14px; overflow: hidden;
  transition: box-shadow .3s;
}
.faq-item.open { box-shadow: 0 4px 20px rgba(255,107,53,.15); border-color: rgba(255,107,53,.4); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px; font-size: .975rem; font-weight: 600;
  color: #1a1a2e; cursor: pointer; transition: background .2s;
}
.faq-q:hover { background: #fef9f7; }
.faq-ico {
  width: 28px; height: 28px; background: linear-gradient(135deg,#ff6b35,#f7941d);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 400; flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 20px; color: #6b7280; font-size: .925rem; line-height: 1.75; }

/* ===== CONTACT ===== */
.contact { background: linear-gradient(135deg,#f8f9fa,#fff0ea); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-info .section-badge { margin-bottom: 12px; }
.contact-info h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800;
  color: #1a1a2e; line-height: 1.25; margin-bottom: 14px;
}
.contact-info > p { color: #6b7280; line-height: 1.7; margin-bottom: 32px; }
.cinfo-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.cinfo-item { display: flex; gap: 14px; align-items: flex-start; }
.cinfo-ico { font-size: 1.4rem; margin-top: 2px; }
.cinfo-item strong { display: block; font-size: .85rem; color: #9ca3af; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.cinfo-item a, .cinfo-item span { display: block; color: #1a1a2e; font-size: .95rem; font-weight: 500; }
.cinfo-item a:hover { color: #ff6b35; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; padding: 14px 28px;
  border-radius: 50px; font-weight: 700; font-size: .95rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
  transition: all .3s;
}
.wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,.4); }
.contact-form-box {
  background: #fff; border-radius: 24px; padding: 40px;
  box-shadow: 0 10px 50px rgba(0,0,0,.1);
}
.contact-form-box h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; color: #1a1a2e; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .84rem; font-weight: 600; color: #374151; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #e5e7eb;
  border-radius: 10px; font-family: inherit; font-size: .925rem; color: #1a1a2e;
  transition: border-color .2s, box-shadow .2s; background: #fafafa;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: #ff6b35; box-shadow: 0 0 0 3px rgba(255,107,53,.12);
  background: #fff;
}
.form-group textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: #0d0d1a; color: #9ca3af; }
.footer-main { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-logo .logo-text { color: #fff; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin: 16px 0 20px; color: #6b7280; }
.footer-socials { display: flex; gap: 12px; }
.fsocial {
  width: 38px; height: 38px; background: rgba(255,255,255,.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: #9ca3af; transition: all .25s;
}
.fsocial:hover { background: #ff6b35; color: #fff; }
.footer-col h4 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span { font-size: .875rem; color: #6b7280; }
.footer-col a:hover { color: #ff6b35; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
  display: flex;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .82rem; color: #4b5563; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: #25d366; color: #fff; border-radius: 50px;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; font-weight: 700; font-size: .875rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: all .3s;
}
.wa-float-btn:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(37,211,102,.5); animation: none; }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 30px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1)} }

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
  opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease;
}
[data-aos="fadeInLeft"] { transform: translateX(-40px); }
[data-aos="fadeInRight"] { transform: translateX(40px); }
[data-aos="zoomIn"] { transform: scale(.9); }
[data-aos].aos-animate { opacity: 1; transform: translate(0) scale(1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-content { gap: 40px; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fayda-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .fayda-right { order: -1; }
  .fayda-orange-circle { width: 300px; height: 300px; }
  .stats-grid { width: 230px; gap: 12px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .nav-links, .btn-header { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: #ff4500;
    padding: 20px; gap: 4px;
  }
  .nav-links.open a { padding: 12px 16px; font-size: 1rem; border-radius: 8px; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { justify-content: center; }
  .platform-badges { justify-content: center; }
  .wa-float-btn span { display: none; }
  .wa-float-btn { border-radius: 50%; width: 60px; height: 60px; padding: 0; justify-content: center; }
  .stats-grid { width: 200px; }
  .stat-number { font-size: 1.2rem; }
  .contact-form-box { padding: 28px 20px; }
}
