/* ============================================
   SERVICES PAGE — SUPPLEMENTAL STYLES
   Requires style.css as base (CSS vars, navbar, reset)
   ============================================ */

/* ---------- SERVICES HERO ---------- */
.services-hero {
    position: relative;
    padding: 6rem 0 3rem;
    text-align: left;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, var(--accent-glow) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(129, 140, 248, 0.06) 0%, transparent 50%),
        var(--bg-primary);
    border-bottom: 1px solid var(--border);
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 80px);
}

.services-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--accent-subtle);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.services-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.services-hero h1 .accent {
    color: var(--accent-light);
}

.hero-title-break {
    display: inline;
}

.services-hero .hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.services-hero .hero-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 0 1.2rem;
    line-height: 1.7;
}

.services-hero .hero-meta {
    display: flex;
    justify-content: flex-start;
    gap: 1.2rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.1rem;
}

.services-hero .hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.services-hero .hero-meta .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.hero-profile-grid {
    display: grid;
    grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
}

.hero-profile-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.hero-stats {
    margin-top: 1.4rem;
    flex-wrap: wrap;
}

.meet-adam-photo-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.meet-adam-photo {
    width: 210px;
    height: auto;
    border-radius: 1.75rem;
    border: 3px solid var(--border-hover);
    box-shadow: 0 16px 46px rgba(99, 102, 241, 0.22);
    display: block;
}

.meet-adam-gbp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    background: rgba(66, 133, 244, 0.12);
    border: 1px solid #4285F4;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #4285F4;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.meet-adam-gbp-icon {
    font-size: 0.85rem;
    color: #FBBC05;
}

.meet-adam-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.meet-adam-stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.meet-adam-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.meet-adam-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-light);
    text-decoration: none;
    transition: color var(--transition);
}

.meet-adam-profile-link:hover {
    color: #a5b4fc;
}

@media (max-width: 720px) {
    .hero-profile-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.15rem;
        width: calc(100vw - 3rem);
        max-width: 18rem;
    }

    .services-hero {
        padding: 4.25rem 0 1.75rem;
        text-align: center;
    }

    .hero-profile-copy {
        width: calc(100vw - 3rem);
        max-width: 18rem;
        margin: 0 auto;
    }

    .services-hero .hero-sub {
        margin-left: auto;
        margin-right: auto;
        max-width: 18rem;
    }

    .services-hero .hero-tagline {
        max-width: 18rem;
        margin-left: auto;
        margin-right: auto;
    }

    .services-hero .hero-meta {
        display: none;
    }

    .services-hero h1 {
        font-size: clamp(2rem, 8vw, 2.25rem);
        max-width: 9em;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title-break {
        display: block;
    }

    .meet-adam-photo-wrap {
        margin: 0 auto;
    }

    .meet-adam-photo {
        width: 132px;
        height: auto;
        border-radius: 1.35rem;
    }

    .meet-adam-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: center;
        align-items: start;
        gap: 0.6rem;
        width: 100%;
    }

    .meet-adam-stat-value {
        font-size: 1.25rem;
    }

    .meet-adam-stat-label {
        font-size: 0.62rem;
        line-height: 1.35;
    }

    .meet-adam-profile-link {
        justify-content: center;
    }
}

/* ---------- SERVICES SECTION NAV ---------- */
.svc-nav {
    position: sticky;
    top: 64px;
    z-index: 90;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.svc-nav-inner {
    display: flex;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.svc-nav a {
    flex-shrink: 0;
    padding: 0.85rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: all 0.25s;
    white-space: nowrap;
}

.svc-nav a:hover {
    color: var(--accent-light);
    border-bottom-color: var(--accent);
}

/* ---------- SHARED LINKS ---------- */
.showcase-card-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-light);
    text-decoration: none;
    transition: color var(--transition);
}

.showcase-card-link:hover {
    color: #a5b4fc;
}

/* ---------- PRICING SECTIONS ---------- */
.svc-section {
    padding: 5rem 0;
}

.svc-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

.svc-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-light);
    margin-bottom: 0.75rem;
}

.svc-section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.svc-section-desc {
    color: var(--text-secondary);
    max-width: 640px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.svc-section-header {
    margin-bottom: 2.5rem;
}

/* ---------- TAB SWITCHER ---------- */
.tab-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-sans);
    border: 1px solid var(--border);
    border-radius: 100px;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* ---------- PRICING CARD GRID ---------- */
.pricing-grid {
    display: grid;
    gap: 1.5rem;
}

.pricing-grid.cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.pricing-grid.cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: transform var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.price-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--accent-subtle) 0%, transparent 60%), var(--bg-card);
}

.price-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -0.7rem;
    left: 2rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
}

.website-package-card {
    overflow: hidden;
}

.website-demo-media {
    position: relative;
    display: block;
    margin: -2rem -2rem 1.5rem;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
    text-decoration: none;
}

.website-demo-media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform var(--transition), opacity var(--transition);
}

.website-demo-media span {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.45rem 0.7rem;
    border-radius: 100px;
    background: rgba(3, 7, 18, 0.78);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.website-demo-media:hover img {
    transform: scale(1.035);
    opacity: 0.88;
}

.website-demo-link {
    align-self: flex-start;
    margin-top: 0.85rem;
}

.card-tier {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.card-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.card-price {
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.price-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-alt {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
}

.card-features {
    list-style: none;
    flex: 1;
    margin-bottom: 1.5rem;
}

.card-features li {
    padding: 0.45rem 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.4;
}

.card-features li::before {
    content: '\2713';
    color: var(--accent-light);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.card-features li.highlight {
    color: var(--text-primary);
    font-weight: 500;
}

.card-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    line-height: 1.5;
    margin-top: auto;
}

.card-cta {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

/* ---------- SERVICE BLOCKS ---------- */
.service-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.service-block-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.service-block-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.service-block-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-light);
    white-space: nowrap;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 0.75rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    gap: 1rem;
}

.service-item-name {
    color: var(--text-secondary);
}

.service-item-price {
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.service-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.5;
}

/* ---------- VIDEO TIERS ---------- */
.video-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.video-tier {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform var(--transition), border-color var(--transition);
}

.video-tier:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.video-tier.featured-video {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--accent-subtle) 0%, transparent 60%), var(--bg-card);
}

.video-tier-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.video-tier-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.video-tier-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.video-price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.video-price-table td {
    padding: 0.5rem 0;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border);
}

.video-price-table td:first-child {
    color: var(--text-secondary);
}

.video-price-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #fff;
}

.video-tier-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding-top: 0.5rem;
}

.video-sample-showcase {
    margin: 1.5rem 0 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(129, 140, 248, 0.04) 100%), var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.video-sample-grid {
    display: grid;
    gap: 1.25rem;
}

.video-sample-landscape-stack {
    display: grid;
    gap: 1.25rem;
    width: min(100%, 58rem);
    margin: 0 auto;
}

.video-sample-portrait-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: start;
}

.video-sample-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
}

.video-sample-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.video-sample-card--landscape {
    width: 100%;
    justify-self: center;
}

.video-sample-card--landscape .video-sample-body {
    display: block;
}

.video-sample-card--portrait {
    max-width: 26rem;
    justify-self: center;
    width: 100%;
}

.video-sample-media {
    background: #050816;
    overflow: hidden;
}

.video-sample-media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-sample-media--landscape {
    aspect-ratio: 16 / 9;
}

.video-sample-media--portrait {
    aspect-ratio: 9 / 16;
    max-width: 20rem;
    margin: 0 auto;
}

.instagram-embed-portrait {
    overflow: hidden;
}

.instagram-embed-portrait .instagram-media,
.instagram-embed-portrait iframe {
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

.video-sample-body {
    padding: 1rem 1.25rem 1.25rem;
}

.video-sample-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.video-sample-body h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.video-sample-body p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

.video-sample-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.video-sample-more-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 0.25rem;
}

.video-sample-more p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.visual-assets-combo {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
    gap: 1.5rem;
    align-items: start;
    margin: 2rem 0 2.5rem;
}

.visual-services-stack .svc-subhead:first-child {
    margin-top: 0;
}

.visual-services-stack .service-block:last-child {
    margin-bottom: 0;
}

.brand-photo-showcase {
    margin: 0;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(129, 140, 248, 0.04) 100%), var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: sticky;
    top: 6rem;
}

.brand-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.brand-photo-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
}

.brand-photo-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.brand-photo-card--portrait {
    max-width: 24rem;
    justify-self: center;
    width: 100%;
}

.brand-photo-media {
    background: #050816;
    overflow: hidden;
}

.brand-photo-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-photo-media--landscape {
    aspect-ratio: 16 / 10;
}

.brand-photo-media--portrait {
    aspect-ratio: 4 / 5;
}

.brand-photo-body {
    padding: 0.9rem 1rem 1rem;
}

.brand-photo-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.brand-photo-body h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.brand-photo-body p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

.brand-photo-profile-link {
    display: inline-flex;
    margin-top: 1rem;
}

/* ---------- ADD-ONS ---------- */
.addons-block {
    background: var(--bg-secondary);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-top: 0.5rem;
}

.addons-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* ---------- BUNDLE CARDS ---------- */
.bundle-card {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.06) 0%, var(--accent-subtle) 100%), var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.bundle-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.bundle-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bundle-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.bundle-includes {
    list-style: none;
    columns: 2;
    column-gap: 2rem;
    margin-bottom: 1.25rem;
}

.bundle-includes li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
    break-inside: avoid;
}

.bundle-includes li::before {
    content: '\25C6 ';
    color: var(--accent-light);
    font-size: 0.6rem;
}

.bundle-pricing {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: baseline;
    padding-top: 1rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.bundle-price-option {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.bundle-price-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.bundle-price-unit {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.bundle-savings {
    font-size: 0.8rem;
    color: var(--accent-light);
    font-weight: 600;
}

/* ---------- RATE CALLOUT ---------- */
.rate-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 1.5rem;
}

.rate-callout-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.rate-callout-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.rate-callout-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-light);
}

.rate-callout-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* ---------- CTA SECTION ---------- */
.svc-cta {
    text-align: center;
    padding: 5rem 0;
    background:
        radial-gradient(ellipse 60% 40% at 50% 100%, var(--accent-glow) 0%, transparent 60%),
        var(--bg-primary);
}

.svc-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.svc-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* ---------- FOOTER ---------- */
.svc-footer {
    text-align: center;
    padding: 3rem 2rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
    line-height: 1.7;
}

.svc-footer a {
    color: var(--accent-light);
    text-decoration: none;
}

.svc-footer .brand {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 700px) {
    .pricing-grid.cols-3,
    .video-tier-grid,
    .video-sample-portrait-row,
    .brand-photo-grid,
    .visual-assets-combo {
        grid-template-columns: 1fr;
    }

    .brand-photo-showcase {
        position: static;
    }

    .video-sample-card--portrait {
        max-width: none;
    }

    .service-items {
        grid-template-columns: 1fr;
    }

    .bundle-includes {
        columns: 1;
    }

    .services-hero {
        padding: 5rem 1.5rem 3rem;
    }

    .svc-section {
        padding: 3rem 0;
    }

    .svc-nav a {
        padding: 0.7rem 0.85rem;
        font-size: 0.72rem;
    }
}

/* ============================================
   SUBHEADS WITHIN VIDEO & IMAGERY SECTION
   ============================================ */
.svc-subhead {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin: 3rem 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.svc-subhead:first-of-type {
    margin-top: 0;
}

.svc-subhead-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.6rem;
    background: var(--accent-subtle);
    color: var(--accent-light);
    border: 1px solid var(--border-hover);
    border-radius: 4px;
}

.svc-block-intro {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    max-width: 720px;
}

/* ---------- Inline-card reveal (Starting-at + See what's included) ---------- */
.card-starting-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
    display: block;
}

.card-details {
    margin: 0 0 1.25rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.card-details summary {
    cursor: pointer;
    padding: 0.7rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    list-style: none;
    transition: background 0.2s ease;
    user-select: none;
}

.card-details summary::-webkit-details-marker { display: none; }

.card-details summary::after {
    content: "+";
    float: right;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--text-muted);
    font-weight: 400;
}

.card-details[open] summary::after { content: "−"; }

.card-details summary:hover { background: rgba(99, 102, 241, 0.06); }

.card-details .card-features,
.card-details .video-price-table,
.card-details .bundle-includes,
.card-details .service-items {
    margin: 0;
    padding: 0 1rem 1rem;
}

.card-details .bundle-includes {
    columns: 1;
    padding-top: 0.5rem;
}

/* ---------- Combined Hosting+Care block ---------- */
.hosting-care-block .care-tabs {
    display: flex;
    gap: 0.4rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.hosting-care-block .care-tab {
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.hosting-care-block .care-tab[aria-pressed="true"] {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.hosting-care-panel {
    display: none;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.hosting-care-panel[data-active] { display: block; }

.hosting-care-panel .care-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.hosting-care-panel .care-price .price-amount {
    font-size: 1.6rem;
}

/* ---------- Collapsible Add-ons ---------- */
.addons-details {
    margin-top: 2rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    overflow: hidden;
}

.addons-details summary {
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    list-style: none;
    transition: background 0.2s ease;
}

.addons-details summary::-webkit-details-marker {
    display: none;
}

.addons-details summary::after {
    content: "+";
    float: right;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.addons-details[open] summary::after {
    content: "−";
}

.addons-details summary:hover {
    background: var(--bg-card-hover);
}

.addons-details .addons-block {
    margin: 0;
    padding: 0 1.5rem 1.5rem;
}

/* ---------- Social Video Add-ons block ---------- */
.social-video-addons {
    margin-top: 2.5rem;
    padding: 1.75rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 12px;
}

.social-video-addons .addons-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    margin-bottom: 0.75rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.how-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    transition: all 0.25s ease;
}

.how-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.how-step {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-light);
    background: var(--accent-subtle);
    border: 1px solid var(--border-hover);
    border-radius: 4px;
    padding: 0.3rem 0.65rem;
    margin-bottom: 1rem;
}

.how-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.how-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

.how-card strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* ---------- Payment card ---------- */
.payment-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.4) 0%,
            var(--bg-card) 100%);
    border: 1px solid var(--border-hover);
    border-radius: 18px;
    margin-bottom: 2.5rem;
    position: relative;
}

.payment-badge {
    position: absolute;
    top: 1rem;
    left: 1.25rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 700;
}

.payment-logo {
    text-align: center;
    padding: 2rem 1rem;
    background: #ffffff;
    color: #000000;
    border-radius: 12px;
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

.payment-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.payment-body p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0 0 1rem;
}

.payment-body strong {
    color: var(--text-primary);
}

.payment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-list li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.5rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.payment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-weight: 800;
}

/* ---------- How-it-works FAQ notes ---------- */
.how-notes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.how-note {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 1.5rem;
}

.how-note h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-light);
}

.how-note p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   HOSTING RENEWAL BLOCK
   ============================================ */
.hosting-renewal-block {
    margin-top: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 2rem 1.5rem;
}

.hosting-renewal-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.hosting-renewal-icon {
    font-size: 2rem;
    line-height: 1;
    color: var(--accent-light);
    flex-shrink: 0;
}

.hosting-renewal-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.hosting-renewal-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.hosting-renewal-price {
    margin-bottom: 1.25rem;
}

.hosting-renewal-price .price-row {
    margin-bottom: 0.25rem;
}

/* ============================================
   REFERRAL CARD
   ============================================ */
.referral-card {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(129, 140, 248, 0.04));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.referral-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.referral-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.referral-body p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 1.25rem;
}

.referral-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.referral-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.referral-detail strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-light);
}

.referral-detail span {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE BREAKPOINTS FOR NEW SECTIONS
   ============================================ */
@media (max-width: 980px) {
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .payment-logo {
        max-width: 220px;
        margin: 0 auto;
    }

    .referral-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .referral-icon {
        margin: 0 auto;
    }
}

@media (max-width: 720px) {
    .how-grid {
        grid-template-columns: 1fr;
    }

    .how-notes {
        grid-template-columns: 1fr;
    }

    .payment-card {
        padding: 1.5rem 1.25rem;
        gap: 1.25rem;
    }

    .svc-subhead {
        font-size: 0.95rem;
        margin-top: 2.25rem;
    }

    .hosting-renewal-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .referral-card {
        padding: 1.5rem 1.25rem;
    }

    .referral-details {
        grid-template-columns: 1fr;
    }

    .brand-photo-card--portrait {
        max-width: none;
    }
}

/* ========================================================
 * Services Page v2 — Condensation Rewrite (2026-04-17)
 * Appended classes only; existing card/accordion/tab rules
 * above are reused or superseded class-by-class below.
 * ======================================================== */

/* --- Hero v2 -------------------------------------------- */
.svc-hero-v2 {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}

.svc-hero-reel {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.svc-hero-reel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.62;
    filter: saturate(1.18) contrast(1.04);
}

.svc-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.4) 0%, rgba(13, 17, 23, 0.85) 100%);
    pointer-events: none;
}

.svc-hero-content {
    position: relative;
    z-index: 2;
}

/* --- Phone CTA ------------------------------------------ */
.svc-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 1rem;
}

.svc-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #4a6fa5, #2d3a5c);
    color: #fff !important;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(74, 111, 165, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-phone-cta-lg {
    font-size: 1.2rem;
    padding: 1.1rem 2rem;
    margin: 1.25rem auto 2rem;
}

.svc-phone-cta:hover,
.svc-phone-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(74, 111, 165, 0.45);
}

.svc-phone-cta-icon {
    font-size: 1.2em;
    color: currentColor;
}

.svc-phone-cta-label,
.svc-phone-cta-number {
    color: currentColor;
}

.svc-phone-cta-number {
    font-variant-numeric: tabular-nums;
    opacity: 0.92;
}

.svc-hero-secondary {
    color: #b7c6e5;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(183, 198, 229, 0.3);
}

.svc-hero-secondary:hover {
    border-bottom-color: #b7c6e5;
}

.svc-hero-scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 2rem;
    color: #888;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
}

.svc-hero-scroll-arrow {
    display: inline-block;
}

@media (prefers-reduced-motion: no-preference) {
    .svc-phone-cta-lg {
        animation: svc-pulse 2s ease-out 1;
    }

    @keyframes svc-pulse {
        0%, 100% { box-shadow: 0 8px 24px rgba(74, 111, 165, 0.3); }
        50% { box-shadow: 0 12px 36px rgba(74, 111, 165, 0.55); }
    }

    .svc-hero-scroll-arrow {
        animation: svc-bob 1.8s ease-in-out infinite;
    }

    @keyframes svc-bob {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(4px); }
    }
}

/* --- Animated gradient section titles ------------------- */
.svc-animated-gradient {
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff6b6b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

@media (prefers-reduced-motion: no-preference) {
    .svc-animated-gradient {
        animation: svc-gradient-shift 8s linear infinite;
    }

    @keyframes svc-gradient-shift {
        0%   { background-position: 0% 50%; }
        100% { background-position: 200% 50%; }
    }
}

@media (prefers-reduced-motion: reduce) {
    .svc-animated-gradient {
        background: none;
        color: #fff;
        -webkit-text-fill-color: currentColor;
    }
}

/* --- Section scaffolding -------------------------------- */
.svc-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a8aa8;
    margin-bottom: 0.6rem;
}

.svc-section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
    line-height: 1.05;
}

.svc-section-sub {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: #b7c6e5;
    line-height: 1.55;
    margin: 0 0 2.25rem;
    max-width: 60ch;
}

/* --- What I Do tile grid -------------------------------- */
.svc-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .svc-tile-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .svc-tile-grid { grid-template-columns: 1fr; }
}

.svc-tile {
    --tile-accent: #4a90e2;
    --tile-accent-2: #48dbfb;
    --tile-glow: rgba(74, 144, 226, 0.35);
    position: relative;
    background: linear-gradient(155deg, #1a1f2e 0%, #131826 100%);
    border: 1px solid #2d3a5c;
    border-radius: 16px;
    padding: 1.75rem 1.5rem 1.5rem;
    text-align: left;
    cursor: pointer;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    transition: transform 0.25s cubic-bezier(.2,.8,.2,1), border-color 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
    font-family: inherit;
    overflow: hidden;
    isolation: isolate;
}

/* Gradient sweep behind the tile, revealed on hover */
.svc-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 0% 0%, var(--tile-glow), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

/* Top accent bar */
.svc-tile::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--tile-accent), var(--tile-accent-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}

.svc-tile:hover,
.svc-tile:focus-visible {
    transform: translateY(-6px);
    border-color: var(--tile-accent);
    box-shadow: 0 18px 40px -10px var(--tile-glow), 0 0 0 1px var(--tile-accent) inset;
    outline: none;
}

.svc-tile:hover::before,
.svc-tile:focus-visible::before { opacity: 1; }

.svc-tile:hover::after,
.svc-tile:focus-visible::after { transform: scaleX(1); }

/* Per-service accent palette */
.svc-tile--websites { --tile-accent: #4a90e2; --tile-accent-2: #48dbfb; --tile-glow: rgba(74, 144, 226, 0.35); }
.svc-tile--video    { --tile-accent: #ff6b6b; --tile-accent-2: #ffa94d; --tile-glow: rgba(255, 107, 107, 0.35); }
.svc-tile--social   { --tile-accent: #48dbfb; --tile-accent-2: #a29bfe; --tile-glow: rgba(72, 219, 251, 0.35); }
.svc-tile--gbp      { --tile-accent: #1dd1a1; --tile-accent-2: #48dbfb; --tile-glow: rgba(29, 209, 161, 0.35); }
.svc-tile--logo     { --tile-accent: #a29bfe; --tile-accent-2: #ff6b9d; --tile-glow: rgba(162, 155, 254, 0.35); }
.svc-tile--photo    { --tile-accent: #feca57; --tile-accent-2: #ff6b6b; --tile-glow: rgba(254, 202, 87, 0.35); }

.svc-tile-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--tile-accent), var(--tile-accent-2));
    color: #0d1117;
    padding: 0.75rem;
    margin-bottom: 0.6rem;
    box-shadow: 0 8px 20px -6px var(--tile-glow);
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
}

.svc-tile:hover .svc-tile-icon,
.svc-tile:focus-visible .svc-tile-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 12px 28px -6px var(--tile-glow);
}

.svc-tile-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2.2;
}

.svc-tile-name {
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.svc-tile-price {
    font-size: 0.95rem;
    color: #b7c6e5;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem;
}

.svc-tile-price-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #8ea4cc;
    font-weight: 700;
}

.svc-tile-price-amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--tile-accent);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}

.svc-tile-reveal {
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: #7a8aa8;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.5;
    transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.svc-tile:hover .svc-tile-reveal,
.svc-tile:focus-visible .svc-tile-reveal {
    opacity: 1;
    color: var(--tile-accent);
    transform: translateX(3px);
}

.svc-tile-also {
    text-align: center;
    color: #7a8aa8;
    font-size: 0.95rem;
    margin: 1.5rem 0 0;
}

/* --- Service detail modals ------------------------------ */
.svc-modal {
    padding: 0;
    border: 1px solid rgba(74, 111, 165, 0.35);
    border-radius: 18px;
    background: linear-gradient(160deg, #10151f 0%, #0a0d14 100%);
    color: #fff;
    max-width: 720px;
    width: calc(100vw - 2rem);
    max-height: 88vh;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(74, 111, 165, 0.15) inset;
    /* Force center — some UAs lose native centering when margin/inset is reset globally */
    position: fixed;
    inset: 0;
    margin: auto;
}

.svc-modal::backdrop {
    background: rgba(3, 5, 9, 0.78);
    backdrop-filter: blur(8px);
}

.svc-modal-form {
    margin: 0;
    display: flex;
    flex-direction: column;
    max-height: 88vh;
}

.svc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem 1.25rem;
    border-bottom: 1px solid rgba(74, 111, 165, 0.25);
    background: linear-gradient(180deg, rgba(74, 111, 165, 0.08), transparent);
    position: relative;
}

.svc-modal-header::before {
    content: "";
    position: absolute;
    left: 1.75rem;
    right: 1.75rem;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #4a90e2, #48dbfb, transparent);
    opacity: 0.7;
}

.svc-modal-header h3 {
    margin: 0;
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #ffffff 0%, #b7d0ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.svc-modal-close {
    background: transparent;
    border: 1px solid rgba(74, 111, 165, 0.4);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.svc-modal-close:hover,
.svc-modal-close:focus-visible {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    outline: none;
    transform: rotate(90deg);
}

.svc-modal-body {
    padding: 1.5rem 1.75rem;
    overflow-y: auto;
}

.svc-modal-sub {
    color: #d3dff5;
    margin: 0 0 1.5rem;
    font-size: 1.08rem;
    line-height: 1.55;
    max-width: 55ch;
}

.svc-modal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 1.25rem;
    font-size: 0.98rem;
}

.svc-modal-table th,
.svc-modal-table td {
    padding: 0.85rem 0.9rem;
    text-align: left;
    border-bottom: 1px solid rgba(74, 111, 165, 0.18);
}

.svc-modal-table tbody tr:last-child th,
.svc-modal-table tbody tr:last-child td {
    border-bottom: none;
}

.svc-modal-table tbody tr:hover {
    background: rgba(74, 111, 165, 0.06);
}

.svc-modal-table th {
    color: #8ea4cc;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.svc-modal-table tbody th {
    font-size: 0.98rem;
    letter-spacing: 0;
    text-transform: none;
    color: #ffffff;
    font-weight: 700;
}

.svc-modal-table tbody td:nth-child(2) {
    color: #48dbfb;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.svc-modal-bullets {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #d3dff5;
}

.svc-modal-bullets li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.svc-modal-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: 700;
}

.svc-modal-footer {
    padding: 1.25rem 1.75rem;
    border-top: 1px solid rgba(74, 111, 165, 0.25);
    display: flex;
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent, rgba(74, 111, 165, 0.06));
}

.svc-modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #4a90e2 100%);
    color: #fff !important;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 24px -8px rgba(74, 144, 226, 0.5);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.svc-modal-cta:hover,
.svc-modal-cta:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 12px 32px -8px rgba(74, 144, 226, 0.65);
    outline: none;
}

/* --- Cinematic dividers --------------------------------- */
.svc-cinematic-divider {
    height: clamp(56px, 6vw, 88px);
    background:
        linear-gradient(180deg, rgba(5, 7, 13, 0) 0%, rgba(11, 14, 24, 0.76) 48%, rgba(5, 7, 13, 0) 100%);
    position: relative;
    overflow: hidden;
}

.svc-cinematic-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(78rem, calc(100% - 2rem));
    height: 1px;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, transparent 0%, rgba(74, 144, 226, 0.35) 32%, rgba(72, 219, 251, 0.2) 62%, transparent 100%);
}

/* --- Websites tier cards (new classes, reuse existing where possible) --- */
.svc-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .svc-tier-grid { grid-template-columns: 1fr; }
}

.svc-tier-card {
    background: #1a1f2e;
    border: 1px solid #2d3a5c;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.svc-tier-featured {
    border-color: #4a6fa5;
    box-shadow: 0 8px 32px rgba(74, 111, 165, 0.2);
}

.svc-tier-flag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #4a6fa5;
    color: #fff;
    padding: 0.25rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

.svc-tier-demo {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #0d1117;
}

.svc-tier-demo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-tier-demo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 17, 23, 0.7);
    color: #fff;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.svc-tier-demo:hover .svc-tier-demo-overlay,
.svc-tier-demo:focus-visible .svc-tier-demo-overlay {
    opacity: 1;
}

.svc-tier-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.svc-tier-micro {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4a90e2;
}

.svc-tier-title {
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    font-weight: 700;
    margin: 0;
}

.svc-tier-price {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    color: #fff;
}

.svc-tier-price-pre {
    font-size: 0.7em;
    color: #7a8aa8;
    font-weight: 600;
}

.svc-tier-details {
    background: #0d1117;
    border: 1px solid #1e2638;
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    color: #b7c6e5;
    font-size: 0.92rem;
}

.svc-tier-details summary {
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    list-style: none;
}

.svc-tier-details summary::after {
    content: " \25be";
    color: #7a8aa8;
}

.svc-tier-details[open] summary::after {
    content: " \25b4";
}

.svc-tier-details ul {
    margin: 0.6rem 0 0;
    padding-left: 1.1rem;
}

.svc-tier-details li {
    margin: 0.25rem 0;
}

.svc-tier-cta {
    display: inline-block;
    margin-top: auto;
    padding: 0.8rem 1.25rem;
    background: #4a6fa5;
    color: #fff !important;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
}

.svc-tier-cta:hover,
.svc-tier-cta:focus-visible {
    background: #5a7fb5;
    outline: none;
}

/* --- Bundles grid --------------------------------------- */
.svc-bundle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .svc-bundle-grid { grid-template-columns: 1fr; }
}

.svc-bundle-card {
    background: #1a1f2e;
    border: 1px solid #2d3a5c;
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.svc-bundle-micro {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4a90e2;
}

.svc-bundle-name {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    margin: 0;
}

.svc-bundle-price {
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 800;
    color: #fff;
}

.svc-bundle-save {
    color: #48dbfb;
    font-weight: 600;
    font-size: 0.92rem;
}

.svc-bundle-aud {
    color: #b7c6e5;
    margin: 0.4rem 0;
    font-style: italic;
}

/* --- Hosting / Care tabs -------------------------------- */
.svc-hosting-block {
    border-top: 1px solid #1e2638;
    padding-top: 2rem;
}

.svc-hosting-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.svc-hosting-tabs {
    display: inline-flex;
    gap: 0.4rem;
    background: #0d1117;
    padding: 0.3rem;
    border: 1px solid #1e2638;
    border-radius: 999px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.svc-hosting-tab {
    background: transparent;
    border: 1px solid transparent;
    padding: 0.65rem 1.25rem;
    color: #b7c6e5;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.92rem;
    transition: background 0.25s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.svc-hosting-tab:hover {
    color: #fff;
    border-color: rgba(74, 144, 226, 0.4);
    transform: translateY(-1px);
}

.svc-hosting-tab[aria-selected="true"] {
    background: linear-gradient(135deg, #4a90e2 0%, #48dbfb 100%);
    color: #0d1117;
    box-shadow: 0 8px 20px -6px rgba(74, 144, 226, 0.5);
    border-color: transparent;
}

.svc-hosting-panel {
    padding: 1.5rem 1.75rem;
    background: linear-gradient(160deg, rgba(74, 144, 226, 0.05), rgba(10, 13, 20, 0.6) 60%);
    border: 1px solid rgba(74, 144, 226, 0.25);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.svc-hosting-panel::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #4a90e2, #48dbfb);
}

.svc-hosting-panel[hidden] {
    display: none;
}

.svc-hosting-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #d3dff5;
}

.svc-hosting-panel li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.75rem;
    font-size: 1rem;
}

.svc-hosting-panel li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4a90e2, #48dbfb);
    color: #0d1117;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* --- Proof band ----------------------------------------- */
.svc-proof-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.5rem;
    background: #1a1f2e;
    border: 1px solid #2d3a5c;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .svc-proof-hero { grid-template-columns: 1fr; }
}

.svc-proof-hero-media {
    position: relative;
    aspect-ratio: 9 / 16;
    background: #0d1117;
}

.svc-proof-hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #050709;
    display: block;
}

.svc-proof-unmute {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    min-width: 4.75rem;
    min-height: 2.75rem;
    background: rgba(13, 17, 23, 0.85);
    color: #fff;
    border: 1px solid #2d3a5c;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    cursor: pointer;
}

.svc-proof-hero-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.9rem;
}

.svc-proof-micro {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #feca57;
}

.svc-proof-hero-story {
    color: #b7c6e5;
    margin: 0;
    line-height: 1.6;
}

.svc-proof-quote {
    margin: 0;
    padding: 1rem 1.2rem;
    background: #0d1117;
    border: 1px solid #2d3a5c;
    border-radius: 10px;
}

.svc-proof-quote p {
    margin: 0 0 0.5rem;
    color: #fff;
    font-style: italic;
}

.svc-proof-quote cite {
    color: #7a8aa8;
    font-style: normal;
    font-size: 0.9rem;
}

.svc-proof-row {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .svc-proof-row { grid-template-columns: 1fr; }
}

.svc-proof-card {
    background: #1a1f2e;
    border: 1px solid #2d3a5c;
    border-radius: 14px;
    padding: 1.5rem;
}

.svc-proof-stars {
    color: #feca57;
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.svc-proof-stat {
    background: linear-gradient(135deg, #1a1f2e, #0d1117);
    border: 1px solid #2d3a5c;
    border-radius: 14px;
    padding: 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.svc-proof-stat-value {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #48dbfb;
}

.svc-proof-stat-label {
    color: #b7c6e5;
    font-size: 0.92rem;
    max-width: 20ch;
}

.svc-proof-stat-link {
    color: #4a90e2;
    font-size: 0.9rem;
}

/* --- Client strip --------------------------------------- */
.svc-client-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 900px) {
    .svc-client-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .svc-client-strip { grid-template-columns: 1fr; }
}

.svc-client-card {
    background: linear-gradient(155deg, #1a1f2e 0%, #0d1117 100%);
    border: 1px solid rgba(74, 144, 226, 0.25);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9; /* sensible default; JS overrides per-video once metadata loads */
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1), border-color 0.25s ease, box-shadow 0.3s ease;
    isolation: isolate;
}

.svc-client-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 60% at 50% 50%, rgba(74, 144, 226, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.svc-client-card:hover,
.svc-client-card:focus-within {
    transform: translateY(-4px);
    border-color: #4a90e2;
    box-shadow: 0 18px 40px -10px rgba(74, 144, 226, 0.4);
}

.svc-client-card:hover::before,
.svc-client-card:focus-within::before { opacity: 1; }

/* Play hint overlay — appears on hover, disappears once video starts playing */
.svc-client-card::after {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 54px;
    height: 54px;
    margin: -27px 0 0 -27px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.9), rgba(72, 219, 251, 0.9));
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(.2,.8,.2,1);
    z-index: 2;
    pointer-events: none;
}

.svc-client-card:hover::after,
.svc-client-card:focus-within::after {
    opacity: 1;
    transform: scale(1);
}

.svc-client-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: linear-gradient(135deg, #1a1f2e 0%, #050709 100%);
    display: block;
    position: relative;
    z-index: 1;
}

.svc-client-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.85rem 1rem;
    background: linear-gradient(180deg, transparent, rgba(5, 7, 11, 0.95) 60%);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.92rem;
    font-weight: 600;
    z-index: 3;
    pointer-events: none;
}

.svc-client-icon {
    font-size: 1.25em;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.svc-client-name {
    flex: 1;
    line-height: 1.3;
}

/* --- How We Work grid ----------------------------------- */
.svc-how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 760px) {
    .svc-how-grid { grid-template-columns: 1fr; }
}

.svc-how-card {
    --how-accent: #4a90e2;
    --how-accent-2: #48dbfb;
    --how-glow: rgba(74, 144, 226, 0.28);
    position: relative;
    background: linear-gradient(155deg, #1a1f2e 0%, #131826 100%);
    border: 1px solid rgba(74, 144, 226, 0.25);
    border-radius: 16px;
    padding: 1.75rem 1.5rem 1.5rem;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.25s cubic-bezier(.2,.8,.2,1), border-color 0.25s ease, box-shadow 0.3s ease;
}

.svc-how-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 0% 0%, var(--how-glow), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.svc-how-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--how-accent), var(--how-accent-2));
    transform: scaleX(0.25);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}

.svc-how-card:hover,
.svc-how-card:focus-within {
    transform: translateY(-4px);
    border-color: var(--how-accent);
    box-shadow: 0 18px 38px -12px var(--how-glow);
}

.svc-how-card:hover::before,
.svc-how-card:focus-within::before { opacity: 1; }

.svc-how-card:hover::after,
.svc-how-card:focus-within::after { transform: scaleX(1); }

.svc-how-card--terms     { --how-accent: #4a90e2; --how-accent-2: #48dbfb; --how-glow: rgba(74, 144, 226, 0.28); }
.svc-how-card--ownership { --how-accent: #1dd1a1; --how-accent-2: #48dbfb; --how-glow: rgba(29, 209, 161, 0.28); }
.svc-how-card--payments  { --how-accent: #feca57; --how-accent-2: #ff6b6b; --how-glow: rgba(254, 202, 87, 0.28); }
.svc-how-card--referrals { --how-accent: #a29bfe; --how-accent-2: #ff6b9d; --how-glow: rgba(162, 155, 254, 0.28); }

.svc-how-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0.6rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--how-accent), var(--how-accent-2));
    color: #0d1117;
    margin-bottom: 0.85rem;
    box-shadow: 0 6px 16px -4px var(--how-glow);
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}

.svc-how-card-icon svg { width: 100%; height: 100%; stroke-width: 2.2; }

.svc-how-card:hover .svc-how-card-icon,
.svc-how-card:focus-within .svc-how-card-icon {
    transform: scale(1.08) rotate(-4deg);
}

.svc-how-card h3 {
    font-size: 0.78rem;
    font-weight: 800;
    margin: 0 0 1rem;
    color: var(--how-accent);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.svc-how-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #d3dff5;
}

.svc-how-card li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.4rem;
    font-size: 0.98rem;
    line-height: 1.5;
}

.svc-how-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0.4rem;
    color: var(--how-accent);
    font-weight: 800;
}

.svc-faq {
    background: linear-gradient(160deg, #1a1f2e 0%, #131826 100%);
    border: 1px solid rgba(74, 144, 226, 0.25);
    border-radius: 14px;
    padding: 1.1rem 1.5rem;
    color: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.svc-faq[open] {
    border-color: rgba(74, 144, 226, 0.45);
    box-shadow: 0 12px 28px -10px rgba(74, 144, 226, 0.25);
}

.svc-faq summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

.svc-faq summary::-webkit-details-marker { display: none; }

.svc-faq summary::before {
    content: "?";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2, #48dbfb);
    color: #0d1117;
    font-weight: 900;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.svc-faq summary::after {
    content: "\25be";
    color: #4a90e2;
    margin-left: auto;
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}

.svc-faq[open] summary::after {
    transform: rotate(180deg);
}

.svc-faq-body dl {
    margin: 1.25rem 0 0;
    color: #d3dff5;
    padding-top: 1rem;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
}

.svc-faq-body dt {
    margin-top: 1.15rem;
    font-weight: 800;
    color: #fff;
    font-size: 1rem;
    position: relative;
    padding-left: 1.2rem;
}

.svc-faq-body dt:first-child { margin-top: 0; }

.svc-faq-body dt::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #48dbfb;
    font-weight: 800;
}

.svc-faq-body dd {
    margin: 0.45rem 0 0 1.2rem;
    padding-left: 0;
    line-height: 1.55;
}

/* --- Contact -------------------------------------------- */
.svc-contact {
    text-align: center;
}

.svc-contact .svc-section-sub {
    margin-left: auto;
    margin-right: auto;
}

.svc-contact-form {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    background: #1a1f2e;
    border: 1px solid #2d3a5c;
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.svc-contact-form-heading {
    margin: 0;
    font-size: 1.25rem;
}

.svc-contact-honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.svc-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .svc-contact-row { grid-template-columns: 1fr; }
}

.svc-contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.92rem;
    color: #b7c6e5;
}

.svc-contact-field input,
.svc-contact-field textarea {
    background: #0d1117;
    border: 1px solid #2d3a5c;
    border-radius: 8px;
    padding: 0.7rem 0.85rem;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
}

.svc-contact-field input:focus-visible,
.svc-contact-field textarea:focus-visible {
    border-color: #4a90e2;
    outline: none;
}

.svc-contact-check-group {
    border: 1px solid #2d3a5c;
    border-radius: 10px;
    padding: 1rem 1.1rem;
    color: #b7c6e5;
}

.svc-contact-check-group legend {
    padding: 0 0.4rem;
    font-weight: 700;
    color: #fff;
    font-size: 0.92rem;
}

.svc-contact-check-group label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.35rem 1rem 0.35rem 0;
    font-size: 0.92rem;
    cursor: pointer;
}

.svc-contact-submit {
    align-self: flex-start;
    padding: 0.9rem 1.75rem;
    background: #4a6fa5;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
}

.svc-contact-submit:hover,
.svc-contact-submit:focus-visible {
    background: #5a7fb5;
    outline: none;
}

.svc-contact-booking {
    margin: 1.5rem auto 0;
    color: #b7c6e5;
}

.svc-contact-booking a {
    color: #4a90e2;
}

.svc-contact-footer {
    margin: 2rem auto 0;
    display: inline-flex;
    gap: 0.75rem;
    color: #7a8aa8;
    font-size: 0.9rem;
}

/* --- Focus rings for keyboard users --------------------- */
.svc-tile:focus-visible,
.svc-modal-close:focus-visible,
.svc-tier-cta:focus-visible,
.svc-modal-cta:focus-visible,
.svc-phone-cta:focus-visible,
.svc-contact-submit:focus-visible {
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.4);
}

/* --- Reduced motion cleanup ----------------------------- */
@media (prefers-reduced-motion: reduce) {
    .svc-tile,
    .svc-phone-cta,
    .svc-phone-cta-lg,
    .svc-client-card {
        transition: none !important;
        animation: none !important;
    }
}
