/* ==========================================================================
   OG Marketing — Global Stylesheet
   Brand: orange fire gradient (from logo) on a light theme
   ========================================================================== */

:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-deep: #c2410c;
  --primary-light: #fdba74;
  --amber: #f59e0b;
  --gradient: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
  --gradient-soft: linear-gradient(135deg, #fff7ed 0%, #fffbeb 100%);

  --dark: #1f2937;
  --gray: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;

  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07);
  --shadow: 0 10px 30px rgba(31, 41, 55, 0.08);
  --shadow-lg: 0 20px 50px rgba(234, 88, 12, 0.14);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --font-head: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

section {
  padding: 96px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(249, 115, 22, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: rgba(249, 115, 22, 0.08);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--primary-deep);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- Section headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(249, 115, 22, 0.1);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

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

.section-head p {
  font-size: 17px;
}

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 46px;
  width: auto;
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--dark);
  line-height: 1.1;
}

.brand-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-dark);
  background: rgba(249, 115, 22, 0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta .btn {
  padding: 12px 24px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--dark);
  margin: 5px 0;
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 170px 0 100px;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(249, 115, 22, 0.14), transparent 60%),
    radial-gradient(700px 400px at 0% 110%, rgba(245, 158, 11, 0.12), transparent 55%),
    var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 5.2vw, 60px);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

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

.hero p.lead {
  font-size: 18px;
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stats .stat strong {
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--dark);
  display: block;
}

.hero-stats .stat strong em {
  font-style: normal;
  color: var(--primary);
}

.hero-stats .stat span {
  font-size: 14px;
  color: var(--gray);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  border: 1px solid rgba(249, 115, 22, 0.12);
}

.hero-card .float-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  margin-bottom: 18px;
  background: var(--gradient-soft);
  border-radius: var(--radius);
}

.float-tag .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--gradient);
  color: var(--white);
  font-size: 20px;
}

.float-tag h4 {
  font-size: 15px;
}

.float-tag p {
  font-size: 13px;
}

.growth-bar {
  padding: 16px;
  border: 1px dashed rgba(249, 115, 22, 0.4);
  border-radius: var(--radius);
}

.growth-bar .bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.growth-bar .bar-label span:last-child {
  color: var(--primary-dark);
}

.bar-track {
  height: 12px;
  background: #fee2c8;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 82%;
  background: var(--gradient);
  border-radius: var(--radius-full);
  animation: grow 2.5s ease forwards;
}

@keyframes grow {
  from { width: 0; }
}

.badge-pop {
  position: absolute;
  top: -22px;
  right: -12px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-pop i {
  color: var(--amber);
}

/* ---------- Logo strip ---------- */
.logo-strip {
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logo-strip .strip-label {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 26px;
  font-weight: 600;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
  opacity: 0.75;
}

.strip-grid span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--dark);
  text-align: center;
  padding: 16px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  transition: 0.3s;
}

.strip-grid span:hover {
  border-color: var(--primary-light);
  color: var(--primary-dark);
  opacity: 1;
}

/* ---------- Services ---------- */
.services {
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.25);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--gradient-soft);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  margin-bottom: 18px;
}

.service-card .link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card .link:hover {
  gap: 12px;
}

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.why-grid .features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature .icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--gradient-soft);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.feature h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.feature p {
  font-size: 14px;
}

.why-visual {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.why-visual::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  bottom: -80px;
  right: -80px;
}

.why-visual h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 14px;
}

.why-visual p {
  opacity: 0.95;
  margin-bottom: 26px;
}

.why-visual ul li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 500;
  margin-bottom: 14px;
}

.why-visual ul li i {
  background: rgba(255, 255, 255, 0.22);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0;
}

.stats-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stats-band .stat h3 {
  color: var(--white);
  font-size: 40px;
}

.stats-band .stat h3 em {
  font-style: normal;
  color: var(--amber);
}

.stats-band .stat p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 6px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--light);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.testi-card .stars {
  color: var(--amber);
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testi-card p {
  font-size: 15px;
  margin-bottom: 24px;
}

.testi-card .who {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-card .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
}

.testi-card .who h4 {
  font-size: 15px;
}

.testi-card .who span {
  font-size: 13px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gradient);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  top: -120px;
  left: -80px;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  bottom: -90px;
  right: 60px;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(26px, 3.6vw, 40px);
  margin-bottom: 10px;
}

.cta-inner p {
  opacity: 0.95;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 168px 0 72px;
  background:
    radial-gradient(800px 400px at 90% -20%, rgba(249, 115, 22, 0.14), transparent 60%),
    var(--white);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 50px);
  margin-bottom: 14px;
}

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

.page-hero p {
  max-width: 620px;
  margin-inline: auto;
  font-size: 17px;
}

.crumbs {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 18px;
}

.crumbs a {
  color: var(--primary-dark);
}

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-grid .img-wrap {
  position: relative;
}

.about-grid .img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-grid .img-wrap::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  opacity: 0.12;
  z-index: -1;
}

.exp-chip {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: var(--gradient);
  color: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.exp-chip strong {
  font-family: var(--font-head);
  font-size: 32px;
  display: block;
  line-height: 1;
}

.exp-chip span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Values */
.values {
  background: var(--light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.value-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: var(--gradient-soft);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
}

/* CEO section */
.ceo {
  background: var(--white);
}

.ceo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.ceo-card {
  position: relative;
  background: var(--gradient-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid rgba(249, 115, 22, 0.18);
}

.ceo-card img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

.ceo-card .ceo-badge {
  position: absolute;
  top: -18px;
  right: 26px;
  background: var(--gradient);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
}

.ceo-info h3 {
  font-size: 30px;
  margin-bottom: 4px;
}

.ceo-info .role {
  color: var(--primary-dark);
  font-weight: 600;
  font-family: var(--font-head);
  margin-bottom: 20px;
  display: inline-block;
}

.ceo-info p {
  margin-bottom: 20px;
}

.ceo-quote {
  background: var(--gradient-soft);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-style: italic;
  color: var(--dark);
  font-size: 17px;
  margin-top: 26px;
}

.ceo-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

/* Mission / vision */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mv-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.mv-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* ---------- Services page ---------- */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-detail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-detail .top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.service-detail .top .icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--gradient-soft);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.service-detail h3 {
  font-size: 20px;
}

.service-detail .tag {
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 600;
  font-family: var(--font-head);
}

.service-detail ul.tick {
  margin: 18px 0 22px;
}

.service-detail ul.tick li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.service-detail ul.tick li i {
  color: var(--primary);
  margin-top: 4px;
}

/* Process */
.process {
  background: var(--light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
}

.process-step .num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
}

/* ---------- Portfolio ---------- */
.portfolio-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--gray);
  cursor: pointer;
  transition: 0.25s;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.filter-btn.active {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.work-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.work-card .thumb {
  background: var(--gradient-soft);
  height: 190px;
  display: grid;
  place-items: center;
  position: relative;
}

.work-card .thumb .icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--gradient);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: var(--shadow-lg);
}

.work-card .thumb .cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  color: var(--primary-dark);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.work-card .body {
  padding: 24px;
}

.work-card .body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.work-card .body p {
  font-size: 14px;
  margin-bottom: 16px;
}

.work-card .results {
  display: flex;
  gap: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.work-card .results div strong {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--dark);
  display: block;
}

.work-card .results div strong em {
  font-style: normal;
  color: var(--primary);
}

.work-card .results div span {
  font-size: 12px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info .info-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 22px;
}

.info-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row .icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--gradient-soft);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.info-row h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.info-row p,
.info-row a {
  font-size: 15px;
  color: var(--gray);
}

.info-row a:hover {
  color: var(--primary-dark);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.form-card > p {
  margin-bottom: 26px;
  font-size: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 12px;
}

.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #047857;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 20px;
}

.form-success.show {
  display: block;
}

.form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 20px;
}

.form-error a {
  color: #b91c1c;
  font-weight: 600;
  text-decoration: underline;
}

.form-error.show {
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 56px;
}

.footer .brand {
  margin-bottom: 18px;
}

.footer .brand-text {
  color: var(--white);
}

.footer-about p {
  font-size: 14px;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 22px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--amber);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact li i {
  color: var(--amber);
  margin-top: 3px;
}

.footer-contact a:hover {
  color: var(--amber);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 16px;
  transition: 0.25s;
}

.socials a:hover {
  background: var(--gradient);
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--amber);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid,
  .testi-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .about-grid,
  .ceo-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    right: 0;
    width: min(320px, 82vw);
    height: calc(100vh - 78px);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 30px 22px;
    gap: 6px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 17px;
    padding: 14px 18px;
  }

  .nav-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    padding: 140px 0 72px;
  }

  .services-grid,
  .testi-grid,
  .portfolio-grid,
  .services-page-grid,
  .mv-grid,
  .contact-grid,
  .why-grid .features {
    grid-template-columns: 1fr;
  }

  .stats-band .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
