/* creative-assets page styles */

/* Global Font Override to enforce Plus Jakarta Sans */
body, h1, h2, h3, h4, h5, h6, input, button, select, textarea, span, p, a, div, li, ul, ol, th, td, label {
  font-family: 'Plus Jakarta Sans', 'Plus_Jakarta_Sans', sans-serif !important;
}

/* =========================================
   LOCAL FONTS — Plus Jakarta Sans
   ========================================= */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype-variations'),
       url('../fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf') format('truetype-variations'),
       url('../fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}

/* =========================================
   DESIGN TOKENS — TrueProfit Homepage Style
   ========================================= */
:root {
  --green: #1a7a5e;
  --green-bright: #23c48c;
  --green-light: rgba(35,196,140,0.1);
  --green-border: rgba(35,196,140,0.25);

  --navy: #0b1826;
  --navy-mid: #0d2233;
  --navy-teal: #0a2535;

  --light: #f7f8fa;
  --light-alt: #f0f2f5;
  --white: #ffffff;

  --text-dark: #0f1724;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #94a3b8;

  --border-light: #e5e7eb;
  --border-dark: rgba(255,255,255,0.08);

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 100px;
  --transition: 0.2s cubic-bezier(0.4,0,0.2,1);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

/* =========================================
   ANNOUNCEMENT BAR
   ========================================= */
#announce-bar {
  background: #0a2a1e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  letter-spacing: 0.01em;
}
#announce-bar a {
  background: var(--green-bright);
  color: #071424;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: var(--transition);
}
#announce-bar a:hover { background: #2dd498; }
#announce-bar .close-btn {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 2px 6px;
  transition: var(--transition);
}
#announce-bar .close-btn:hover { color: #fff; }
.announce-star { color: var(--green-bright); }

/* =========================================
   HEADER
   ========================================= */
#header { position: sticky; top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: 72px;
  display: flex;
  align-items: center;
}
.header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: block;
}
.header-collapse { display: contents; }
.header-nav {
  display: flex;
  gap: 2px;
  justify-content: flex-start;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  padding: 6px 10px;
  border-radius: 7px;
  transition: var(--transition);
  white-space: nowrap;
}
.header-nav > a:hover { background: var(--light); color: var(--text-dark); }
.header-nav > a.active { color: #1d9e75 !important; font-weight: 700; }
.header-nav > a.active:hover { color: #1d9e75 !important; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.btn-ghost {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  background: transparent;
  border: 1.5px solid var(--border-light);
  padding: 8px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: #9ca3af; background: var(--light); transform: translateY(-2px); }
.btn-cta {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  border: none;
  padding: 9px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-cta:hover { background: #155f48; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(26,122,94,0.3); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================
   PAGE HERO
   ========================================= */
.playbook-hero {
  background: linear-gradient(180deg, #eaf3ff 0%, #ffffff 100%);
  padding: 90px 24px 70px;
  text-align: center;
  position: relative;
}
.playbook-hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.playbook-hero-title {
  font-size: clamp(38px, 5.5vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.playbook-hero-subtitle {
  font-size: 17px;
  color: var(--text-body);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================================
   FOLDER CARDS
   ========================================= */
.folder-cards-section {
  padding: 20px 24px 40px;
  background: #ffffff;
}
.folder-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.folder-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
}
.folder-card:hover {
  border-color: var(--green);
  background: rgba(35, 196, 140, 0.05);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.folder-icon-wrapper {
  background: var(--green-light);
  color: var(--green);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.folder-card:hover .folder-icon-wrapper {
  background: var(--green);
  color: var(--white);
}
.folder-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.folder-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* =========================================
   ASSET SECTIONS GENERAL
   ========================================= */
.assets-section {
  padding: 80px 24px;
  border-top: 1px solid var(--border-light);
}
.assets-section:nth-of-type(even) {
  background: #f8fafc;
}
.section-container {
  max-width: 1200px;
  margin: 0 auto;
}
/* =========================================
   ASSET CTA BUTTON
   ========================================= */
.asset-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: #fff;
  color: var(--green);
  border: 1.5px solid var(--green);
  border-radius: 999px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.asset-cta-btn:hover {
  background: #e6fbf1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 122, 94, 0.15);
}
.asset-cta-btn svg {
  flex-shrink: 0;
}
/* Card-level CTA — push it to the bottom of the card */
.folder-card-cta {
  margin-top: 14px;
}
/* Section header row: title+intro on left, button on right */
.section-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-header-row .section-header-left {
  flex: 1 1 0;
  min-width: 0;
}
.section-header-row .section-header-left h2 {
  margin-bottom: 8px;
}
.section-header-row .section-header-right {
  display: flex;
  align-items: center;
  padding-top: 6px;
}
/* Footage group header: title+desc on left, button on right */
.footage-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footage-group-header .footage-group-left {
  flex: 1 1 0;
  min-width: 0;
}
@media (min-width: 769px) {
  .footage-group-header .footage-group-left {
    min-height: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .section-header-row { flex-direction: column; }
  .footage-group-header { flex-direction: column; }
}
.section-header {
  margin-bottom: 48px;
}
.section-title-assets {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-intro-assets {
  font-size: 16px;
  color: var(--text-body);
  max-width: 720px;
  line-height: 1.6;
}

/* =========================================
   SECTION 1: LOGO KIT
   ========================================= */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.logo-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.logo-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.logo-preview {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}
.logo-preview.light-bg {
  background-color: #f8fafc;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 16px 16px;
}
.logo-preview.dark-bg {
  background-color: #0b1826;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 16px 16px;
}
.logo-preview img {
  max-height: 80px;
  max-width: 80%;
  object-fit: contain;
}
.logo-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.logo-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.logo-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.logo-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--light-alt);
  color: var(--text-body);
}
.logo-tag.bg-light {
  background: #f0fdf4;
  color: #166534;
}
.logo-tag.bg-dark {
  background: #f1f5f9;
  color: #334155;
}
.logo-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}
.btn-download-asset {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-download-asset.primary {
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
}
.btn-download-asset.primary:hover {
  background: #155f48;
  border-color: #155f48;
}
.btn-download-asset.secondary {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}
.btn-download-asset.secondary:hover {
  border-color: #9ca3af;
  background: var(--light);
}

/* =========================================
   SECTION 2: CAMPAIGN BANNERS
   ========================================= */
.campaign-group {
  margin-bottom: 60px;
}
.campaign-group:last-child {
  margin-bottom: 0;
}
.campaign-group-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.campaign-group-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--green-bright);
  border-radius: 2px;
}
.banners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.banner-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.banner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.banner-preview {
  height: 180px;
  background: #f1f5f9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}
.banner-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.banner-card:hover .banner-preview img {
  transform: scale(1.03);
}
.banner-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.banner-resolution {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.banner-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.banner-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--light-alt);
  color: var(--text-body);
}
.banner-tag.ratio {
  background: #eff6ff;
  color: #1e40af;
}
.banner-tag.theme-dark {
  background: #0f172a;
  color: #f1f5f9;
}
.banner-tag.theme-bright {
  background: #fef3c7;
  color: #92400e;
}
.btn-download-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 8px;
  background: var(--white);
  color: var(--green);
  border: 1px solid var(--green-border);
  transition: all 0.2s ease;
  text-decoration: none;
  margin-top: auto;
}
.btn-download-banner:hover {
  background: var(--green-light);
  border-color: var(--green);
}

/* =========================================
   SECTION 3: APP FOOTAGE
   ========================================= */
.footage-sections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footage-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footage-group-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.footage-group-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.footage-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footage-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.footage-card:hover {
  transform: translateY(-2px);
  border-color: var(--green-border);
  box-shadow: var(--shadow-md);
}
.footage-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #f1f5f9;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.footage-card:hover .footage-icon-wrap {
  background: var(--green-light);
  color: var(--green);
}
.footage-details {
  flex-grow: 1;
  min-width: 0;
}
.footage-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footage-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.footage-tag {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 4px;
  background: #f1f5f9;
  color: #475569;
}
.btn-open-drive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--light);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.footage-card:hover .btn-open-drive {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* =========================================
   USAGE NOTES
   ========================================= */
.usage-notes-section {
  padding: 0 24px 40px;
  background: transparent;
}
.usage-notes-box {
  max-width: 1200px;
  margin: 0 auto;
}
.usage-notes-callout {
  width: 100%;
  max-width: 100%;
  background: transparent;
  border-left: 3px solid var(--green);
  padding: 4px 0 4px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
}
.usage-notes-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  margin: 0;
}
.usage-notes-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.usage-notes-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px dashed var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-top: 2px;
}
.usage-notes-body {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.65;
  margin: 0;
  flex: 1;
  max-width: none;
}

/* =========================================
   FOOTER & BOTTOM CTA
   ========================================= */
.cta-section {
  background: #051d29;
  background-image: url('../images/trueprofit_affiliate_background.svg');
  background-size: cover;
  background-position: center;
  padding: 80px 24px;
  text-align: center;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.cta-h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.cta-h2 span { color: var(--green-bright); }
.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.btn-cta-white {
  background: #fff;
  color: #051d29;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}
.btn-cta-white:hover { opacity: 0.95; }
.btn-cta-ghost {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 8px;
  transition: border-color 0.2s ease;
}
.btn-cta-ghost:hover { border-color: rgba(255,255,255,0.6); }

footer {
  background: #051d29;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 52px 28px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 28px;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.35); max-width: 240px; line-height: 1.55; }
.footer-links h5 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.25); margin-bottom: 14px; }
.footer-links a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 9px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--green-bright); transform: translateX(4px); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* Animations */
.stagger-enter {
  opacity: 0;
  animation: fadeInSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
}
.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInSlideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =========================================
   RESPONSIVE LAYOUTS
   ========================================= */
@media (max-width: 1100px) {
  .header-nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }
  #header.nav-open { background: #ffffff; }
  #header.nav-open .header-collapse {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
    z-index: 999;
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
  }
  #header.nav-open .header-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  #header.nav-open .header-nav a {
    padding: 12px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--border-light);
  }
  #header.nav-open .header-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 16px 0 0;
    width: 100%;
  }
  #header.nav-open .header-actions a {
    justify-content: center;
    text-align: center;
  }
  
  .folder-cards-container { grid-template-columns: repeat(2, 1fr); }
  .banners-grid { grid-template-columns: repeat(2, 1fr); }
  .footage-sections-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .folder-cards-container { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: 1fr; }
  .banners-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-btns { flex-direction: column; }
}

/* Hover Micro-interactions - Navbar Links */
.header-nav > a {
  position: relative;
}
.header-nav > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #00C896;
  transition: width 0.2s ease;
}
.header-nav > a:hover::after,
.header-nav > a.active::after {
  width: 100%;
}

