/*
Theme Name: Intelizign
Description: Custom theme for Intelizign
Version: 1.0
*/

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

:root {
  --primary: #2563eb;
  --accent: #e85d2f;
  --dark: #1a1a2e;
  --text: #374151;
  --light: #f9fafb;
  --muted: #6b7280;
  --radius: 12px;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

/* NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.site-logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.site-nav a {
  margin-left: 28px;
  color: var(--text);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s;
}
.site-nav a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
}
.nav-cta:hover { background: #1d4ed8; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #16213e 60%, #0f3460 100%);
  color: #fff;
  padding: 100px 24px;
  text-align: center;
}
.hero-inner { max-width: 780px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(37,99,235,.3);
  border: 1px solid rgba(37,99,235,.5);
  color: #93c5fd;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero h1 span { color: #60a5fa; }
.hero p { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: #1d4ed8; transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: border-color .2s, transform .2s;
}
.btn-outline:hover { border-color: #fff; transform: translateY(-2px); }

/* WHAT WE DO STRIP */
.what-strip {
  background: var(--primary);
  color: #fff;
  padding: 28px 24px;
  text-align: center;
}
.what-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; }
.what-strip-item { font-size: .95rem; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.what-strip-item::before { content: '✓'; font-weight: 700; }

/* SECTIONS COMMON */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin-bottom: 48px; }

/* ABOUT */
.about { background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.stat-box { background: #fff; border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.stat-box .num { font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat-box .label { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.about-image { background: linear-gradient(135deg, #dbeafe, #bfdbfe); border-radius: 20px; height: 380px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }

/* SERVICES */
.services { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.service-card {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(37,99,235,.12); transform: translateY(-4px); border-color: var(--primary); }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-card p { font-size: .92rem; color: var(--muted); line-height: 1.6; }

/* WHY */
.why { background: var(--dark); color: #fff; }
.why .section-title { color: #fff; }
.why .section-sub { color: #94a3b8; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: background .2s;
}
.why-card:hover { background: rgba(37,99,235,.2); }
.why-card .icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: .88rem; color: #94a3b8; }

/* TESTIMONIALS */
.testimonials { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  position: relative;
}
.testimonial-card::before { content: '"'; font-size: 4rem; color: var(--primary); opacity: .2; position: absolute; top: 12px; left: 24px; line-height: 1; font-family: Georgia, serif; }
.stars { color: #f59e0b; font-size: .9rem; margin-bottom: 12px; }
.testimonial-card p { font-size: .95rem; color: var(--text); font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #60a5fa); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .9rem; }
.author-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.author-role { font-size: .8rem; color: var(--muted); }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 16px; }
.cta-banner p { font-size: 1.1rem; color: #bfdbfe; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-white {
  background: #fff;
  color: var(--primary);
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  margin: 0 8px 8px;
  display: inline-block;
  transition: transform .2s;
}
.cta-banner .btn-white:hover { transform: translateY(-2px); }
.cta-banner .btn-ghost {
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  margin: 0 8px 8px;
  display: inline-block;
  transition: border-color .2s, transform .2s;
}
.cta-banner .btn-ghost:hover { border-color: #fff; transform: translateY(-2px); }

/* FAQ */
.faq { background: #fff; }
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .chevron { font-size: .8rem; color: var(--primary); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 20px; font-size: .95rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* FOOTER */
.site-footer { background: var(--dark); color: #94a3b8; padding: 60px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; color: #94a3b8; text-decoration: none; font-size: .9rem; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .85rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { height: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
