/* ============================================
   ID FIT — theidfit.co.uk
   Shared template — swap brand colors below
   ============================================ */

/* --- Brand colors (swap 4 lines in :root per site) ---
   ID FIT:        #3366ff / #5588ff / 51,102,255    (gym blue)
   ID Academy:    #22c55e / #4ade80 / 34,197,94     (pitch green — football)
   Elevate Fit:   #d946ef / #e879f9 / 217,70,239    (empowering fuchsia — women's fitness)
   ------------------------------------------------- */

:root {
    --bg-dark: #0d0d1a;
    --bg-card: #141428;
    --bg-card-hover: #1a1a35;
    --accent: #3366ff;
    --accent-light: #5588ff;
    --accent-rgb: 51, 102, 255;
    --accent-glow: rgba(var(--accent-rgb), 0.15);
    --red: #ff4444;
    --green: #44cc44;
    --white: #eeeeee;
    --grey: #aaaaaa;
    --grey-dark: #666666;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    --radius: 12px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.icon-accent { color: var(--accent-light); }

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

/* ============================================
   Fixed Header
   ============================================ */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    background: var(--bg-dark);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: relative;
    background: var(--bg-dark);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
    transition: all 0.3s;
}
.navbar.scrolled {
    background: var(--bg-dark);
    border-bottom-color: rgba(var(--accent-rgb), 0.3);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-logo-img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}
.nav-links a {
    color: var(--grey);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    white-space: nowrap;
    font-size: 13px !important;
}
.nav-cta:hover { background: var(--accent-light) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: blur(2px);
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(var(--accent-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,13,26,0.7) 0%, rgba(13,13,26,0.4) 50%, rgba(13,13,26,0.8) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 80px;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(var(--accent-rgb), 0.15);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-light);
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.highlight { color: var(--accent); }
.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--grey);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
}
.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}
.stat-label {
    font-size: 13px;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--grey-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}
.btn-primary {
    background: var(--accent);
    color: white;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(var(--accent-rgb),0.3); }
.btn-outline {
    background: transparent;
    color: var(--accent-light);
    border: 1.5px solid rgba(var(--accent-rgb),0.4);
}
.btn-outline:hover { border-color: var(--accent); background: rgba(var(--accent-rgb),0.1); }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-full { width: 100%; }

/* ============================================
   USP Strip
   ============================================ */
.usp-strip {
    background: var(--bg-card);
    border-top: 1px solid rgba(var(--accent-rgb),0.1);
    border-bottom: 1px solid rgba(var(--accent-rgb),0.1);
    padding: 32px 0;
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 32px;
}
.usp {
    display: flex;
    align-items: center;
    gap: 14px;
}
.usp-icon { font-size: 28px; }
.usp-text { font-size: 14px; line-height: 1.5; color: var(--grey); }
.usp-text strong { color: var(--white); display: block; }

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-header h2, .about-content h2, .contact-info h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
}
.section-sub {
    font-size: 17px;
    color: var(--grey);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   About
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
}
.about-img-main img, .about-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-img-small {
    width: 50%;
    aspect-ratio: 1;
    border-radius: var(--radius);
    position: absolute;
    bottom: -30px;
    right: -30px;
    border: 4px solid var(--bg-dark);
    overflow: hidden;
}
.placeholder-img-sm {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb),0.15);
    border: 1px solid rgba(var(--accent-rgb),0.3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-light);
}
.about-content .section-tag { display: block; text-align: left; }
.about-content p {
    color: var(--grey);
    font-size: 16px;
    margin-bottom: 16px;
}

/* ============================================
   Team
   ============================================ */
.team { background: var(--bg-card); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.team-card {
    text-align: center;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}
.team-card:hover {
    border-color: rgba(var(--accent-rgb),0.3);
    transform: translateY(-4px);
}
.team-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.team-card:hover .team-img img { transform: scale(1.05); }
.team-card h3 {
    font-size: 18px;
    font-weight: 700;
    padding: 16px 16px 4px;
}
.team-role {
    display: block;
    font-size: 13px;
    color: var(--accent-light);
    font-weight: 600;
    padding: 0 16px 20px;
}

/* ============================================
   Services
   ============================================ */
.services { background: var(--bg-dark); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    border-color: rgba(var(--accent-rgb),0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.service-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(var(--accent-rgb),0.12), var(--bg-card));
}
.service-card-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.service-card:hover .service-card-img img {
    transform: scale(1.05);
}
.service-card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-badge {
    position: absolute;
    top: 0;
    right: 24px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 0 0 6px 6px;
    letter-spacing: 1px;
    z-index: 1;
}
.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 16px;
    line-height: 1.6;
    flex: 1;
}
.service-price {
    display: block;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}
.partner-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-light);
    background: rgba(var(--accent-rgb),0.1);
    padding: 2px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}

/* ============================================
   Timetable
   ============================================ */
.timetable-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
}
.timetable-grid {
    display: grid;
    grid-template-columns: 80px repeat(6, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    overflow: hidden;
    min-width: 500px;
}
.tt-header {
    background: var(--accent);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 8px;
    text-align: center;
}
.tt-time {
    background: var(--bg-card);
    color: var(--accent-light);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    padding: 16px 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tt-cell {
    background: var(--bg-card);
    padding: 16px 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}
.tt-mens { background: rgba(var(--accent-rgb), 0.15); color: var(--accent-light); border-left: 3px solid var(--accent); }
.tt-womens { background: rgba(200, 100, 255, 0.12); color: #c888ff; border-left: 3px solid #c888ff; }
.tt-bootcamp { background: rgba(255, 140, 50, 0.12); color: #ff8c32; border-left: 3px solid #ff8c32; }
.tt-pt { background: rgba(68, 204, 68, 0.1); color: var(--green); border-left: 3px solid var(--green); }

.tt-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--grey);
}
.legend-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
}
.legend-dot.tt-mens { background: var(--accent); }
.legend-dot.tt-womens { background: #c888ff; }
.legend-dot.tt-bootcamp { background: #ff8c32; }
.legend-dot.tt-pt { background: var(--green); }

/* ============================================
   Pricing
   ============================================ */
.pricing { background: var(--bg-card); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.pricing-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}
.pricing-extras {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.extra-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.extra-card h4 {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}
.extra-price {
    font-family: var(--font-mono);
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}
.extra-card p {
    font-size: 14px;
    color: var(--grey);
    margin: 0;
}
.price-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}
.price-card:hover {
    border-color: rgba(var(--accent-rgb),0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.price-card.popular {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(var(--accent-rgb),0.08), var(--bg-dark));
    transform: scale(1.04);
}
.price-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.price-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}
.price {
    font-family: var(--font-mono);
    font-size: 44px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
}
.price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--grey);
}
.price-card ul {
    list-style: none;
    margin-bottom: 28px;
}
.price-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--grey);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-card li::before {
    content: '\2713 ';
    color: var(--green);
    font-weight: 700;
}

.trial-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(var(--accent-rgb),0.12), rgba(var(--accent-rgb),0.04));
    border: 1px solid rgba(var(--accent-rgb),0.25);
    border-radius: var(--radius);
    padding: 40px;
    gap: 32px;
}
.trial-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.trial-content p {
    font-size: 15px;
    color: var(--grey);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(var(--accent-rgb),0.3); transform: translateY(-2px); }
.stars {
    color: #ffb800;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-card p {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-author strong { color: var(--white); font-size: 14px; }
.testimonial-author span { display: block; font-size: 12px; color: var(--grey-dark); }

.google-reviews {
    text-align: center;
    margin-bottom: 56px;
}
.gr-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
}
.gr-badge img { width: 20px; height: 20px; }
.gr-badge span:first-of-type { font-family: var(--font-mono); font-weight: 500; }
.gr-count { color: var(--grey); font-weight: 400; font-family: var(--font); }

/* Instagram */
.insta-section {
    text-align: center;
}
.insta-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}
.insta-section h3 a { color: var(--accent-light); text-decoration: none; }
.insta-section h3 a:hover { text-decoration: underline; }
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}
.insta-placeholder {
    aspect-ratio: 1;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
}
.insta-placeholder.has-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.insta-placeholder:hover img { transform: scale(1.08); }
.insta-placeholder:hover { border-color: var(--accent); }
.insta-cta {
    font-size: 14px;
    color: var(--grey);
    margin-top: 12px;
}
.insta-cta a { color: var(--accent-light); text-decoration: none; }
.insta-cta a:hover { text-decoration: underline; }

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--bg-card); }
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--accent-light); }
.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}
.faq-answer p {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.7;
}
.faq-answer a { color: var(--accent-light); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

/* ============================================
   Contact
   ============================================ */
.contact { background: var(--bg-dark); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info .section-tag { display: block; text-align: left; }
.contact-details { margin-top: 32px; }
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { color: var(--white); font-size: 15px; display: block; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--grey); }
.social-links { display: flex; gap: 8px; margin-top: 8px; }
.social-btn {
    padding: 6px 16px;
    background: rgba(var(--accent-rgb),0.1);
    border: 1px solid rgba(var(--accent-rgb),0.3);
    border-radius: 100px;
    color: var(--accent-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}
.social-btn:hover { background: var(--accent); color: white; }
.wa-btn { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.35); color: #25d366; }
.wa-btn:hover { background: #25d366; color: white; }

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    overflow: hidden;
}
.map-embed { overflow: hidden; }
.contact-form {
    padding: 36px;
}
.contact-form h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.15);
}
.form-group textarea { resize: vertical; }

.form-status {
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
}
.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }

/* ============================================
   Book CTA
   ============================================ */
.book-cta {
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark), #0a0a18);
    position: relative;
    overflow: hidden;
}
.book-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--accent-rgb),0.08), transparent 70%);
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 1;
}
.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
}
.cta-content > p {
    font-size: 18px;
    color: var(--grey);
    max-width: 560px;
    margin: 0 auto 32px;
}
.cta-sub {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--grey-dark);
    text-align: center;
}
.cta-sub a { color: var(--accent-light); text-decoration: none; }
.cta-sub a:hover { text-decoration: underline; text-underline-offset: 2px; }


/* ============================================
   Footer
   ============================================ */
.footer {
    background: #080812;
    padding: 64px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 14px;
    color: var(--grey-dark);
    line-height: 1.6;
}
.footer-links h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey);
    margin-bottom: 16px;
}
.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--grey-dark);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
    color: var(--grey-dark);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--grey-dark); text-decoration: none; }
.footer-legal a:hover { color: var(--grey); }

/* Mobile sticky CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: rgba(13,13,26,0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(var(--accent-rgb),0.2);
    z-index: 999;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid, .pricing-grid.four-col { grid-template-columns: repeat(2, 1fr); }
    .price-card.popular { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    html { scroll-padding-top: 70px; }

    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(13,13,26,0.98);
        padding: 16px;
        border-bottom: 1px solid rgba(var(--accent-rgb),0.1);
        gap: 0;
    }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.03);
    }
    .nav-cta { margin-top: 8px; text-align: center; border-radius: var(--radius-sm) !important; }

    .hero-content { padding: 100px 24px 100px; }
    .hero-stats { gap: 32px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; text-align: center; }

    .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 24px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-small { position: static; width: 40%; }
    .about-images { display: flex; gap: 12px; }

    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .team-img { aspect-ratio: 4/3; }
    .team-card h3 { font-size: 14px; padding: 10px 10px 2px; }
    .team-role { font-size: 11px; padding: 0 10px 12px; }
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid, .pricing-grid.four-col { grid-template-columns: 1fr; }
    .pricing-extras { grid-template-columns: 1fr; }
    .extra-card { flex-direction: column; text-align: center; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }

    .trial-banner { flex-direction: column; text-align: center; }

    .insta-grid { grid-template-columns: repeat(3, 1fr); }

    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .mobile-cta { display: block; }
    .footer { padding-bottom: 80px; }

    .section { padding: 64px 0; }
}

@media (max-width: 480px) {
    .usp-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
