:root {
  --orange: #f97316;
  --orange-dark: #ea670c;
  --blue: #1b74b8;
  --blue-dark: #155e94;
  --black: #0f1419;
  --white: #ffffff;
  --muted: #5b6770;
  --bg-alt: #f5f8fb;
  --border: #e6ecf2;
  --gradient: linear-gradient(135deg, var(--blue), var(--blue-dark));
  --shadow: 0 18px 50px -20px rgba(15, 20, 25, 0.25);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, h4, .brand { font-family: "Plus Jakarta Sans", sans-serif; }

.container { width: min(1180px, 92%); margin: 0 auto; }

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary { background: var(--gradient); color: var(--white); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -10px rgba(27, 116, 184, 0.5); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-block { width: 100%; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.header.scrolled { box-shadow: 0 6px 24px -16px rgba(15,20,25,0.4); border-color: var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; }
.brand-logo { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a { text-decoration: none; color: var(--black); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:not(.nav-cta):hover { color: var(--blue); }
.nav-links a.nav-cta { color: #ffffff !important; padding: 0.6rem 1.3rem; }
.nav-links a.nav-cta:hover { color: #ffffff !important; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.menu-toggle span { width: 26px; height: 3px; background: var(--black); border-radius: 3px; transition: 0.3s; }

/* Hero */
.hero { padding: 4.5rem 0 5rem; background: radial-gradient(circle at 80% 20%, rgba(27,116,184,0.08), transparent 40%), radial-gradient(circle at 10% 80%, rgba(249,115,22,0.08), transparent 40%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1.1; font-weight: 800; margin-bottom: 1.1rem; }
.hero p { color: var(--muted); font-size: 1.08rem; max-width: 540px; margin-bottom: 1.8rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.7rem; font-family: "Plus Jakarta Sans"; color: var(--blue); }
.hero-stats span { font-size: 0.85rem; color: var(--muted); }
.hero-media img { width: 100%; border-radius: 24px; box-shadow: var(--shadow); }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 0.8rem; }
.section-head p { color: var(--muted); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(27,116,184,0.12));
  margin-bottom: 1.2rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* Industries */
.industries { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.industry {
  display: flex; align-items: center; gap: 0.8rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  font-weight: 600;
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
}
.industry span { font-size: 1.4rem; }
.industry:hover { transform: translateY(-4px); border-color: var(--orange); color: var(--orange); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-media img { width: 100%; border-radius: 24px; box-shadow: var(--shadow); }
.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.about-content p { color: var(--muted); margin-bottom: 1.3rem; }
.check-list { list-style: none; margin-bottom: 1.8rem; }
.check-list li { position: relative; padding-left: 2rem; margin-bottom: 0.7rem; font-weight: 500; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--gradient); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 0.75rem; font-weight: 700; }

/* Reviews */
.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 1rem; }
.review > p { color: var(--muted); font-style: italic; margin-bottom: 1.5rem; }
.reviewer { display: flex; align-items: center; gap: 0.8rem; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gradient); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: "Plus Jakarta Sans"; }
.reviewer strong { display: block; font-size: 0.95rem; }
.reviewer span { font-size: 0.82rem; color: var(--muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 0.8rem; }
.contact-info > p { color: var(--muted); margin-bottom: 2rem; }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.ci-icon { width: 48px; height: 48px; flex: none; border-radius: 12px; background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(27,116,184,0.12)); display: grid; place-items: center; font-size: 1.3rem; }
.contact-list strong { display: block; margin-bottom: 0.2rem; }
.contact-list a { color: var(--blue); text-decoration: none; font-weight: 600; }
.contact-list p { color: var(--muted); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fbfdff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,116,184,0.12); }
.form-note { text-align: center; margin-top: 0.8rem; font-weight: 600; color: var(--blue); min-height: 1.2rem; }

/* Footer */
.footer { background: var(--black); color: #c7d0d8; padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer-logo { height: 40px; background: #fff; padding: 6px 10px; border-radius: 8px; margin-bottom: 1rem; }
.footer h4 { color: #fff; margin-bottom: 1rem; font-size: 1rem; }
.footer a { display: block; color: #c7d0d8; text-decoration: none; margin-bottom: 0.6rem; font-size: 0.92rem; transition: color 0.2s; }
.footer a:hover { color: var(--orange); }
.footer p { font-size: 0.92rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2.5rem; padding-top: 1.5rem; text-align: center; font-size: 0.88rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: 70%; max-width: 320px;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 5rem 2rem; gap: 1.5rem; transform: translateX(100%);
    transition: transform 0.3s ease; box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateX(0); }
  .menu-toggle { display: flex; z-index: 110; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}

/* === Creative Services Section === */
.services-section { position: relative; overflow: hidden; background:
  radial-gradient(circle at 0% 0%, rgba(27,116,184,0.07), transparent 45%),
  radial-gradient(circle at 100% 100%, rgba(249,115,22,0.08), transparent 45%),
  var(--white);
}
.services-bg-shape {
  position: absolute; pointer-events: none;
  top: 10%; right: -120px; width: 380px; height: 380px;
  background: var(--gradient); opacity: 0.06;
  border-radius: 50%; filter: blur(20px);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem 1.8rem 1.8rem;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s, border-color 0.3s;
  isolation: isolate;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  opacity: 0; transition: opacity 0.4s ease;
  z-index: -1;
}
.service-card::after {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  opacity: 0.08; border-radius: 50%;
  transition: transform 0.5s ease, opacity 0.4s ease;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px -25px rgba(15,20,25,0.25); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scale(2.2); opacity: 0.15; }
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .know-more { color: #fff; }
.service-card:hover .know-more { border-color: rgba(255,255,255,0.55); }
.service-card:hover .service-icon { background: rgba(255,255,255,0.2); }
.service-card:hover .service-icon span { transform: rotate(-8deg) scale(1.1); }

.service-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent) 18%, white), color-mix(in oklab, var(--accent2) 18%, white));
  margin-bottom: 1.4rem;
  transition: background 0.3s ease;
}
.service-icon span { font-size: 1.8rem; transition: transform 0.35s ease; display: inline-block; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.55rem; transition: color 0.3s; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.4rem; transition: color 0.3s; min-height: 3.5em; }
.know-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 700; font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid color-mix(in oklab, var(--accent) 35%, white);
  border-radius: 50px;
  transition: gap 0.25s ease, color 0.3s, border-color 0.3s;
}
.know-more span { transition: transform 0.25s ease; }
.know-more:hover { gap: 0.7rem; }
.know-more:hover span { transform: translateX(3px); }

/* === Service detail page === */
.service-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, var(--accent, var(--blue)), var(--accent2, var(--blue-dark)));
  color: #fff;
}
.service-hero .eyebrow { color: rgba(255,255,255,0.85); }
.service-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.service-hero p { font-size: 1.1rem; max-width: 680px; opacity: 0.92; }
.service-back { display: inline-flex; align-items: center; gap: 0.4rem; color: #fff; opacity: 0.85; text-decoration: none; font-weight: 600; margin-bottom: 1.5rem; }
.service-back:hover { opacity: 1; }
.service-body { padding: 4rem 0; }
.service-body h2 { font-size: 1.8rem; margin: 2rem 0 1rem; }
.service-body h2:first-child { margin-top: 0; }
.service-body p { color: var(--muted); margin-bottom: 1rem; font-size: 1.02rem; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.2rem; margin: 1.5rem 0 2rem; }
.feature-item { padding: 1.3rem; border: 1px solid var(--border); border-radius: 14px; background: #fff; }
.feature-item strong { display: block; margin-bottom: 0.3rem; }
.feature-item span { color: var(--muted); font-size: 0.92rem; }
.service-cta { background: var(--bg-alt); padding: 3rem; border-radius: 20px; text-align: center; margin-top: 2rem; }
.service-cta h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.service-cta p { color: var(--muted); margin-bottom: 1.5rem; }
