:root {
  --accent: #6c47ff;
  --accent2: #ff5c87;
  --black: #0a0a0b;
  --text: #333;
  --gray: #f8f8fb;
  --gray2: #888;
  --radius: 20px;
  --nav-h: 80px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; color: var(--text); line-height: 1.6; background: #fff; overflow-x: hidden; }
html { scroll-behavior: smooth; }

/* ── NAV ── */
nav {
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5vw;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.5px;
  color: var(--black); text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 0.9rem; font-weight: 600; transition: all .3s; position: relative; }
.nav-links a:not(.nav-cta):hover { 
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-cta { 
  background: linear-gradient(135deg, var(--accent), var(--accent2)) !important; 
  color: #fff !important; padding: 0.6rem 1.5rem; border-radius: 50px; 
  font-weight: 700 !important; box-shadow: 0 4px 15px rgba(108,71,255,0.3);
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(108,71,255,0.4); }

.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--black); }

/* ── HERO ── */
.hero {
  padding: calc(var(--nav-h) + 5rem) 5vw 8rem; text-align: center; position: relative;
  overflow: hidden; background: radial-gradient(circle at 80% 20%, rgba(108,71,255,0.05) 0%, transparent 40%);
}
.hero-badge {
  display: inline-block; padding: 0.5rem 1.2rem; background: rgba(108,71,255,0.08);
  color: var(--accent); border-radius: 50px; font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2rem;
}
.hero h1 {
  font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; color: var(--black); line-height: 1.1; margin-bottom: 2rem;
}
.hero p {
  font-size: 1.15rem; color: #555; max-width: 520px; line-height: 1.7;
  margin-bottom: 2.5rem; margin-left: auto; margin-right: auto;
}
/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; text-decoration: none; padding: 1.1rem 2.2rem; 
  border-radius: 50px; font-weight: 700; font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 30px rgba(108,71,255,0.3);
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none; cursor: pointer;
}
.btn-primary:hover { 
  transform: translateY(-4px) scale(1.02); 
  box-shadow: 0 15px 40px rgba(108,71,255,0.45); 
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  color: var(--black); text-decoration: none; padding: 1.1rem 2.2rem; 
  border-radius: 50px; font-weight: 700; font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(108,71,255,0.2);
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-ghost:hover { 
  background: #fff;
  transform: translateY(-4px); 
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hero-btns { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; margin-top: 1rem; }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08); flex-wrap: wrap; justify-content: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--black); }
.stat-label { font-size: 0.9rem; color: var(--gray2); margin-top: 4px; }

/* ── SECTION COMMON ── */
section { padding: 6rem 5vw; }
.section-header { text-align: center; margin-bottom: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-tag {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem; display: inline-block;
}
.section-header h2 { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--black); line-height: 1.2; margin-bottom: 1.2rem; }
.section-header p { font-size: 1.1rem; color: #666; }
.hl {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ── SERVICES ── */
.services { background: var(--black); color: #fff; border-radius: 40px; margin: 0 2.5vw; }
.services .section-header h2 { color: #fff; }
.services .section-header p { color: rgba(255,255,255,0.5); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.service-card {
  background: rgba(255,255,255,0.03); padding: 3rem 2rem; border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.05); transition: all .3s;
}
.service-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-5px); border-color: rgba(255,255,255,0.1); }
.service-icon { width: 50px; height: 50px; background: rgba(108,71,255,0.15); color: var(--accent); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; }
.service-card h3 { font-family: 'Syne', sans-serif; font-size: 1.4rem; margin-bottom: 1rem; }
.service-card p { font-size: 0.95rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.service-link { 
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none; font-weight: 700; font-size: 0.9rem; 
  display: flex; align-items: center; gap: 6px; margin-top: auto; 
  transition: opacity .2s;
}
.service-link:hover { opacity: 0.8; }
.service-link i { color: var(--accent2); }

/* ── PORTFOLIO ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.project-card { border-radius: 30px; overflow: hidden; background: var(--gray); text-decoration: none; color: inherit; transition: all .3s; border: 1px solid #f0f0f0; }
.project-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.project-thumb { height: 260px; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #fff; }
.project-thumb.c1 { background: linear-gradient(135deg, #6c47ff, #ff5c87); }
.project-thumb.c2 { background: linear-gradient(135deg, #00f2fe, #4facfe); }
.project-thumb.c3 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.project-info { padding: 2rem; }
.project-tag { font-size: 0.8rem; font-weight: 700; color: var(--accent); margin-bottom: 0.5rem; text-transform: uppercase; }
.project-info h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; margin-bottom: 0.5rem; }
.project-info p { font-size: 0.95rem; color: var(--gray2); }

/* ── TESTIMONIALS ── */
.testimonials { background: #fff; padding: 8rem 5vw; position: relative; }
.testimonials-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem; 
  margin-top: 3rem; 
}
.testimonial-card {
  background: #fff; padding: 3rem 2rem; border-radius: 24px; 
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; gap: 1.2rem; 
  border: 1px solid #f0f0f0; position: relative;
  transition: all .3s ease;
}
.testimonial-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.testi-stars { display: flex; gap: 4px; color: #ffc107; }
.testi-stars svg { width: 18px; height: 18px; fill: currentColor; }
.testi-text { color: #444; line-height: 1.7; font-size: 1rem; font-style: italic; }
.testi-user { display: flex; align-items: center; gap: 1rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid #f5f5f5; }
.testi-avatar { 
  width: 48px; height: 48px; 
  background: linear-gradient(135deg, var(--accent), var(--accent2)); 
  border-radius: 50%; display: flex; align-items: center; justify-content: center; 
  font-weight: 800; color: #fff; font-size: 0.85rem; flex-shrink: 0;
}
.testi-info h4 { font-size: 1rem; color: var(--black); font-family: 'Syne', sans-serif; margin-bottom: 2px; }
.testi-info p { font-size: 0.8rem; color: #888; margin: 0; }

/* ── FAQ ── */
.faq { padding: 8rem 5vw; background: #fafafa; }
.faq-container { max-width: 800px; margin: 4rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { 
  background: #fff; border-radius: 20px; overflow: hidden; 
  border: 1px solid #eee; transition: all .3s ease; 
}
.faq-item summary { 
  padding: 1.5rem 2rem; list-style: none; cursor: pointer; font-weight: 700; 
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Syne', sans-serif; font-size: 1.1rem; color: var(--black);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: ''; width: 8px; height: 8px; background: var(--accent); 
  border-radius: 50%; margin-right: 15px; flex-shrink: 0;
}
.faq-item summary i { 
  transition: transform .3s; color: var(--accent); 
  background: #f5f0ff; width: 32px; height: 32px; 
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.faq-item[open] { border-color: var(--accent); box-shadow: 0 10px 30px rgba(108,71,255,0.1); }
.faq-item[open] summary i { transform: rotate(180deg); background: var(--accent); color: #fff; }
.faq-content { padding: 0 2rem 2rem 3.5rem; color: #666; line-height: 1.6; font-size: 1rem; }

/* ── PROCESS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; }
.step { text-align: center; }
.step-num { width: 50px; height: 50px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: 'Syne', sans-serif; margin: 0 auto 1.5rem; font-size: 1.2rem; }
.step h4 { font-family: 'Syne', sans-serif; font-size: 1.2rem; margin-bottom: 0.8rem; }
.step p { font-size: 0.9rem; color: #666; }

/* ── CTA ── */
.cta-section { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; text-align: center; padding: 6rem 5vw; border-radius: 40px; margin: 0 2.5vw 6rem; }
.cta-section h2 { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; margin-bottom: 1.5rem; }
.cta-section p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2.5rem; }
.btn-white { background: #fff; color: var(--accent); padding: 1.1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 800; display: inline-flex; align-items: center; gap: 10px; transition: all .3s; }
.btn-white:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(255,255,255,0.2); }

/* ── FOOTER ── */
footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 6rem 5vw 3rem; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; color: #fff; text-decoration: none; margin-bottom: 1rem; display: block; }
.footer-logo span { color: var(--accent); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; transition: all .3s; }
.social-link:hover { background: var(--accent); transform: translateY(-3px); }
.footer-contact a { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; font-size: 0.95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 3rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; font-size: 0.85rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: inherit; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }

/* ── SUBPAGES ── */
.page-hero { padding: 10rem 5vw 6rem; background: linear-gradient(135deg, #fafafe 0%, #f0ecff 50%, #fff0f5 100%); text-align: center; }
.page-hero-tag { font-size: 0.8rem; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; display: block; }
.page-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.1; margin-bottom: 1.5rem; }
.page-hero p { font-size: 1.2rem; color: #666; max-width: 700px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-contact { margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-btns { flex-direction: column; }
}
