@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ===== Custom Properties ===== */
:root {
  --dark-accent: #FE5800;
  --accent: #FFA200;
  --light-accent: #FFBE1A;
  --yellow-marquee: #FFCC29;
  --black: #000000;
  --white: #FFFFFF;

  --font-family: 'Montserrat', sans-serif;
  --radius-hero: 60px;
  --radius-card: 20px;
  --radius-pill: 300px;

  --header-height: 110px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button, input, textarea {
  font-family: var(--font-family);
  border: none;
  outline: none;
}

/* ===== Typography ===== */
h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.01rem;
  line-height: 1.2;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01rem;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01rem;
  line-height: 1.3;
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.01rem;
  line-height: 1.4;
}

p {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.7;
}

/* ===== Layout Utilities ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

/* ===== Section Gradients ===== */
.section-gradient {
  height: 80px;
  width: 100%;
}

.gradient-dark-to-accent {
  background: linear-gradient(to bottom, var(--dark-accent), var(--accent));
}

.gradient-accent-to-dark {
  background: linear-gradient(to bottom, var(--accent), var(--dark-accent));
}

.gradient-dark-to-black {
  background: linear-gradient(to bottom, var(--dark-accent), var(--black));
}

.gradient-accent-to-black {
  background: linear-gradient(to bottom, var(--accent), var(--black));
}

.gradient-yellow-to-accent {
  background: linear-gradient(to bottom, var(--yellow-marquee), var(--accent));
}

.gradient-yellow-to-black {
  background: linear-gradient(to bottom, var(--yellow-marquee), var(--black));
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background-color: var(--black);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 70px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  opacity: 1;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.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);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-overlay a {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-nav-overlay a:hover {
  color: var(--accent);
  opacity: 1;
}

/* ===== Home Hero (full-bleed with image + overlay) ===== */
.home-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.home-hero-top-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  z-index: 1;
}

.home-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  background: linear-gradient(135deg, rgba(255, 162, 0, 0.75) 0%, rgba(254, 88, 0, 0.72) 100%);
}

.home-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.home-hero-text h1 {
  color: var(--white);
  margin-bottom: 0;
}

.home-hero-form {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-card);
  padding: clamp(2rem, 4vw, 3rem);
  backdrop-filter: blur(8px);
}

.home-hero-form h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.home-hero-form p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.home-hero-form .signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-hero-form .signup-form input[type="email"] {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  background: var(--white);
}

.home-hero-form .signup-form .btn-register {
  width: 100%;
  padding: 1rem;
}

@media (max-width: 768px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
  }
}

/* ===== Hero Sections ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
}

.hero-home {
  background: var(--dark-accent);
}

.hero-about {
  background: var(--dark-accent);
}

.hero-contact {
  background: var(--accent);
}

.hero-portfolio {
  background: var(--dark-accent);
  min-height: auto;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 3rem;
}

.hero-playbook {
  background: var(--dark-accent);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-content.single-col {
  grid-template-columns: 1fr;
  max-width: 800px;
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-services h1 {
  color: var(--black);
}

/* ===== Playbook Signup (Hero Right) ===== */
.playbook-signup h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.playbook-signup p {
  color: var(--white);
  margin-bottom: 1rem;
}

.playbook-signup .signup-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.playbook-signup .signup-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  background: var(--white);
}

.playbook-signup .privacy-note {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.btn-register {
  background: var(--accent);
  color: var(--black);
}

.btn-contact {
  background: var(--black);
  color: var(--accent);
}

.btn-send {
  background: var(--black);
  color: var(--accent);
}

.btn-download {
  background: var(--accent);
  color: var(--black);
}

/* ===== Service Cards ===== */
.services-section {
  background: var(--dark-accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.services-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  text-align: left;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-hero);
  margin-bottom: 1.25rem;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.03);
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.service-card p {
  color: var(--white);
  opacity: 0.9;
}

.services-link {
  text-align: right;
  margin-top: 2rem;
}

.services-link a {
  color: var(--white);
  font-style: italic;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.services-link a:hover {
  color: var(--accent);
  opacity: 1;
}

/* ===== Home Showcase Grid ===== */
.home-showcase {
  background: var(--dark-accent);
  padding: 0 0 2rem;
}

.home-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  min-height: 700px;
}

.home-showcase-grid .service-tile {
  min-height: 350px;
}

.home-showcase-grid .service-tile.tall {
  grid-row: 1 / 3;
}

.services-learn-link {
  color: var(--white);
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.services-learn-link:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .home-showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .home-showcase-grid .service-tile.tall {
    grid-row: auto;
  }
}

/* ===== Mission Section ===== */
.mission-section {
  background: var(--accent);
  color: var(--white);
}

.mission-section h2 {
  margin-bottom: 2.5rem;
  color: var(--white);
}

.mission-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.mission-columns p {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--white);
}

.mission-columns a {
  font-style: italic;
  font-weight: 500;
  display: inline-block;
  margin-top: 0.5rem;
}

.mission-cta {
  text-align: center;
}

/* ===== Wave Divider ===== */
.wave-divider {
  background: var(--black);
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  width: 100%;
  height: clamp(60px, 8vw, 120px);
  display: block;
}

/* ===== Logo Showcase ===== */
.logo-section {
  background: var(--black);
  padding: clamp(6rem, 10vw, 10rem) 0;
}

/* Large rotating single logo display — one at a time */
.logo-carousel {
  position: relative;
  height: clamp(94px, 14vw, 188px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.logo-carousel-item {
  position: absolute;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.logo-carousel-item.active {
  opacity: 1;
}

.logo-carousel-item img {
  max-height: 100%;
  max-width: min(469px, 100%);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ===== Text Marquee ===== */
.text-marquee-section {
  background: var(--yellow-marquee);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  overflow: hidden;
}

.text-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.text-marquee-track span {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  padding: 0 3rem;
}

.marquee-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--black);
  padding: clamp(4rem, 6vw, 6rem) 0 2rem;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-brand a {
  color: var(--accent);
  transition: color 0.3s ease;
}

.footer-brand a:hover {
  color: var(--light-accent);
  opacity: 1;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.footer-nav a {
  color: var(--accent);
  font-size: 0.95rem;
  transition: color 0.3s ease, font-weight 0.1s ease;
}

.footer-nav a:hover {
  color: var(--light-accent);
  font-weight: 700;
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ===== About Page ===== */

/* Full-bleed hero with background image */
.about-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.about-hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
  z-index: 1;
}

.about-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  background: linear-gradient(to right, rgba(254, 88, 0, 0.75) 0%, rgba(254, 88, 0, 0.55) 60%, rgba(254, 88, 0, 0.25) 100%);
}

.about-hero-overlay h1 {
  color: var(--white);
  max-width: 700px;
}

/* Stats bar */
.about-stats {
  background: var(--black);
  padding: clamp(2.5rem, 4vw, 4rem) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Content split with visual card */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

.about-split-text h3 {
  margin-bottom: 1.5rem;
}

.about-split-text p {
  margin-bottom: 1.25rem;
}

.about-split-text p:last-child {
  margin-bottom: 0;
}

.about-visual-card {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-card);
  transition: transform 0.5s ease;
}

.about-visual-card:hover {
  transform: scale(1.02);
}

/* CTA section */
.about-cta-section {
  background: var(--accent);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.about-content.section {
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.about-cta-text {
  max-width: 650px;
  margin: 0 auto 1.5rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.about-cta-section h2 {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-visual-card {
    aspect-ratio: 4/3;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-hero-overlay {
    background: rgba(254, 88, 0, 0.72);
  }
}

.about-content {
  background: var(--accent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.about-grid img {
  width: 100%;
  border-radius: var(--radius-hero);
  object-fit: cover;
}

.about-text h3 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.25rem;
}

.about-cta {
  background: var(--accent);
  text-align: center;
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.about-cta p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.about-cta h2 {
  margin-bottom: 2rem;
}

/* ===== Contact Page ===== */
/* ===== Contact Page ===== */
.contact-hero {
  position: relative;
  min-height: 100vh;
  background: var(--accent);
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.contact-hero-watermark {
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.contact-hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.contact-hero-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation: float-shape 6s ease-in-out infinite;
}

.contact-hero-shape-2 {
  width: 250px;
  height: 250px;
  bottom: -50px;
  left: 10%;
  background: rgba(255, 255, 255, 0.04);
  animation: float-shape 8s ease-in-out infinite reverse;
}

@keyframes float-shape {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -20px); }
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.contact-info h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.contact-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

.contact-detail-item a,
.contact-detail-item span {
  color: var(--white);
  font-size: 1.05rem;
  text-decoration: none;
  line-height: 1.5;
}

.contact-detail-item a:hover {
  text-decoration: underline;
}

.contact-form-card {
  background: var(--black);
  border-radius: var(--radius-card);
  padding: clamp(2rem, 3vw, 3rem);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-card .contact-form label {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-card .contact-form input,
.contact-form-card .contact-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.contact-form-card .contact-form input:focus,
.contact-form-card .contact-form textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}

.contact-form-card .radio-group label {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-card .radio-option {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form-card .btn-send {
  background: var(--accent);
  color: var(--black);
  font-weight: 600;
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-card);
  transition: background 0.3s, transform 0.2s;
}

.contact-form-card .btn-send:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.contact-info p {
  margin-bottom: 0.75rem;
}

.contact-info a {
  color: var(--black);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-info a:hover {
  opacity: 0.7;
}

.contact-address {
  margin-top: 1.5rem;
}

/* ===== Contact Form ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--black);
}

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

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-group label {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--black);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-status {
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 1.5em;
}

.form-status.success {
  color: #065f46;
}

.form-status.error {
  color: #991b1b;
}

/* ===== Portfolio ===== */
.portfolio-section {
  background: var(--dark-accent);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
}

.portfolio-overlay h3 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
}

/* ===== Portfolio Detail ===== */
.portfolio-hero {
  background: var(--dark-accent);
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 3rem;
}

.portfolio-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.portfolio-hero p {
  color: var(--white);
  max-width: 700px;
  opacity: 0.9;
}

.portfolio-content {
  background: var(--accent);
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  margin-bottom: 2rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dot.active {
  background: var(--black);
}

/* Portfolio Nav */
.portfolio-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: 2rem;
}

.portfolio-nav a {
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.portfolio-nav a:hover {
  opacity: 0.7;
}

/* ===== Branding Identity Alt Layout ===== */
.brand-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.brand-block:nth-child(even) {
  direction: rtl;
}

.brand-block:nth-child(even) > * {
  direction: ltr;
}

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

.brand-block-text h3 {
  margin-bottom: 1rem;
}

/* ===== Playbook Page ===== */

/* Hero — full-bleed image like services/about */
.playbook-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.playbook-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.playbook-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
  z-index: 1;
}

.playbook-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  background: linear-gradient(135deg, rgba(255, 162, 0, 0.75) 0%, rgba(254, 88, 0, 0.72) 100%);
}

.playbook-hero-watermark {
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.playbook-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.playbook-hero-info h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.playbook-hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.playbook-hero-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.btn-download-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  font-family: var(--font-family);
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-download-cta:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-download-cta svg {
  transition: transform 0.3s ease;
}

.btn-download-cta:hover svg {
  transform: translateY(3px);
}

/* Playbook dark card (like contact form card) */
.playbook-hero-card {
  display: flex;
  justify-content: center;
}

.playbook-card-inner {
  background: var(--black);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  max-width: 420px;
  width: 100%;
}

.playbook-card-inner img {
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}

.playbook-card-inner:hover img {
  transform: scale(1.02);
}

.playbook-card-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.playbook-card-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.playbook-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

.playbook-card-detail span:last-child {
  color: var(--white);
  font-size: 0.95rem;
}

/* What's Inside — dark section */
.playbook-inside {
  padding: 6rem 0;
  background: var(--black);
}

.playbook-inside h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
}

.playbook-inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.playbook-inside-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 162, 0, 0.12);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
}

.playbook-inside-card:hover {
  background: rgba(255, 162, 0, 0.06);
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 162, 0, 0.08);
}

.playbook-inside-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 162, 0, 0.1);
  border-radius: 14px;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.playbook-inside-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.playbook-inside-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CTA Banner — amber gradient */
.playbook-cta-section {
  padding: 0 0 5rem;
  background: var(--black);
}

.playbook-cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-accent), var(--accent));
  border-radius: var(--radius-card);
  padding: 4rem;
  text-align: center;
}

.playbook-cta-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  top: -80px;
  right: -80px;
  pointer-events: none;
  animation: float-shape 7s ease-in-out infinite;
}

.playbook-cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  position: relative;
}

.playbook-cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.playbook-cta-banner .btn-download-cta {
  position: relative;
}

/* ===== Services Hero (Full-bleed) ===== */
.services-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.services-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
  z-index: 1;
}

.services-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  background: linear-gradient(135deg, rgba(255, 162, 0, 0.75) 0%, rgba(254, 88, 0, 0.72) 100%);
}

.services-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  display: inline-block;
  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.3); }
}

.services-hero-headline {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
}

.services-hero-text {
  max-width: 650px;
}

.services-hero-text h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.services-hero-text p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== Service Showcase Tiles ===== */
.services-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-tile {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  cursor: pointer;
}

.service-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0) 100%);
  transition: background 0.5s ease;
}

.service-tile:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.05) 100%);
}

.service-tile-content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.service-tile:hover .service-tile-content {
  transform: translateY(0);
}

.service-tile-number {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.service-tile-content h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.service-tile-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  max-width: 350px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.service-tile:hover .service-tile-content p {
  opacity: 1;
  transform: translateY(0);
}

.service-tile-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.service-tile:hover .service-tile-link {
  opacity: 1;
  transform: translateY(0);
}

.service-tile-link:hover {
  color: var(--white);
  opacity: 1;
}

/* Services CTA */
.services-cta-section {
  background: var(--yellow-marquee);
}

.services-cta-section h2 {
  color: var(--black);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .services-showcase {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: 350px;
  }

  .services-hero-overlay {
    background: linear-gradient(135deg, rgba(255, 162, 0, 0.75) 0%, rgba(254, 88, 0, 0.72) 100%);
  }

  .service-tile-content p {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.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; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .playbook-signup {
    max-width: 500px;
    margin: 0 auto;
  }

  .playbook-signup .signup-form {
    flex-direction: column;
  }

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

  .about-grid img {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ===== Responsive: 768px ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .services-grid.four-col {
    grid-template-columns: 1fr;
  }

  .mission-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .footer-nav {
    align-items: center;
  }

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

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

  .playbook-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .playbook-inside-grid {
    grid-template-columns: 1fr;
  }

  .playbook-cta-banner {
    padding: 2.5rem 1.5rem;
  }

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

  .brand-block {
    grid-template-columns: 1fr;
  }

  .brand-block:nth-child(even) {
    direction: ltr;
  }

  .portfolio-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .logo img {
    height: 50px;
  }
}

/* ===== Responsive: 480px ===== */
@media (max-width: 480px) {
  :root {
    --header-height: 70px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 3rem;
  }

  .service-card img {
    border-radius: 30px;
  }

  .hero-image img {
    border-radius: 30px;
  }

  .carousel {
    border-radius: 12px;
  }
}
