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

:root {
  --green: #C8FF00;
  --navy: #1A2B6D;
  --navy-dark: #0F1A4A;
  --navy-light: #243580;
  --white: #FFFFFF;
  --gray: #F4F6FF;
  --text-muted: #8898C8;
  --font: 'Prompt', sans-serif;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(26,43,109,0.12);
}

html { scroll-behavior: smooth; }

/* Selection + scrollbar */
::selection { background: var(--green); color: var(--navy-dark); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY HELPERS ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  display: block;
}
.section-label.light { color: var(--green); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy-dark);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1rem;
  color: #5566AA;
  max-width: 560px;
  margin-bottom: 48px;
}
.section-desc.light { color: rgba(255,255,255,0.75); }

.accent { color: var(--green); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(200,255,0,0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: rgba(255,255,255,0.22);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::before { left: 140%; }
.btn-primary:hover {
  background: #d9ff33;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,255,0,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-plan {
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 14px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: auto;
  transition: all 0.25s;
}
.btn-plan:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.btn-plan-popular {
  display: block;
  text-align: center;
  background: var(--green);
  color: var(--navy-dark);
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  margin-top: auto;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(200,255,0,0.4);
}
.btn-plan-popular:hover {
  background: #d9ff33;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,255,0,0.55);
}

.btn-cta-primary {
  background: var(--navy);
  color: var(--white);
  font-size: 1.05rem;
  padding: 16px 36px;
  box-shadow: 0 4px 20px rgba(26,43,109,0.25);
}
.btn-cta-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,43,109,0.4);
}

.btn-cta-outline {
  background: transparent;
  color: var(--navy-dark);
  border: 2.5px solid var(--navy);
  font-size: 1.05rem;
  padding: 16px 36px;
}
.btn-cta-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  padding: 0 24px;
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(15,26,74,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.logo-bracket { color: var(--green); }
.logo-sub {
  font-size: 0.55rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  margin-left: 6px;
  align-self: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-links .nav-cta {
  background: var(--green);
  color: var(--navy-dark);
  font-weight: 700;
  padding: 9px 20px;
}
.nav-links .nav-cta:hover {
  background: #d9ff33;
  color: var(--navy-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero-tagline { display: none; }
.hero-banner-img {
  display: none;
}

section.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
}
section.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('team.png');
  background-size: auto 125%;
  background-position: right -160px;
  background-repeat: no-repeat;
  opacity: 0.9;
  z-index: 0;
}
section.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  /* ซ้าย→ขวา: navy ทึบฝั่งข้อความ แล้ว fade ออกกลางภาพ */
  background: linear-gradient(
    to right,
    rgba(15,26,74,1)    0%,
    rgba(15,26,74,1)    40%,
    rgba(15,26,74,0.55) 55%,
    rgba(15,26,74,0)    68%
  );
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 24px 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-content { max-width: 600px; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-sub strong { color: var(--green); }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ===== PAIN POINTS ===== */
.pain-section {
  padding: 100px 0;
  background: var(--gray);
}
.pain-section .container { text-align: center; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s, border-top-color 0.3s;
  border: none;
  border-top: 3px solid transparent;
}
.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,43,109,0.15);
  border-top-color: var(--green);
}
.pain-icon {
  width: 60px;
  height: 60px;
  background: rgba(200,255,0,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
  transition: background 0.3s, transform 0.3s;
}
.pain-card:hover .pain-icon {
  background: rgba(200,255,0,0.2);
  transform: scale(1.08) rotate(-4deg);
}
.pain-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 10px; }
.pain-card p { font-size: 0.875rem; color: #6677AA; line-height: 1.65; }

/* ===== SOLUTION ===== */
.solution-section {
  padding: 100px 0;
  background: var(--navy);
}

.solution-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.solution-list li {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.solution-list li strong { color: var(--green); }
.check {
  background: var(--green);
  color: var(--navy-dark);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 2px;
}

.process-flow {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,255,0,0.15);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.process-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border-radius: 12px;
  transition: background 0.2s;
}
.process-step:hover { background: rgba(200,255,0,0.06); }
.highlight-step { background: rgba(200,255,0,0.08); border: 1px solid rgba(200,255,0,0.2); border-radius: 12px; }
.step-num { font-size: 1.5rem; font-weight: 900; color: var(--green); min-width: 48px; }
.step-info { display: flex; flex-direction: column; }
.step-info strong { color: var(--white); font-size: 0.95rem; }
.step-info span { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.process-arrow { text-align: center; color: rgba(200,255,0,0.4); font-size: 1.2rem; padding: 4px 0; }

/* ===== SERVICES ===== */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 2px solid transparent;
  transition: all 0.3s;
  cursor: default;
}
.service-card:hover {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 8px 32px rgba(200,255,0,0.12);
  transform: translateY(-4px);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(26,43,109,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--navy);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--green);
  transform: scale(1.08);
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 12px; }
.service-card p { font-size: 0.875rem; color: #6677AA; line-height: 1.65; }

/* ===== CLIENTS ===== */
.clients-section {
  padding: 80px 0;
  background: var(--navy-dark);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.client-logo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  cursor: default;
  min-height: 100px;
}
.client-logo-card:hover {
  background: rgba(200,255,0,0.06);
  border-color: rgba(200,255,0,0.25);
  transform: translateY(-3px);
}
.client-logo-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.25s;
}
.client-logo-card:hover img { opacity: 1; }
.client-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.client-initial { font-size: 1.4rem; font-weight: 900; color: rgba(255,255,255,0.2); letter-spacing: 0.05em; }
.client-name { font-size: 0.7rem; color: rgba(255,255,255,0.2); letter-spacing: 0.1em; text-transform: uppercase; }
.clients-note { font-size: 0.75rem; color: rgba(255,255,255,0.2); text-align: center; font-style: italic; }

/* ===== PORTFOLIO ===== */
.portfolio-section {
  padding: 100px 0;
  background: var(--white);
}

.portfolio-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid #DDE2F5;
  background: transparent;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: #6677AA;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid #EEF0FA;
  transition: transform 0.3s, box-shadow 0.3s;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,43,109,0.14);
}

.portfolio-thumb {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-thumb { background: linear-gradient(135deg, var(--navy) 0%, #2A4090 100%); }
.content-thumb { background: linear-gradient(135deg, #0F3D2F 0%, #1A6B50 100%); }
.ads-thumb { background: linear-gradient(135deg, #3D0F2F 0%, #8B1A5A 100%); }

.thumb-placeholder { font-size: 4rem; z-index: 1; }
.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 2;
}
.portfolio-card:hover .thumb-overlay { background: rgba(0,0,0,0.3); }
.play-icon, .view-icon {
  font-size: 2.5rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s;
}
.portfolio-card:hover .play-icon,
.portfolio-card:hover .view-icon { opacity: 1; transform: scale(1); }

.portfolio-info { padding: 24px; }
.portfolio-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(26,43,109,0.08);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.portfolio-info h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; line-height: 1.4; }
.portfolio-info p { font-size: 0.82rem; color: #6677AA; line-height: 1.6; }

/* ===== PRICING ===== */
.pricing-section {
  padding: 100px 0;
  background: var(--navy-dark);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(200,255,0,0.3); }
.pricing-card.popular { border: 2px solid var(--green); background: rgba(200,255,0,0.04); transform: scale(1.02); box-shadow: 0 0 40px rgba(200,255,0,0.12), 0 8px 32px rgba(0,0,0,0.3); }
.pricing-card.popular:hover { transform: scale(1.02) translateY(-4px); box-shadow: 0 0 60px rgba(200,255,0,0.22), 0 12px 40px rgba(0,0,0,0.4); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--navy-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-header { border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; }
.plan-type { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
.plan-duration { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-num { font-size: 2.4rem; font-weight: 900; color: var(--white); }
.price-unit { font-size: 1rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.price-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

.contents-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; color: var(--green); text-transform: uppercase; margin-bottom: 10px; }
.contents-breakdown { display: flex; flex-direction: column; gap: 6px; }
.contents-breakdown span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li { font-size: 0.84rem; color: rgba(255,255,255,0.7); padding-left: 18px; position: relative; line-height: 1.45; }
.plan-features li::before { content: '•'; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 24px;
  margin-bottom: 60px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.pricing-note strong { color: rgba(255,255,255,0.9); }

.shoot-day {
  background: rgba(200,255,0,0.06);
  border: 1px solid rgba(200,255,0,0.2);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: left;
}
.shoot-day h3 { color: var(--green); font-size: 1.1rem; font-weight: 800; margin-bottom: 28px; text-align: center; letter-spacing: 0.05em; }
.shoot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shoot-item { display: flex; align-items: flex-start; gap: 12px; }
.shoot-num { font-size: 1.2rem; font-weight: 900; color: var(--green); min-width: 32px; line-height: 1.3; }
.shoot-item span:last-child { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 100px 0;
  background: var(--navy);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s, border-color 0.25s;
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(200,255,0,0.25); }
.review-card.featured { border: 2px solid var(--green); background: rgba(200,255,0,0.04); }

.review-stars { color: var(--green); font-size: 1rem; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.75; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.author-avatar {
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(200,255,0,0.15), rgba(26,43,109,0.15));
  border: 1px solid rgba(200,255,0,0.25);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-author strong { display: block; color: var(--white); font-size: 0.9rem; font-weight: 700; }
.review-author span { color: rgba(255,255,255,0.45); font-size: 0.78rem; }

.reviews-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,255,0,0.06);
  border: 1px solid rgba(200,255,0,0.2);
  border-radius: var(--radius);
  padding: 36px 0;
}
.stat-item { flex: 1; text-align: center; display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-size: 2.4rem; font-weight: 900; color: var(--green); line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* ===== WHY ===== */
.why-section {
  padding: 100px 0;
  background: var(--gray);
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  box-shadow: var(--shadow);
  transition: all 0.25s;
  border: 2px solid transparent;
}
.why-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,43,109,0.14); }
.why-stat { font-size: 2.5rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; transition: color 0.3s; }
.why-card:hover .why-stat { color: var(--green); }
.why-label { font-size: 0.9rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 12px; }
.why-card p { font-size: 0.84rem; color: #6677AA; line-height: 1.6; }

/* ===== FAQ ===== */
.faq-section { padding: 100px 0; background: var(--gray); }
.faq-section .container { max-width: 800px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.faq-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26,43,109,0.06);
  border: 1px solid #EEF0FA;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--navy); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: transparent;
  border: none;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--navy); }
.faq-item.open .faq-q { color: var(--navy); }

.faq-icon { font-size: 1.4rem; font-weight: 300; color: var(--navy); transition: transform 0.3s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 28px 22px; font-size: 0.9rem; color: #6677AA; line-height: 1.75; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 24px;
  background: var(--green);
  text-align: center;
}
.cta-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: var(--navy-dark); line-height: 1.2; margin-bottom: 20px; }
.cta-sub { font-size: 1rem; color: rgba(26,43,109,0.75); margin-bottom: 44px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); padding: 60px 24px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 32px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .shoot-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; text-align: center; padding: 12px; }
  .nav-links .nav-cta { display: block; }

  section.hero { min-height: 500px; background: var(--navy-dark); }
  .hero-tagline {
    display: block;
    position: absolute;
    top: 100px;
    left: 0; right: 0;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--navy);
    z-index: 2;
    padding: 6px 16px;
  }
  .hero-banner-img {
    display: block;
    position: absolute;
    width: 100%;
    height: 200px;
    top: 340px;
    left: 0;
    background-image: url('Banner.png');
    background-size: 100% auto;
    background-position: center -330px;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
  }
  .hero-inner {
    padding: 60px 20px 48px;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    min-height: 100vh;
  }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: center; gap: 10px; }
  .hero-label { font-size: 0.65rem; }
  .hero-title { font-size: clamp(1.4rem, 7vw, 2rem); line-height: 1.2; }
  .hero-sub { font-size: 0.82rem; margin-bottom: 20px; }
  .btn { padding: 11px 20px; font-size: 0.88rem; }
  section.hero::before {
    background-image: url('Hero 1.png');
    background-size: 100% auto;
    background-position: center -320px;
    opacity: 0.9;
    transform: none;
  }
  section.hero::after {
    inset: 0;
    height: auto;
    background: linear-gradient(
      to top,
      rgba(15,26,74,1)    0%,
      rgba(15,26,74,0.98) 38%,
      rgba(15,26,74,0.85) 48%,
      rgba(15,26,74,0.2)  58%,
      rgba(15,26,74,0)    65%
    );
  }

  .solution-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; box-shadow: 0 0 30px rgba(200,255,0,0.12); }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .shoot-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }

  /* Mobile section padding */
  .pain-section, .solution-section, .services-section,
  .pricing-section, .why-section, .faq-section,
  .reviews-section, .portfolio-section, .clients-section { padding: 72px 0; }
  .cta-section { padding: 72px 20px; }

  /* Mobile card touch improvements */
  .pain-card { padding: 28px 20px; }
  .service-card { padding: 28px 22px; }
  .why-card { padding: 28px 20px; }
  .why-stat { font-size: 2rem; }
  .faq-q { padding: 18px 20px; font-size: 0.92rem; }
  .faq-a p { padding: 0 20px 18px; }
  .reviews-stats { flex-direction: column; gap: 24px; padding: 28px 20px; }
  .stat-divider { width: 60px; height: 1px; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}
