* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --accent: #4F47E5;
    --accent-dark: #3F38C5;
    --gold: #EAB308;
    --dark: #0D0D0D;
    --dark-card: #161616;
    --dark-border: #2a2a2a;
    --gray-text: #a0a0a0;
    --body-text: #BFBFBF;
    --light-text: #e0e0e0;
    --white: #ffffff
}

body {
    font-family: 'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
    background: var(--dark);
    color: var(--light-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body.menu-open {
    overflow: hidden;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 100
}

.top-banner {
    background: #111;
    border-bottom: 1px solid var(--dark-border);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.top-banner-label {
    font-size: 12px;
    font-weight: 600;
    color: #777;
    white-space: nowrap
}

.mega-toggle {
    width: 100%;
    max-width: 360px;
    height: 38px;
    background: #1a1a1a;
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    padding: 4px;
    transition: background .3s
}

.mega-toggle:hover {
    background: #1e1e1e
}

.mega-toggle .knob {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    border-radius: 16px;
    background: var(--accent);
    box-shadow: 0 3px 14px rgba(79,71,229,0.4);
    transition: left .4s cubic-bezier(.4,0,.2,1)
}

.mega-toggle.right .knob {
    left: calc(50%)
}

.mega-toggle .labels {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%
}

.mega-toggle .tog-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-text);
    transition: color .3s;
    user-select: none
}

.mega-toggle .tog-label.active {
    color: #fff
}

.mega-toggle .tog-label .tog-icon {
    font-size: 14px
}

.mode-ext-note {
    font-size: 11px;
    color: #555;
    display: none;
    align-items: center;
    gap: 4px
}

.mode-ext-note.visible {
    display: flex
}

.main-nav {
    background: rgba(13,13,13,0.95);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--dark-border);
    padding: 0 16px;
}

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

.nav-logo {
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
    text-decoration: none;
    display: flex
}

.nav-logo span {
    color: var(--accent)
}

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

.nav-links a,
#mobile-menu a{
    color: var(--gray-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--white)
}

.nav-links a.cta,
#mobile-menu a.cta {
    background: var(--accent);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: block;
}

.nav-links a.cta:hover {
    background: var(--accent-dark)
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 40px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
    transition: all .4s ease
}

.hero.centered .hero-left {
    align-items: center
}

.hero.centered .hero-badge {
    align-self: center
}

.hero.centered .hero p {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto
}

.hero.centered .search-wrap {
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.hero-left {
    display: flex;
    flex-direction: column;
    overflow: visible
}

.hero-badge {
    display: inline-block;
    background: rgba(79,71,229,0.12);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
    letter-spacing: .5px;
    align-self: flex-start
}

.hero h1 {
    font-size: clamp(28px,4vw,44px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px
}

.hero p {
    font-size: 17px;
    color: var(--gray-text);
    max-width: 460px;
    margin-bottom: auto
}

.hero .search-wrap {
    margin-top: 24px
}

.hero-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    border: 1px solid var(--dark-border);
    aspect-ratio: 16/9;
    z-index: 1
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.hero-video .video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    cursor: pointer;
    transition: background .2s
}

.hero-video .video-overlay:hover {
    background: rgba(0,0,0,0.15)
}

.hero-video .play-btn {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(79,71,229,0.5);
    transition: transform .2s
}

.hero-video .video-overlay:hover .play-btn {
    transform: scale(1.1)
}

.hero-video .play-btn svg {
    margin-left: 3px
}

.hero-video .video-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #fff
}

.search-wrap {
    max-width: 480px;
    position: relative;
    z-index: 50
}

.search-wrap input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s
}

.search-wrap input::placeholder {
    color: #555
}

.search-wrap input:focus {
    border-color: var(--accent)
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    pointer-events: none
}

.search-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    font-size: 18px;
    display: none;
    padding: 4px
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 6px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    overflow: hidden;
    display: none;
    z-index: 50;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    max-height: 70vh;
    overflow-y: auto
}

.search-suggestions.visible {
    display: block
}

.search-suggestion {
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background .15s;
    border-bottom: 1px solid var(--dark-border)
}

.search-suggestion:last-child {
    border-bottom: none
}

.search-suggestion:hover,.search-suggestion.active {
    background: rgba(79,71,229,0.1)
}

.search-suggestion .sg-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(79,71,229,0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0
}

.search-suggestion .sg-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--white)
}

.search-suggestion .sg-cat {
    font-size: 11px;
    color: #777;
    margin-top: 2px
}

.search-suggestions .sg-footer {
    padding: 12px 18px;
    background: rgba(79,71,229,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background .15s
}

.search-suggestions .sg-footer:hover {
    background: rgba(79,71,229,0.1)
}

.search-suggestions .sg-footer .sg-icon {
    background: rgba(234,179,8,0.12);
    color: var(--gold)
}

.search-suggestions .sg-footer .sg-text {
    color: var(--gold);
    font-size: 13px
}

@keyframes pulse {
    0%,100% {
        opacity: 0.3
    }

    50% {
        opacity: 1
    }
}

@media(max-width: 768px) {
    .hero {
        grid-template-columns:1fr;
        padding: 48px 24px 40px;
        gap: 32px
    }

    .hero-video {
        max-width: 500px
    }

    .hero p {
        margin-bottom: 24px
    }

    .hero .search-wrap {
        margin-top: 0;
        max-width: 100%
    }
}

.cat-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 900px;
    margin: 40px auto 48px;
    padding: 0 24px
}

.cat-pill {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--dark-border);
    background: transparent;
    color: var(--gray-text);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap
}

.cat-pill:hover {
    border-color: #444;
    color: var(--white)
}

.cat-pill.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px 100px
}

.faq-category-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--dark-border)
}

.faq-category-heading:first-child {
    margin-top: 0
}

.faq-item {
    border-bottom: 1px solid var(--dark-border)
}

.faq-item.hidden {
    display: none
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 4px;
    background: none;
    border: none;
    color: var(--white);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 16px;
    line-height: 1.45;
    transition: color .2s
}

.faq-q .icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: transform .3s,background .2s;
    font-size: 18px;
    color: var(--gray-text)
}

.faq-item.open .faq-q .icon {
    transform: rotate(45deg);
    background: rgba(79,71,229,0.15);
}

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease,padding .3s ease;
    padding: 0 4px
}

.faq-a>div {
    overflow: hidden
}

.faq-item.open .faq-a {
    grid-template-rows: 1fr;
    padding: 0 4px 24px
}

.faq-a-inner {
    color: var(--body-text);
    font-size: 15px;
    line-height: 1.75
}

.faq-a-inner p {
    margin-bottom: 12px
}

.faq-a-inner p:last-child {
    margin-bottom: 0
}

.faq-a-inner strong {
    color: var(--light-text);
    font-weight: 600
}

.faq-a-inner a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(234,179,8,0.4);
    font-weight: 500;
    transition: text-decoration-color .2s
}

.faq-a-inner a:hover {
    text-decoration-color: var(--gold)
}

.faq-a-inner ul,.faq-a-inner ol {
    margin: 8px 0 12px 20px
}

.faq-a-inner li {
    margin-bottom: 6px
}

.faq-a-inner code {
    background: rgba(255,255,255,0.06);
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--gold)
}

.faq-a-inner video {
    width: 100%;
    border-radius: 12px;
    margin: 8px 0 4px;
    border: 1px solid var(--dark-border);
    display: block
}

.faq-a-inner .tip {
    background: rgba(234,179,8,0.08);
    border-left: 3px solid var(--gold);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    margin: 14px 0;
    font-size: 14px
}

.faq-a-inner .tip strong {
    color: var(--gold)
}

.faq-a-inner .tip-green {
    background: rgba(34,197,94,0.08);
    border-left: 3px solid #22C55E;
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    margin: 14px 0;
    font-size: 14px
}

.faq-a-inner .tip-green strong {
    color: #22C55E
}

.faq-a-inner .tip-green a {
    color: #22C55E;
    text-decoration-color: rgba(34,197,94,0.4)
}

.faq-a-inner .step-list {
    counter-reset: step;
    list-style: none;
    margin-left: 0
}

.faq-a-inner .step-list li {
    counter-increment: step;
    padding-left: 32px;
    position: relative;
    margin-bottom: 10px
}

.faq-a-inner .step-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    background: rgba(79,71,229,0.15);
    color: var(--accent);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    display: none
}

.no-results.visible {
    display: block
}

.no-results .no-results-icon {
    font-size: 48px;
    margin-bottom: 16px
}

.no-results h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px
}

.no-results p {
    color: var(--gray-text);
    font-size: 15px;
    margin-bottom: 6px
}

.no-results a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(234,179,8,0.4)
}

.cta-banner {
    max-width: 820px;
    margin: 0 auto 60px;
    padding: 0 24px
}

.cta-banner-inner {
    position: relative;
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 56px 40px;
    text-align: center
}

.cta-banner-inner::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,rgba(79,71,229,0.15) 0%,transparent 70%);
    pointer-events: none
}

.cta-banner-inner .cta-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: rgba(79,71,229,0.1);
    border: 1px solid rgba(79,71,229,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px
}

.cta-banner-inner h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    position: relative
}

.cta-banner-inner .cta-sub {
    color: var(--gray-text);
    font-size: 15px;
    margin-bottom: 32px;
    position: relative;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto
}

.cta-banner-inner .btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(79,71,229,0.3)
}

.btn-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 6px 24px rgba(79,71,229,0.4);
    transform: translateY(-1px)
}

.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 1px solid var(--dark-border)
}

.btn-secondary:hover {
    border-color: #555;
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px)
}

footer {
    border-top: 1px solid var(--dark-border);
    padding: 32px 24px;
    text-align: center;
    color: var(--gray-text);
    font-size: 13px;
}
footer .footer-inner-wrap {
    display: flex;
    align-items: center;
    gap: 0 30px;
    max-width: 1200px;
    justify-content: space-between;
    margin: 0 auto;
}
footer a {
    color: var(--gray-text);
    text-decoration: none
}

footer a:hover {
    color: var(--white)
}

.faq-answer {
    padding: 20px 0;
  }
  .faq-answer > p { margin-bottom: 16px; }
  .faq-answer strong { color: #E0E0E0; }
  .faq-answer a { color: #EAB308; text-decoration: underline; text-underline-offset: 3px; }
  .two-questions {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
  }
  @media (max-width: 600px) {
    .two-questions { padding: 16px; }
  }
  .two-questions ol {
    margin: 0;
    padding-left: 32px;
    counter-reset: q;
    list-style: none;
  }
  .two-questions li {
    position: relative;
    padding-left: 8px;
    margin-bottom: 14px;
    color: #FFFFFF;
    font-weight: 500;
  }
  .two-questions li:last-child { margin-bottom: 0; }
  .two-questions li::before {
    counter-increment: q;
    content: counter(q);
    position: absolute;
    left: -32px;
    width: 22px;
    height: 22px;
    background: rgba(79,71,229,0.15);
    color: #4F47E5;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .two-questions li span.subdesc {
    color: #A0A0A0;
    font-weight: 400;
    display: block;
    margin-top: 4px;
    font-size: 14px;
  }
  @media (max-width: 600px) {
    .two-questions li span.subdesc { font-size: 13px; }
  }
  .two-questions .cta-links {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #2a2a2a;
    font-size: 13px;
  }
  .two-questions .cta-links span {
    color: #888;
    font-weight: 500;
  }
  .two-questions .cta-links a {
    color: #EAB308;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .two-questions .cta-links .sep {
    color: #555;
    margin: 0 8px;
  }
  @media (max-width: 500px) {
    .two-questions .cta-links {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .two-questions .cta-links .sep { display: none; }
  }

/* Section labels - full width bar */
.examples-label {
    margin: 32px 0 12px;
    background: rgba(79,71,229,0.1);
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .examples-label .q-num {
    background: #4F47E5;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    flex-shrink: 0;
  }
  .examples-label span:last-child {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
  }
  @media (max-width: 600px) {
    .examples-label { padding: 8px 12px; }
    .examples-label span:last-child { font-size: 13px; }
  }
  
  /* Section blocks */
  .example-section {
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
  }
  @media (max-width: 600px) {
    .example-section { padding: 16px; border-radius: 12px; }
  }
  .section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }
  .section-header h3 {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
  }
  @media (max-width: 600px) {
    .section-header h3 { font-size: 14px; }
  }
  .section-desc {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  @media (max-width: 600px) {
    .section-desc { font-size: 13px; margin-bottom: 16px; }
  }
  .q-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    flex-shrink: 0;
  }
  .q-badge.q1 { background: rgba(79,71,229,0.2); color: #7C75E2; }
  .q-badge.q2 { background: rgba(29,158,117,0.2); color: #3DBD8F; }
  
  /* Image grids */
  .img-grid {
    display: grid;
    gap: 16px;
  }
  .img-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .img-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  @media (max-width: 600px) {
    .img-grid { gap: 12px; }
    .img-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .img-grid.cols-3 .img-card:last-child {
      grid-column: 1 / -1;
      max-width: 50%;
      justify-self: center;
    }
  }
  @media (max-width: 400px) {
    .img-grid.cols-2,
    .img-grid.cols-3 { grid-template-columns: 1fr; }
    .img-grid.cols-3 .img-card:last-child {
      max-width: 100%;
    }
  }
  
  /* Image cards with annotations */
  .img-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #0D0D0D;
  }
  @media (max-width: 600px) {
    .img-card { border-radius: 8px; }
  }
  .img-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
    display: block;
  }
  .annotation-wrap {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
  @media (max-width: 600px) {
    .annotation-wrap { bottom: 8px; left: 8px; right: 8px; }
  }
  .annotation-label {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-left: 3px solid #E24B4A;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 0 6px 6px 0;
    display: inline-block;
  }
  @media (max-width: 600px) {
    .annotation-label { font-size: 10px; padding: 6px 10px; }
  }
  .annotation-label span {
    color: #F87171;
    font-weight: 600;
  }

  /* Fix box */
.fix-box {
    background: rgba(29,158,117,0.08);
    border-left: 3px solid #1D9E75;
    border-radius: 0 8px 8px 0;
    padding: 14px 16px;
    margin-top: 20px;
    font-size: 14px;
  }
  @media (max-width: 600px) {
    .fix-box { padding: 12px 14px; font-size: 13px; }
  }
  .fix-box strong {
    color: #1D9E75;
  }
  .fix-box p {
    margin: 0;
    color: #BFBFBF;
  }
  .fix-box a {
    color: #3DBD8F;
  }
  .fix-box code {
    background: rgba(255,255,255,0.06);
    padding: 2px 7px;
    border-radius: 4px;
    color: #EAB308;
    font-size: 13px;
  }
  @media (max-width: 600px) {
    .fix-box code { font-size: 12px; }
  }
  .fix-box .framing-tips-inline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 16px 0;
  }
  @media (max-width: 500px) {
    .fix-box .framing-tips-inline { grid-template-columns: 1fr; }
  }
  .fix-box .framing-tip-inline {
    background: rgba(29,158,117,0.08);
    border: 1px solid rgba(29,158,117,0.25);
    border-radius: 8px;
    padding: 14px;
  }
  @media (max-width: 600px) {
    .fix-box .framing-tip-inline { padding: 12px; }
  }
  .fix-box .framing-tip-inline .framing-label {
    display: inline-block;
    background: rgba(29,158,117,0.2);
    color: #3DBD8F;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
  }
  .fix-box .framing-tip-inline p {
    margin: 0;
    font-size: 13px;
    color: #888;
    line-height: 1.5;
  }
  @media (max-width: 600px) {
    .fix-box .framing-tip-inline p { font-size: 12px; }
  }
  .fix-box .fix-footer {
    margin: 16px 0 0 0;
    font-size: 13px;
    color: #888;
  }
  @media (max-width: 600px) {
    .fix-box .fix-footer { font-size: 12px; margin-top: 12px; }
  }
  
  /* Tips */
  .tip-box {
    background: rgba(234,179,8,0.08);
    border-left: 3px solid #EAB308;
    border-radius: 0 8px 8px 0;
    padding: 14px 16px;
    margin: 24px 0;
    font-size: 14px;
  }
  @media (max-width: 600px) {
    .tip-box { padding: 12px 14px; font-size: 13px; }
  }
  .tip-box strong { color: #EAB308; }
  .tip-box a { color: #EAB308; }

@media(max-width: 640px) {
    .nav-links {
        gap: 8px;
    }

    .nav-links a:not(.cta) {
        display: none
    }

    #mobile-menu a {
        display: block;
    }

    .hero {
        padding: 32px 20px 32px
    }

    .hero h1 {
        font-size: 26px
    }

    .hero p {
        font-size: 15px
    }

    .cat-bar {
        gap: 6px;
        margin: 24px auto 32px
    }

    .cat-pill {
        padding: 7px 14px;
        font-size: 12px
    }

    .faq-container {
        padding: 0 16px 60px
    }

    .faq-q {
        font-size: 15px;
        padding: 16px 2px
    }

    .faq-q .icon {
        width: 24px;
        height: 24px;
        font-size: 15px
    }

    .faq-a-inner {
        font-size: 14px
    }

    .faq-a-inner ul,.faq-a-inner ol {
        margin-left: 16px
    }

    .faq-a-inner .step-list li {
        padding-left: 28px
    }

    .faq-a-inner video {
        border-radius: 8px
    }

    .cta-banner-inner {
        padding: 32px 20px
    }

    .cta-banner-inner h3 {
        font-size: 20px
    }

    .cta-banner-inner .btns {
        flex-direction: column
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px
    }

    .top-banner {
        flex-wrap: wrap;
        gap: 8px
    }

    .mega-toggle {
        max-width: 100%;
        height: 36px
    }

    .mega-toggle .tog-label {
        font-size: 11px;
        gap: 4px
    }

    .search-wrap {
        max-width: 100%
    }

    .search-suggestion {
        padding: 12px 14px;
        gap: 10px
    }

    .search-suggestion .sg-text {
        font-size: 13px
    }

    .search-suggestion .sg-icon {
        width: 24px;
        height: 24px;
        font-size: 11px
    }
}

@media(max-width: 400px) {
    .hero {
        padding:24px 16px 24px
    }

    .hero h1 {
        font-size: 22px
    }

    .cat-pill {
        padding: 6px 12px;
        font-size: 11px
    }

    .faq-q {
        font-size: 14px;
        gap: 10px
    }

    .faq-category-heading {
        font-size: 12px;
        margin: 32px 0 14px
    }
}

@media (min-width: 1200px){
    .faq-q:hover {
        color: var(--accent)
    }
    .faq-item .faq-q:hover .icon {
        background: rgba(79,71,229,0.15);
        color: var(--accent)
    }
}


/* Mobile Menu Toggle */
.bc-nav-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 10px 11px;
    background: #202020;
    border: 1px solid #2c2c2c;
    align-self: stretch;
    border-radius: 8px;
}

.bc-nav-toggle-bar {
    width: 17px;
    height: 2px;
    background: #a9a2a2;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: block;
}

.bc-nav-toggle.active .bc-nav-toggle-bar:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(4px, 5px);
    -ms-transform: rotate(45deg) translate(4px, 5px);
    transform: rotate(45deg) translate(4px, 5px);
}

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

.bc-nav-toggle.active .bc-nav-toggle-bar:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(3px, -5px);
    -ms-transform: rotate(-45deg) translate(3px, -5px);
    transform: rotate(-45deg) translate(3px, -5px);
}

.bc-nav-menu-link {
    text-decoration: none;
    display: inline-block;
    background: none;
    -webkit-text-fill-color: #fff;
    position: relative;
    font-weight: 600;
    font-size: 15px;
}

.bc-nav-menu-link:hover {
    background-image: -webkit-linear-gradient(left, #caf404, #7e3aff, #3affdc, #ffd43a, #ff5d3a, #ef3aff);
    background-image: -o-linear-gradient(left, #caf404, #7e3aff, #3affdc, #ffd43a, #ff5d3a, #ef3aff);
    background-image: linear-gradient(to right, #caf404, #7e3aff, #3affdc, #ffd43a, #ff5d3a, #ef3aff);
    -webkit-background-size: 200% 100%;
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: rainbow-sweep 1s linear infinite;
    -o-animation: rainbow-sweep 1s linear infinite;
    animation: rainbow-sweep 1s linear infinite;
}

#mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* no height at all */
    overflow-y: auto;
    z-index: 999;
    background: #111111;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#mobile-menu.visible {
    opacity: 1;
    visibility: visible
}

#mobile-menu a {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #212121;
    width: max-content;
    text-align: center;
    min-width: 220px;
}

#mobile-menu a.cta {
    margin-top: 16px;
    min-width: 180px;
    margin-bottom: 0;
    max-width: 220px;
}

button#close-mobile-menu {
    -webkit-appearance: none;
    background: transparent;
    border: none;
    box-shadow: none;
    position: absolute;
    top: 30px;
    right: 30px;
}

button#close-mobile-menu svg path {
    color: #7a7a7a;
    stroke-width: 2px;
}

@media (min-width: 768px){
    .bc-nav-toggle,
    #mobile-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}


/* Footer Section */
.footer {
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.05px;
    line-height: 1.6;
}

.footer-column a:hover {
    color: #01A0C6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
    text-decoration: underline;
}
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-column:nth-child(2) {
        display: none;
    }
    .faq-section {
        padding-bottom: 40px;
    }
    .cta-section {
        padding-top: 0;
        padding-bottom: 60px;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 20px 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 0;
        gap: 10px;
    }
    
    .footer-legal {
        justify-content: center;
        order: -1;
    }
}
@media (max-width: 767px) {
    .footer-column a {
        line-height: 1.3;
    }

    .footer-column:nth-child(2) {
        display: none;
    }

    .footer-copyright {
        padding-left: 30px;
        padding-right: 30px;
        line-height: 1.6;
    }
}
@media (min-width: 1200px){
    .nav-inner {
        padding-left: 40px;
        padding-right: 40px;
    }
    .cta-banner {
        margin-bottom: 120px;
    }
}