/* ============================================================
   LUCKY USHANIYA — PORTFOLIO WEBSITE
   style.css — All design lives here
   
   HOW TO EDIT COLORS:
   Change the values in :root {} below.
   --orange is your brand color.
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── DESIGN TOKENS — LIGHT MODE ── */
:root {
  --orange:        #F56A1E;
  --orange-dark:   #d4560e;
  --orange-light:  #FDF3EC;
  --orange-mid:    rgba(245,106,30,0.12);

  --bg:            #ffffff;
  --bg-2:          #f7f7f5;
  --bg-3:          #FDF3EC;
  --surface:       #ffffff;
  --border:        rgba(33,33,33,0.09);

  --text:          #1a1a1a;
  --text-2:        #4a4a4a;
  --text-muted:    #888888;

  --radius-sm:     10px;
  --radius-md:     18px;
  --radius-lg:     28px;

  --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.10);

  --nav-h:         68px;
  --section-py:    96px;
  --max-w:         1120px;

  --transition:    0.25s ease;
  --focus-ring:    0 0 0 3px rgba(245,106,30,0.4);
}

/* ── DARK MODE TOKENS ── */
[data-theme="dark"] {
  --bg:            #0f0f0f;
  --bg-2:          #161616;
  --bg-3:          #1c1c1c;
  --surface:       #1a1a1a;
  --border:        rgba(255,255,255,0.08);

  --text:          #f0f0f0;
  --text-2:        #c0c0c0;
  --text-muted:    #777777;

  --shadow-sm:     0 2px 12px rgba(0,0,0,0.3);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.5);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Georgia', serif;
  line-height: 1.25;
  font-weight: 700;
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--orange);
  color: #fff;
  padding: 8px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

*:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── UTILITY ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.75;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Syne', sans-serif;
  border: 2px solid var(--orange);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  min-height: 52px;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245,106,30,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Syne', sans-serif;
  border: 2px solid var(--border);
  transition: all var(--transition);
  min-height: 52px;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 0;
  transition: gap var(--transition);
}
.btn-ghost:hover { gap: 14px; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── LOGO — SIGNATURE STYLE ── */
/* TO CHANGE LOGO TEXT: Edit the text inside <a class="nav-logo"> in each HTML file */
.nav-logo {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.nav-logo .dot {
  color: var(--orange);
}
.nav-logo:hover {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 4px 0;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Dark mode toggle button */
#theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text);
}
#theme-toggle:hover {
  border-color: var(--orange);
  color: var(--orange);
}
#theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Show sun icon in dark mode, moon in light mode */
.icon-moon { display: block; }
.icon-sun  { display: none; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun  { display: block; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  border-radius: 6px;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav dropdown */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--orange); }
.nav-mobile .mobile-cta {
  margin-top: 12px;
  background: var(--orange);
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  text-align: center;
  justify-content: center;
  border-bottom: none;
}
.nav-mobile .mobile-cta:hover { background: var(--orange-dark); color: #fff; }

/* ── HERO SECTION ── */
#hero {
  padding-top: var(--nav-h);
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(245,106,30,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(245,106,30,0.04) 0%, transparent 40%);
  pointer-events: none;
}

[data-theme="dark"] #hero::before {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(245,106,30,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(245,106,30,0.06) 0%, transparent 40%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 72px 24px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

/* Badge above headline */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-mid);
  border: 1px solid rgba(245,106,30,0.25);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.4); }
}
.hero-badge-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.3px;
}

/* Main headline */
.hero-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.18;
}
.hero-title .accent { color: var(--orange); }

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-sub strong {
  color: var(--text);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Stats strip */
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Hero photo side */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
}

/* 
  TO CHANGE HERO PHOTO:
  Replace the file at images/hero-lucky.jpg
  Keep the same filename and it updates automatically.
*/
.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Floating badge over photo */
.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  animation: float-card 4s ease-in-out infinite;
}
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero-float-card .float-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.hero-float-card .float-num {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-float-card .float-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── ABOUT SECTION ── */
#about {
  padding: var(--section-py) 0;
  background: var(--bg-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.about-photo-wrap {
  position: relative;
}

/*
  TO CHANGE ABOUT PHOTO:
  Replace images/lucky-award.jpg — same filename
*/
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-photo-caption {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
  font-style: italic;
}

.about-content p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 22px;
}

.about-content p:last-of-type {
  margin-bottom: 0;
}

/* Skills grid */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}
.skill-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── RESULTS SECTION ── */
#results {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.results-header {
  margin-bottom: 56px;
}

.results-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

/* Main 3 cards */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.result-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.result-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.result-card:hover::before {
  transform: scaleX(1);
}

.result-num {
  font-family: 'Syne', sans-serif;
  font-size: 54px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}
.result-industry {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 8px;
}
.result-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.result-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.result-tag {
  font-size: 11px;
  background: var(--orange-mid);
  color: var(--orange);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}

/* Supporting stats strip */
.results-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.strip-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}
.strip-industry {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 6px;
}
.strip-stat {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.strip-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── SERVICES SECTION ── */
#services {
  padding: var(--section-py) 0;
  background: var(--bg-3);
}

[data-theme="dark"] #services {
  background: var(--bg-2);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}

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

.service-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.service-card:hover .service-icon {
  background: var(--orange);
}
.service-card:hover .service-icon svg {
  stroke: #fff;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-mid);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-tag {
  font-size: 11px;
  background: var(--orange-mid);
  color: var(--orange);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}

/* ── PROCESS SECTION ── */
#process {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}
.process-header .section-sub {
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Connector line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(245,106,30,0.1));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 2px var(--orange);
}

.step-title {
  font-family: Georgia, 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── PORTFOLIO SECTION ── */
#portfolio {
  padding: var(--section-py) 0;
  background: var(--bg-2);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.project-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.project-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.project-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.project-thumb-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.project-thumb-text {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: rgba(255,255,255,0.12);
}

.project-body {
  padding: 24px;
}
.project-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.project-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.project-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.project-tag {
  font-size: 11px;
  background: var(--orange-mid);
  color: var(--orange);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}

/* ── CERTIFICATIONS SECTION ── */
#certifications {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.cert-header {
  text-align: center;
  margin-bottom: 52px;
}
.cert-header .section-sub {
  margin: 0 auto;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.cert-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: all var(--transition);
}
.cert-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.cert-issuer {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 6px;
}
.cert-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 6px;
}
.cert-date {
  font-size: 11px;
  color: var(--text-muted);
}

/* Award card */
.award-card {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.award-icon {
  font-size: 36px;
  flex-shrink: 0;
}
.award-content {}
.award-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.award-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* ── FAQ SECTION ── */
#faq {
  padding: var(--section-py) 0;
  background: var(--bg-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.faq-left .section-sub {
  margin-top: 14px;
}
.faq-left .btn-primary {
  margin-top: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: var(--orange);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  gap: 20px;
  user-select: none;
  min-height: 64px;
  width: 100%;
  text-align: left;
  background: none;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--orange); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background var(--transition);
}
.faq-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
}
.faq-item.open .faq-icon svg { stroke: #fff; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 0 22px;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 22px 20px;
}

/* ── CONTACT SECTION / PAGE ── */
#contact, .contact-page {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.page-hero + .contact-page {
  padding-top: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.contact-info p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: all var(--transition);
  min-height: 72px;
}
.contact-channel:hover {
  border-color: var(--orange);
  transform: translateX(4px);
}

.ch-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ch-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ch-info { flex: 1; }
.ch-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
}
.ch-val {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin-top: 2px;
}
.ch-arrow {
  color: var(--orange);
  font-size: 18px;
  font-weight: 300;
}

/* Contact form box */
.contact-form-box {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.form-title {
  font-family: Georgia, 'Georgia', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}

.form-success {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1.5px solid #22c55e;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 20px;
  color: #15803d;
  font-weight: 600;
  font-size: 14px;
}
[data-theme="dark"] .form-success {
  color: #4ade80;
  background: rgba(34,197,94,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-group label .req {
  color: var(--orange);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,106,30,0.1);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control.error { border-color: #ef4444; }

textarea.form-control {
  height: 110px;
  resize: vertical;
  min-height: 110px;
}

.form-error {
  font-size: 12px;
  color: #ef4444;
  display: none;
}
.form-group.has-error .form-error { display: block; }

.form-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245,106,30,0.3);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* What happens next — contact page */
.what-next {
  padding: 64px 0;
  background: var(--bg-2);
}
.what-next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.what-next-step {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.what-next-num {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}
.what-next-title {
  font-family: Georgia, 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.what-next-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Free audit callout — contact page */
.audit-callout {
  background: var(--orange-mid);
  border: 1.5px solid rgba(245,106,30,0.25);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.audit-callout-text h3 {
  font-family: Georgia, 'Georgia', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.audit-callout-text p {
  font-size: 15px;
  color: var(--text-2);
}

/* ── TOOLS SECTION ── */
#tools {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.tools-header {
  text-align: center;
  margin-bottom: 48px;
}
.tools-header .section-sub {
  margin: 0 auto;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tool-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--transition);
  min-height: 44px;
}
.tool-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.tool-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--bg);
  padding-bottom: 0;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 24px 64px;
}
.page-hero .section-label {
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -1.5px;
  max-width: 800px;
  margin-bottom: 20px;
}
.page-hero .page-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 36px;
}
.page-hero .hero-ctas {
  margin-bottom: 0;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--orange);
  padding: 64px 24px;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.cta-strip p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.cta-strip .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--orange);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Syne', sans-serif;
  transition: all var(--transition);
  min-height: 52px;
}
.cta-strip .btn-white:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--bg-2);
  padding: 60px 0 28px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Caveat', cursive;
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-logo .dot { color: var(--orange); }

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
  min-height: 36px;
  display: flex;
  align-items: center;
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-copy a {
  color: var(--orange);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 997;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ── SEO LANDING PAGE SPECIFIC ── */
.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.industry-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
}
.industry-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.industry-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 10px;
}
.industry-num {
  font-family: 'Syne', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}
.industry-title {
  font-family: Georgia, 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.industry-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.industry-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

/* Explainer sections — SEO landing */
.explainer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.explainer-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 28px;
  transition: all var(--transition);
}
.explainer-item:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.explainer-item h3 {
  font-family: Georgia, 'Georgia', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.explainer-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.explainer-item.full-width {
  grid-column: 1 / -1;
}

/* Freelancer vs agency table */
.vs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.vs-table thead tr {
  background: var(--orange);
  color: #fff;
}
.vs-table th {
  padding: 16px 20px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
.vs-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.vs-table tr:last-child td { border-bottom: none; }
.vs-table tbody tr:nth-child(even) { background: var(--bg-2); }
.vs-table .vs-good { color: #22c55e; font-weight: 600; }
.vs-table .vs-bad  { color: #ef4444; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 80px 24px 60px;
  }
  .hero-visual { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-photo-wrap { max-width: 320px; }

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

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

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

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .results-grid { grid-template-columns: 1fr; }
  .results-strip { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }

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

  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: relative; top: 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-box { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .what-next-grid { grid-template-columns: 1fr; }

  .industry-cards { grid-template-columns: 1fr; }
  .explainer-grid { grid-template-columns: 1fr; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .audit-callout { flex-direction: column; text-align: center; }

  .award-card { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: 100%; justify-content: center; }

  .cert-grid { grid-template-columns: 1fr; }
  .results-strip { grid-template-columns: 1fr; }

  .vs-table th:last-child,
  .vs-table td:last-child { display: none; }
}
