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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* ============================================================
   Typography
   ============================================================ */
.section-tag {
    display: block;
    text-align: center;
    color: #c4a054;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.section-heading {
    font-family: 'Anton', sans-serif;
    font-size: 2.6rem;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #999999;
    font-size: 1rem;
    max-width: 540px;
}

/* ============================================================
   Scroll Animation
   ============================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   Header
   ============================================================ */
header {
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196, 160, 84, 0.12);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.9rem 0;
    transition: background 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: #c4a054;
}

.nav-cta {
    background: #c4a054;
    color: #161616 !important;
    padding: 0.5rem 1.3rem;
    border-radius: 6px;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.04em;
    transition: background 0.25s ease, transform 0.2s ease, opacity 0.3s ease, visibility 0.3s ease !important;
}

.nav-cta:hover {
    background: #d4b06a !important;
    color: #161616 !important;
    transform: translateY(-1px);
}

.nav-cta-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.nav-cta-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    background: #0d0d0d;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Grid pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(196, 160, 84, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 160, 84, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Radial gold glow */
.hero::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(196, 160, 84, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

/* Decorative rings */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(196, 160, 84, 0.08);
    pointer-events: none;
}

.hero-ring-1 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
}

.hero-ring-2 {
    width: 760px;
    height: 760px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(20deg);
    border-color: rgba(196, 160, 84, 0.05);
}

/* Decorative dots */
.hero-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(196, 160, 84, 0.25);
    pointer-events: none;
}

.hero-dot-1 { top: 22%; left: 12%; }
.hero-dot-2 { top: 68%; right: 10%; }
.hero-dot-3 { bottom: 20%; left: 30%; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(196, 160, 84, 0.3);
    color: #c4a054;
    padding: 0.4rem 1.25rem;
    border-radius: 24px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #c4a054;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.75rem, 5vw, 4.2rem);
    font-weight: 800;
    font-style: italic;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 1.4rem;
}

.hero-highlight {
    color: #c4a054;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #999999;
    margin-bottom: 2.4rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #c4a054;
    color: #161616;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: #d4b06a;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #cccccc;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.btn-outline:hover {
    border-color: rgba(196, 160, 84, 0.5);
    color: #c4a054;
    transform: translateY(-2px);
}

/* Trust Bar */
.trust-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888888;
    font-size: 0.8rem;
    font-weight: 500;
}

.trust-item svg {
    color: #c4a054;
    flex-shrink: 0;
}

.trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* ============================================================
   Carousel
   ============================================================ */
.carousel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0d0d0d 0%, #111118 50%, #0d0d0d 100%);
}

.carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    width: 200%;
}

.carousel-slide {
    width: 50%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide--active {
    opacity: 1;
}

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

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(196, 160, 84, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-dot--active {
    background: #c4a054;
    border-color: #c4a054;
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   Timeline Section
   ============================================================ */
.timeline-section {
    background: linear-gradient(180deg, #0d0d0d 0%, #111118 100%);
    padding: 6rem 0;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
    width: 160px;
}

.timeline-connector {
    flex: 0 0 48px;
    height: 1px;
    background: rgba(196, 160, 84, 0.15);
    margin-top: 36px;
    align-self: flex-start;
}

.timeline-node {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(196, 160, 84, 0.25);
    background: rgba(196, 160, 84, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #c4a054;
    flex-shrink: 0;
}

.timeline-step.final .timeline-node {
    width: 80px;
    height: 80px;
    border-color: rgba(196, 160, 84, 0.45);
    background: rgba(196, 160, 84, 0.12);
}

.timeline-step-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #cccccc;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.timeline-step.final .timeline-step-title {
    color: #c4a054;
}

.timeline-step-desc {
    font-size: 0.75rem;
    color: #666666;
    line-height: 1.5;
    max-width: 130px;
}

/* ============================================================
   Pricing Section
   ============================================================ */
.pricing {
    background: #080810;
    border-top: 1px solid rgba(196, 160, 84, 0.15);
    border-bottom: 1px solid rgba(196, 160, 84, 0.15);
    padding: 6rem 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header .section-subtitle {
    margin: 0 auto;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    color: #666666;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: #c4a054;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 26px;
    background: #2a2a2a;
    border-radius: 13px;
    cursor: pointer;
    border: 2px solid #444;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.annual {
    background: #c4a054;
    border-color: #c4a054;
}

.toggle-switch.annual::after {
    transform: translateX(26px);
}

/* Plans grid */
.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}

.plan {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
    width: 340px;
    flex-shrink: 0;
}

.plan:hover {
    border-color: rgba(196, 160, 84, 0.4);
}

.plan.featured {
    border-color: rgba(196, 160, 84, 0.55);
}

.plan-badge {
    display: inline-block;
    border: 1px solid #c4a054;
    color: #c4a054;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    width: fit-content;
}

.plan-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.9rem;
    color: #c4a054;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.plan-description {
    color: #777777;
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    min-height: 2.6rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    color: #bbbbbb;
    padding: 0.35rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.875rem;
    line-height: 1.5;
}

.plan-features li::before {
    content: "\2022";
    color: #c4a054;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.plan-price-container {
    margin-bottom: 1.5rem;
}

.plan-price {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.plan-period {
    color: #666666;
    font-size: 0.82rem;
    margin-top: 0.25rem;
}

.plan-price-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 1.5rem;
    margin-bottom: 0.25rem;
}

.plan-price-original {
    color: #666;
    font-size: 1rem;
    text-decoration: line-through;
    font-weight: 500;
}

.plan-savings-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(46, 204, 113, 0.12);
    color: #2ecc71;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.plan-billed-note {
    color: #555;
    font-size: 0.75rem;
    margin-top: 0.35rem;
    font-style: italic;
}

.plan-button {
    display: block;
    width: 100%;
    background: #c4a054;
    border: none;
    color: #161616;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: inherit;
}

.plan-button:hover {
    background: #d4b06a;
    transform: translateY(-1px);
}

/* Loading / error states */
.plans-loading,
.plans-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666;
}

.plans-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #666;
}

.pricing-notes {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.pricing-notes p {
    color: #555555;
    font-size: 0.78rem;
    margin-bottom: 0.3rem;
    line-height: 1.6;
}

.pricing-notes strong {
    color: #888888;
}

/* Scroll animation for plans */
.plan[data-price-monthly] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.3s ease;
}

.plan[data-price-monthly].visible,
.plan[data-price-monthly].animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   Transformation Section
   ============================================================ */
.transformation-section {
    background: #121218;
    padding: 6rem 0;
}

.transformation-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.transform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: border-color 0.3s ease;
}

.transform-card:hover {
    border-color: rgba(196, 160, 84, 0.25);
}

.transform-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.transform-before {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
}

.transform-before svg {
    color: rgba(200, 80, 80, 0.25);
}

.transform-before span {
    font-size: 0.75rem;
    color: #555555;
    text-align: center;
    line-height: 1.3;
}

.transform-arrow {
    color: rgba(196, 160, 84, 0.27);
    flex-shrink: 0;
}

.transform-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
}

.transform-after svg {
    color: #c4a054;
}

.transform-after span {
    font-size: 0.75rem;
    color: #cccccc;
    text-align: center;
    line-height: 1.3;
}

/* ============================================================
   About (Conócenos) Section
   ============================================================ */
.about-section {
    background: #1a1a1a;
    padding: 6rem 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 5rem;
    align-items: start;
}

.about-left .section-tag {
    text-align: left;
}

.about-left .section-heading {
    text-align: left;
}

.about-left .section-subtitle {
    margin-top: 1rem;
    line-height: 1.7;
}

.about-divider {
    width: 48px;
    height: 2px;
    background: #c4a054;
    margin: 1.8rem 0;
}

.about-quote {
    font-style: italic;
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.7;
    border-left: 2px solid rgba(196, 160, 84, 0.3);
    padding-left: 1rem;
}

.about-benefits {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-benefit {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-benefit:last-child {
    border-bottom: none;
}

.about-benefit-num {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(196, 160, 84, 0.2);
    line-height: 1;
    min-width: 3rem;
    font-family: 'Anton', sans-serif;
}

.about-benefit-body h4 {
    color: #cccccc;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.about-benefit-body p {
    color: #666666;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ============================================================
   Solutions Section
   ============================================================ */
.solutions-section {
    background: #0e0e0e;
    padding: 6rem 0;
}

.solutions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s ease, transform 0.25s ease;
}

.solution-card:hover {
    border-color: rgba(196, 160, 84, 0.35);
    transform: translateY(-4px);
}

.solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-icon-gold {
    background: #c4a054;
    color: #161616;
}

.solution-icon-navy {
    background: #1d3a6d;
    color: #ffffff;
}

.solution-icon-subtle {
    background: rgba(196, 160, 84, 0.1);
    border: 1px solid rgba(196, 160, 84, 0.2);
    color: #c4a054;
}

.solution-card h3 {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.solution-card p {
    color: #666666;
    font-size: 0.83rem;
    line-height: 1.6;
}

/* ============================================================
   Videos Showcase Section
   ============================================================ */
.videos-showcase {
    background: #0a0a0a;
    padding: 6rem 0;
}

.videos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.videos-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.videos-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.videos-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    border: 2px solid transparent;
    background: #1c1c1c;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.videos-tab:hover {
    background: #232323;
}

.videos-tab:focus-visible {
    outline: 2px solid #c4a054;
    outline-offset: 3px;
}

.videos-tab--active {
    border-color: #c4a054;
    color: #c4a054;
    font-weight: 600;
    background: #1c1c1c;
}

.videos-tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
}

.videos-tab-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.videos-panels {
    position: relative;
}

.videos-panel {
    display: grid;
    grid-template-columns: minmax(0, 65%) minmax(0, 35%);
    gap: 2.5rem;
    align-items: center;
}

.videos-panel[hidden] {
    display: none;
}

.video-panel-media {
    aspect-ratio: 16 / 9;
    background: #0a0a0a;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(196, 160, 84, 0.15);
}

.video-panel-player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}

.video-panel-content {
    padding-left: 0.5rem;
}

.video-panel-title {
    color: #c4a054;
    font-family: 'Anton', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
    font-weight: 400;
}

.video-panel-description {
    color: #999999;
    font-size: 1rem;
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .videos-panel {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .video-panel-content {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .videos-showcase {
        padding: 4rem 0;
    }

    .videos-tabs {
        gap: 0.5rem;
    }

    .videos-tab {
        padding: 0.5rem 0.9rem;
        font-size: 0.85rem;
    }

    .video-panel-title {
        font-size: 1.35rem;
    }
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-section {
    background: #1a1a1a;
    padding: 6rem 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #cccccc;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    padding: 1.25rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.25s ease;
}

.faq-question:hover {
    color: #c4a054;
}

.faq-question-icon {
    flex-shrink: 0;
    color: #c4a054;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: #c4a054;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    color: #777777;
    font-size: 0.88rem;
    line-height: 1.7;
    padding-bottom: 1.25rem;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
    background: #080808;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand .logo-img {
    height: 32px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #555555;
    font-size: 0.83rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 220px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555555;
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.footer-social a:hover {
    border-color: rgba(196, 160, 84, 0.4);
    color: #c4a054;
}

.footer-col h4 {
    color: #cccccc;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: #555555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.25s ease;
}

.footer-col a:hover {
    color: #c4a054;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #555;
    font-size: 0.8rem;
}

.footer-bottom .footer-social {
    display: flex;
    gap: 1rem;
}

.footer-bottom .footer-social a {
    color: #777;
    transition: color 0.3s;
}

.footer-bottom .footer-social a:hover {
    color: #c4a054;
}

/* ============================================================
   Registration Modal
   ============================================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.82);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid rgba(196, 160, 84, 0.3);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
}

.modal-plan-badge {
    background: linear-gradient(135deg, #c4a054 0%, #d4b06a 100%);
    color: #161616;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.82rem;
}

.form-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(196, 160, 84, 0.12);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section-title {
    color: #c4a054;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    margin-top: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: #cccccc;
    font-size: 0.83rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    background: #242424;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.92rem;
    font-family: inherit;
    transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #c4a054;
}

.form-group input.invalid,
.form-group select.invalid {
    border-color: #e74c3c;
}

.form-group input.valid {
    border-color: #2ecc71;
}

.form-group select option {
    background: #242424;
    color: #ffffff;
}

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

.field-error {
    color: #e74c3c;
    font-size: 0.76rem;
    display: block;
    min-height: 1rem;
    margin-top: 0.2rem;
}

.field-hint {
    color: #666666;
    font-size: 0.73rem;
    display: block;
    margin-top: 0.2rem;
    line-height: 1.5;
}

.price-breakdown {
    background: #1e1e1e;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
}

.price-breakdown-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    font-size: 0.83rem;
    color: #aaaaaa;
}

.price-breakdown-total {
    border-top: 1px solid #3a3a3a;
    margin-top: 0.3rem;
    padding-top: 0.5rem;
    font-weight: 700;
    color: #c4a054;
    font-size: 0.93rem;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-cancel {
    background: #2a2a2a;
    color: #aaaaaa;
    border: 1px solid #444444;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.88rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.25s ease;
}

.btn-cancel:hover {
    background: #333333;
}

.btn-submit {
    background: linear-gradient(135deg, #c4a054 0%, #b8943c 100%);
    color: #161616;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s ease;
}

.btn-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #d4b06a 0%, #c4a054 100%);
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.form-global-error {
    background: rgba(231, 76, 60, 0.12);
    border: 1px solid rgba(231, 76, 60, 0.35);
    color: #e74c3c;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.83rem;
    text-align: center;
}

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

    .about-inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(196, 160, 84, 0.15);
    }

    .nav-links.open {
        display: flex;
    }

    header nav {
        position: relative;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .timeline-steps {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-left: 1rem;
    }

    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        width: 100%;
        max-width: 400px;
    }

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

    .about-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-left {
        max-width: 100%;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .modal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .trust-bar-inner {
        gap: 1.2rem;
    }
}
