* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: #ff1493;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    z-index: 999999;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
}

@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none !important;
    }
}

a, button, [role="button"], input[type="submit"], input[type="button"],
input[type="reset"], input[type="checkbox"], input[type="radio"],
select, label[for], .btn, .nav-link, .hamburger, .faq-question,
.carousel-btn, .scroll-top-btn, .projects-slider-prev, .projects-slider-next,
summary, [tabindex], .clickable {
    cursor: pointer !important;
}

/* Restore normal cursors when reduced motion is active */
body.reduced-motion * {
    cursor: auto !important;
}
body.reduced-motion a,
body.reduced-motion button,
body.reduced-motion [role="button"],
body.reduced-motion input[type="submit"],
body.reduced-motion input[type="button"],
body.reduced-motion select,
body.reduced-motion label[for],
body.reduced-motion .btn,
body.reduced-motion .nav-link,
body.reduced-motion .hamburger,
body.reduced-motion .faq-question,
body.reduced-motion .carousel-btn,
body.reduced-motion .scroll-top-btn {
    cursor: pointer !important;
}

/* Global inline link colour */
a {
    color: #ff1493;
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: #ff69b4;
}

/* Custom glow cursor dot */
#hb-cursor {
    position: fixed;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ff1493;
    box-shadow: 0 0 8px 3px rgba(255, 20, 147, 0.8), 0 0 20px 6px rgba(255, 20, 147, 0.35);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.15s ease, height 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    will-change: transform;
}

/* ── H1 letter bounce-in ── */
@keyframes h1LetterDrop {
    0%   { transform: translateY(-90px) rotate(-18deg) scale(0.4); opacity: 0; }
    65%  { transform: translateY(10px)  rotate(4deg)  scale(1.08); opacity: 1; }
    82%  { transform: translateY(-5px)  rotate(-2deg) scale(0.97); }
    100% { transform: translateY(0)     rotate(0deg)  scale(1);    opacity: 1; }
}
.h1-letter {
    display: inline-block;
    animation: h1LetterDrop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

html {
    overflow-x: clip;
    width: 100%;
}


body {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #000;
    background-attachment: fixed;
    width: 100%;
    overflow-x: clip;
}

section {
    width: 100%;
    max-width: 100%;
}

main {
    width: 100%;
}




body > * {
    position: relative;
    z-index: 2;
}


/* Navigation */
.navbar.hidden {
    transform: translateY(-100%);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1001;
    transition: transform 0.3s ease, background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
    padding: 0.6rem 0;
    height: auto;
    min-height: 50px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem 0 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1002;
}

.nav-logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

/* Hide burger menu on desktop, show on mobile */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1003;
    padding: 9px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    background: rgba(255, 20, 147, 0.06);
    transition: background 0.3s ease, border-color 0.3s ease;
    margin-left: auto;
}

.burger-menu:hover {
    background: rgba(255, 20, 147, 0.15);
    border-color: rgba(255, 20, 147, 0.6);
}

/* Nav overlay backdrop */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive adjustments - Burger menu for tablets and smaller desktops */
@media (max-width: 1100px) {
    .burger-menu {
        display: flex !important;
    }

    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        height: 100vh !important;
        width: 300px !important;
        background: rgba(8, 8, 8, 0.98) !important;
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;
        border-left: 1px solid rgba(255, 20, 147, 0.2) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 6rem 1.5rem 2rem !important;
        transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1001 !important;
        gap: 0.3rem !important;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6) !important;
        overflow-y: auto !important;
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links li {
        margin: 0 !important;
        width: 100% !important;
        text-align: left !important;
        opacity: 0 !important;
        transform: translateX(30px) !important;
        transition: opacity 0.3s ease, transform 0.3s ease !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .nav-links li:last-child {
        border-bottom: none !important;
        margin-top: 1rem !important;
    }

    .nav-links.active li {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.08s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.14s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.20s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.26s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.32s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.38s; }

    .nav-links a:not(.nav-btn):not(.dropdown-toggle) {
        font-size: 1rem !important;
        padding: 0.9rem 0.5rem !important;
        width: 100% !important;
        display: block !important;
        color: #ccc !important;
    }

    .nav-links a:not(.nav-btn):hover {
        color: #fff !important;
        background: none !important;
    }

    .nav-links .dropdown-toggle {
        font-size: 1rem !important;
        padding: 0.9rem 0.5rem !important;
        width: 100% !important;
        justify-content: space-between !important;
        color: #ccc !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }

    .nav-links .nav-btn {
        display: block !important;
        text-align: center !important;
        padding: 0.9rem 1rem !important;
        font-size: 1rem !important;
        width: 100% !important;
    }

    .hero {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-image-wrapper {
        position: absolute;
        width: 350px;
        height: auto;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1.5rem;
        margin-bottom: 420px;
    }

}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
        margin-left: auto;
    }

    .nav-logo img {
        height: 50px;
    }

    .nav-container {
        padding: 0 1rem;
    }
}

.burger-line {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    border-radius: 3px;
    display: block;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #ff1493;
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #ff1493;
}

.nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
}

.nav-links li {
    opacity: 1;
    transform: none;
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 20, 147, 0.95), rgba(0, 0, 0, 0.95));
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.4s ease;
        z-index: 1001;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1.5rem;
    padding: 0.5rem;
    white-space: nowrap;
    position: relative;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff1493, #ff69b4);
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 20, 147, 0.6);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active-link::after {
    width: 100%;
    left: 0;
}

.nav-links a:hover {
    color: #ff1493;
}

/* Nav CTA Button */
.nav-btn::after,
.nav-btn:hover::after {
    display: none !important;
}

.nav-btn {
    background: #ff1493 !important;
    color: #fff !important;
    padding: 0.45rem 1.3rem !important;
    border-radius: 50px !important;
    border: 2px solid #ff1493 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-btn:hover {
    background: transparent !important;
    color: #ff1493 !important;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.35) !important;
}

/* Mobile link styles */
@media (max-width: 768px) {
    .nav-links a:not(.dropdown-toggle):not(.nav-btn) {
        font-size: 1.3rem;
        padding: 15px 30px;
        border-radius: 30px;
        border: 2px solid transparent;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}

/* Mobile hover styles */
@media (max-width: 768px) {
    .nav-links a:not(.dropdown-toggle):not(.nav-btn):hover {
        border: 2px solid #ff1493;
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.1);
    }
}


/* Services Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-toggle .chevron {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-dropdown.open .dropdown-toggle .chevron {
    transform: rotate(180deg);
}

/* Bridge gap so menu doesn't close when moving mouse down */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(8, 8, 8, 0.97);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-top: 2px solid #ff1493;
    border-radius: 14px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    min-width: 220px;
    padding: 0.6rem;
    list-style: none;
    margin: 0;
    z-index: 1100;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,20,147,0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

/* Arrow pointer */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #ff1493;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem !important;
    color: #ddd !important;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border: none !important;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: rgba(255, 20, 147, 0.12);
    color: #fff !important;
    transform: none !important;
    border: none !important;
}

.dropdown-menu li a:hover .dropdown-item-icon {
    background: rgba(255, 20, 147, 0.25);
    border-color: rgba(255, 20, 147, 0.6);
}

.dropdown-item-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 20, 147, 0.08);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.dropdown-item-icon svg {
    width: 16px;
    height: 16px;
    stroke: #ff1493;
}

.dropdown-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.dropdown-item-title {
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
}

.dropdown-item-desc {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
}

.dropdown-menu li + li {
    margin-top: 0.2rem;
}

/* Mobile dropdown */
@media (max-width: 1100px) {
    .nav-dropdown::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        border-top: 1px solid rgba(255,255,255,0.12);
        border-radius: 12px;
        margin-top: 0.75rem;
        padding: 0.5rem;
        opacity: 0;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.25s ease, max-height 0.3s ease;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        opacity: 1;
        pointer-events: all;
        max-height: 400px;
    }

    .dropdown-menu li a {
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 130px 0 50px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.35;
}

.hero-video-toggle {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 20, 147, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    backdrop-filter: blur(8px);
}

.hero-video-toggle:hover {
    background: rgba(255, 20, 147, 0.3);
    border-color: #ff1493;
    transform: scale(1.1);
}

.hero-video-toggle svg {
    width: 16px;
    height: 16px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 0 0;
    width: 100%;
    z-index: 1;
}

.hero-text-wrapper {
    color: white;
    padding-left: 2rem;
}

.hero-greeting {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 4rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: transparent;
    color: #ff1493;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #ff1493;
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    background: #ff1493;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
}

.btn-secondary {
    background: #ff1493;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #ff1493;
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    background: white;
    color: #000;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.hero-ddd {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0.3rem 0 0;
}

.hero-process-message {
    color: #ff1493;
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    margin: 1.5rem 0;
    text-align: left;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
    animation: fadeInGlow 2s ease-in-out;
    max-width: 600px;
}

@keyframes fadeInGlow {
    0% {
        opacity: 0;
        text-shadow: 0 0 0 rgba(255, 20, 147, 0);
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
    }
}

.hero-image-wrapper {
    position: absolute;
    bottom: -50px;
    right: -5rem;
    width: 800px;
    pointer-events: none;
}

.hero-profile {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.hero-profile:hover {
    opacity: 1;
}

/* iPad and tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text-wrapper {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-tagline,
    .hero-description,
    .hero-process-message {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        align-items: center;
        display: flex;
    }
}

/* iPad landscape */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 90px 0 40px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-process-message {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .hero {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-image-wrapper {
        position: absolute;
        width: 280px;
        height: auto;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }

    .hero-content {
        margin-bottom: 340px;
    }
}

@media (max-width: 968px) {
    .hero {
        min-height: auto;
        padding: 110px 0 40px;
    }

    .hero {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-content {
        padding: 0 1.5rem;
        margin-bottom: 380px;
    }

    .hero-buttons {
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-process-message {
        font-size: 1.1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 22px;
        font-size: 0.95rem;
    }

    .hero-image-wrapper {
        position: absolute;
        width: 320px;
        height: auto;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-process-message {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

/* iPhones and small phones */
@media (max-width: 576px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-content {
        padding: 0 1rem;
        margin-bottom: 300px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-process-message {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .hero-image-wrapper {
        position: absolute;
        width: 240px;
        height: auto;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }
}

/* iPhone 12/13/14 (390px width) */
@media (max-width: 430px) {
    .btn-primary,
    .btn-secondary {
        padding: 7px 16px;
        font-size: 0.78rem;
    }
}

/* Very small phones (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero {
        padding: 90px 0 30px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1.9rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-process-message {
        font-size: 0.85rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 7px 14px;
        font-size: 0.75rem;
    }

    .hero-image-wrapper {
        position: absolute;
        width: 150px;
        height: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
    }

    .hero-content {
        padding-bottom: 180px;
        position: relative;
        z-index: 1;
    }
}

/* Phone landscape mode */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 30px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-process-message {
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .hero {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-content {
        margin-bottom: 260px;
    }

    .hero-image-wrapper {
        position: absolute;
        width: 200px;
        height: auto;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }
}

.typewriter-heading {
    position: relative;
    display: inline-block;
}

/* Center all typewriter headings */
.about .typewriter-heading,
.process-section .typewriter-heading,
.projects .typewriter-heading,
.services .typewriter-heading,
.technologies .typewriter-heading,
.certifications .typewriter-heading,
.external-resources .typewriter-heading,
.advanced-services .typewriter-heading,
.faq-section .typewriter-heading {
    display: block;
    text-align: center;
}

.typewriter-heading::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 0.7s infinite;
    color: #ff1493;
}

.typewriter-heading.typed::after {
    display: none;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* About Section */
.about {
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 150px;
    background: #000;
    border-radius: 50%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

@media (max-width: 1100px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 0.85rem;
        width: 100%;
        box-sizing: border-box;
    }
}

.about-content {
    display: block;
}

.about-text h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.about-text h2::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 20, 147, 0.05);
    border-radius: 50%;
    z-index: -1;
}


.about-text p {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-intro {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.about-highlight {
    border-left: 3px solid #ff1493;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 20, 147, 0.05);
    border-radius: 0 8px 8px 0;
    transition: background 0.3s ease;
}

.about-highlight:hover {
    background: rgba(255, 20, 147, 0.1);
}

.highlight-label {
    color: #ff1493;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.about-highlight p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 600px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #000;
}

.process-section h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 600px) {
    .process-section h2 {
        font-size: 2rem;
    }
}

/* Projects Slider */
.projects {
    padding: 100px 0;
    background:#000;
    position: relative;
}

.projects .container {
    max-width: 100%;
    padding: 0;
}

.projects h2 {
    padding: 0 2rem;
}

.projects::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #000;
    clip-path: ellipse(70% 100% at 50% 100%);
}

.inspiration-note {
    text-align: center;
    color: #aaa;
    font-size: 0.95rem;
    margin-top: -2rem;
    margin-bottom: 2.5rem;
    padding: 0 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.projects h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.projects-slider-outer {
    position: relative;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,20,147,0.5);
    color: #ff1493;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow-left  { left: 1rem; }
.slider-arrow-right { right: 1rem; }

.slider-arrow:hover {
    background: #ff1493;
    color: white;
    border-color: #ff1493;
}

/* Projects Infinite Slider */
.projects-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    cursor: grab;
}

.projects-slider-wrapper.grabbing {
    cursor: grabbing;
}

.projects-slider-wrapper.grabbing .projects-slider {
    animation-play-state: paused;
}

.projects-slider {
    display: flex;
    gap: 2rem;
    animation: infiniteProjectSlide 60s linear infinite;
    width: max-content;
}

.projects-slider:hover {
    animation-play-state: paused;
}

.project-item {
    flex: 0 0 auto;
    width: 480px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 50px 15px 50px 15px;
    display: flex;
    flex-direction: column;
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, border-radius 0.3s ease;
}

.project-item:hover {
    transform: translateY(-6px);
    border-radius: 15px 50px 15px 50px;
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.2);
    border-color: rgba(255, 20, 147, 0.5);
}

/* Video area */
.project-video-wrap {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #111;
    position: relative;
    flex-shrink: 0;
}

.project-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fallback gradient when no video loaded */
.project-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,20,147,0.15), rgba(0,0,0,0.4));
    pointer-events: none;
}

/* Content area */
.project-content {
    text-align: left;
    padding: 1.4rem 1.6rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.project-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex: 1;
}

.slide-button {
    background: #ff1493;
    border: 2px solid #ff1493;
    color: #fff;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.slide-button:hover {
    background: transparent;
    color: #ff1493;
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.3);
    transform: translateY(-2px);
}

.slide-button:active {
    transform: translateY(0);
}

@keyframes infiniteProjectSlide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(var(--slide-end, -50%)); }
}

/* Service Cards */
.services {
    padding: 100px 0;
    background:#000;
    margin-bottom: -50px;
    position: relative;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #000;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    transform: translateY(99px);
}

.services-eyebrow {
    text-align: center;
    color: #ff1493;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    opacity: 0.9;
}

.section-eyebrow,
.service-hero-eyebrow,
.services-eyebrow {
    color: #888;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    opacity: 0.9;
}

.services h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    color: #ccc;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.service-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.service-feature-mascot {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
    border-radius: 16px;
    border: 1px solid rgba(255,20,147,0.25);
    background: radial-gradient(circle at 50% 65%, rgba(255,20,147,0.1) 0%, transparent 65%);
    position: relative;
    overflow: visible;
}

.sfm-creature {
    transform: scale(3) translateY(26px);
    transform-origin: center 80%;
}

.sfm-creature .creature-eye::after {
    top: calc(3px + var(--py, 0px));
    left: calc(3px + var(--px, 0px));
    transition: top 0.08s ease, left 0.08s ease;
}

.sfm-creature .creature-inner,
.sfm-creature .creature-speech {
    animation: none;
}

.sfm-creature .creature-speech {
    font-size: 7px;
    padding: 3px 7px;
    border-radius: 8px;
    bottom: calc(100% + 8px);
}

.service-feature-text h3 {
    color: #ff1493;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-feature-text p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

@media (max-width: 768px) {
    .service-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .service-feature-mascot {
        margin: 0 auto;
        max-width: 320px;
        width: 100%;
    }
    .service-feature-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .service-feature-text h3,
    .service-feature-text p { text-align: center; }
    .service-feature-text .btn-primary { align-self: center; }
    .sfm-creature .creature-speech {
        font-size: 4.5px;
        padding: 2px 5px;
        border-radius: 5px;
        bottom: calc(100% + 5px);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .service-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .service-feature-mascot {
        margin: 0 auto;
        max-width: 420px;
        width: 100%;
    }
    .service-feature-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .service-feature-text h3,
    .service-feature-text p { text-align: center; }
    .service-feature-text .btn-primary { align-self: center; }
    .sfm-creature .creature-speech {
        font-size: 5.5px;
        padding: 2px 6px;
        border-radius: 6px;
        bottom: calc(100% + 6px);
    }
}

.service-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 20, 147, 0.07);
    border: 2px solid rgba(255, 20, 147, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    flex-shrink: 0;
}

.service-card:hover {
    transform: scale(1.05);
    border-color: #ff1493;
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.3), 0 0 80px rgba(255, 20, 147, 0.1);
}

.service-card h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Service cards responsive */
@media (max-width: 700px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .service-card {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .service-card p {
        font-size: 1rem;
    }
}



/* Technologies section */
.technologies {
    background: #000;
    padding: 60px 0 50px;
    position: relative;
    z-index: 1;
}

/* Infinite Technologies Slider */
.tech-slider-wrapper {
    overflow: hidden;
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    position: relative;
  
  
    
   
}

.tech-title {
    color: #fff;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}



.tech-slider {
    display: flex;
    gap: 2rem;
    animation: infiniteSlide 18s linear infinite;
    width: calc(200% + 2rem); /* Double width for infinite effect */
    
}

.tech-slider:hover {
    animation-play-state: paused; /* Pause on hover */
}

/* Keep all your existing tech-item styles */
.tech-item {
    flex: 0 0 auto; /* Don't grow or shrink */
    width:120px; /* Fixed width */
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.tech-item:hover {
    transform: scale(1.05);
   
    
    
}



.tech-item h4 {
    color:  #ffffff;
    font-size: 0.9rem;
    margin-top: 1rem;
}


/* Keep all your existing tech-icon styles */
.tech-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 8px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 100px;
}

.tech-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Hover effects */
.tech-item:hover .tech-icon {
    transform: scale(1.1);
    
    color: #ffffff;
}

.tech-item:hover .tech-icon img {
    transform: scale(1.05);
}

/* Infinite slide animation */
@keyframes infiniteSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move by half the width */
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .tech-item {
        width: 100px;
        padding: 1rem;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
    }
    
    .tech-slider {
        gap: 1rem;
        animation-duration: 25s; /* Slightly faster on mobile */
    }
}

/* Reveal animations still work */
.reveal-top .tech-slider-wrapper {
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal-top.active .tech-slider-wrapper {
    transform: translateY(0);
    opacity: 1;
}

/* SEO Certifications */
.certifications {
    padding: 50px 0 80px;
    background: #000000;
    position: relative;
}

.certifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff1493, transparent);
    opacity: 0.3;
}

.certifications h3 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center; /* Centers all items */
}

.cert-item {
    flex: 0 0 auto; /* Don't grow or shrink */
    width: 200px; /* Fixed width */
    border: 1.5px solid #ff1493;
    border-radius: 30px 10px 30px 10px;
    padding: 1.5rem;
    text-align: center;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.cert-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 50px;
    height: 50px;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
}

.cert-item:hover {
    border-radius: 10px 30px 10px 30px;
    transform: translateY(-5px);
}

.cert-item:hover::after {
    transform: scale(1.4);
    opacity: 0.6;
}

.cert-item:nth-child(1) {
    background: linear-gradient(135deg, #ff1493, #4b0082);
}

.cert-item:nth-child(2) {
    background: linear-gradient(135deg, #ff1493, #2e8b57);
}

.cert-item:nth-child(3) {
    background: linear-gradient(135deg, #ff1493, #191970);
}

.cert-item:nth-child(4) {
    background: linear-gradient(135deg, #ff1493, #8b008b);
}

.cert-item:nth-child(5) {
    background: linear-gradient(135deg, #ff1493, #4b0082);
}

.cert-item:nth-child(6) {
    background: linear-gradient(135deg, #ff1493, #2e8b57);
}

/* External Resources Section */
.external-resources {
    padding: 100px 0;
    background: #000;
    position: relative;
}

.external-resources::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 150px;
    background: #000;
    clip-path: ellipse(80% 100% at 50% 0);
}

.external-resources h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.projects-carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
}

.carousel-stage {
    position: relative;
    width: 100%;
    height: 480px;
    perspective: 1200px;
}

.carousel-card {
    position: absolute;
    width: 54%;
    left: 23%;
    top: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #0d0d0d;
    border: 1px solid rgba(255,20,147,0.25);
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94),
                opacity 0.6s ease,
                z-index 0s 0.3s;
    cursor: pointer;
    will-change: transform;
}

.carousel-card.pos-center {
    transform: translateX(0) scale(1) translateZ(120px) rotateY(0deg);
    z-index: 3;
    opacity: 1;
    cursor: default;
}

.carousel-card.pos-left {
    transform: translateX(-72%) scale(0.72) translateZ(0) rotateY(30deg);
    z-index: 2;
    opacity: 0.65;
}

.carousel-card.pos-right {
    transform: translateX(72%) scale(0.72) translateZ(0) rotateY(-30deg);
    z-index: 2;
    opacity: 0.65;
}

/* Hide text content on side cards — they're decorative only */
.carousel-card.pos-left .resource-content,
.carousel-card.pos-right .resource-content {
    visibility: hidden;
}

.carousel-btn {
    position: absolute;
    top: calc(50% - 40px);
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,20,147,0.5);
    color: #ff1493;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #ff1493;
    color: white;
}

.carousel-btn-prev { left: 0; }
.carousel-btn-next { right: 0; }

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,20,147,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #ff1493;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .carousel-stage { height: 460px; }
    .carousel-card  { width: 76%; left: 12%; }
    .carousel-card.pos-left  { transform: translateX(-60%) scale(0.76) translateZ(0) rotateY(25deg); }
    .carousel-card.pos-right { transform: translateX(60%)  scale(0.76) translateZ(0) rotateY(-25deg); }
    .resource-image { height: 200px; }
}

@media (max-width: 600px) {
    .carousel-stage { height: 500px; }
    .carousel-card  { width: 86%; left: 7%; }
    .carousel-card.pos-left  { transform: translateX(-52%) scale(0.78) translateZ(0) rotateY(20deg); }
    .carousel-card.pos-right { transform: translateX(52%)  scale(0.78) translateZ(0) rotateY(-20deg); }
    .resource-image { height: 160px; }
    .resource-content { padding: 0.75rem 1rem 1rem; }
    .resource-content h3 { font-size: 0.95rem; }
    .resource-content p  { font-size: 0.82rem; }
    .carousel-btn { width: 36px; height: 36px; font-size: 1rem; }
}

@media (max-width: 360px) {
    .carousel-stage { height: 480px; }
    .carousel-card  { width: 90%; left: 5%; }
    .carousel-card.pos-left  { transform: translateX(-48%) scale(0.8) translateZ(0) rotateY(15deg); }
    .carousel-card.pos-right { transform: translateX(48%)  scale(0.8) translateZ(0) rotateY(-15deg); }
    .resource-image { height: 140px; }
}

.resource-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,20,147,0.1);
    border: 1px solid rgba(255,20,147,0.3);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}

.resource-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resource-content {
    padding: 0.75rem 1.25rem 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.resource-content h3 {
    color: #ff1493;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.resource-content p {
    color: #ccc;
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .resource-image {
        height: 250px;
    }
}

/* Advanced Services */
.advanced-services {
    padding: 100px 0;
   background:#000;
   position: relative;
}

/* ── 3D Graphics Section ── */
.threed-section {
    padding: 100px 0;
    background: #000;
    position: relative;
}

.threed-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.threed-text {
    flex: 1;
}

.threed-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.threed-text h2 span {
    color: #ff1493;
}

.threed-text p {
    color: #c0c0c0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.threed-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.threed-list li {
    color: #c0c0c0;
    padding-left: 1.4rem;
    position: relative;
    font-size: 0.95rem;
}

.threed-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff1493;
}

.threed-preview {
    flex: 1;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 20, 147, 0.25);
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.1);
}

/* On desktop the CTA sits outside the flex flow — hide it, button is in threed-text */
.threed-cta {
    display: none;
}

@media (max-width: 900px) {
    .threed-inner {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .threed-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .threed-list {
        align-items: flex-start;
        width: 100%;
        max-width: 340px;
        padding-left: 2rem;
    }

    .threed-preview {
        width: 100%;
        height: 420px;
        aspect-ratio: 1 / 1;
    }

    /* Show mobile button below preview, hide desktop button */
    .threed-cta { display: inline-block; }
    .threed-text .btn-primary { display: none; }
}

@media (max-width: 480px) {
    .threed-preview {
        height: unset;
        aspect-ratio: 1 / 1;
    }

    .threed-text h2 {
        font-size: 1.6rem;
    }
}

.advanced-services::after {
    display: none;
}

.advanced-services h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
} 

.service-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.advanced-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1500px;
}

.advanced-card {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.15), rgba(0, 0, 0, 0.4));
    border: 2px solid #ff1493;
    border-radius: 40px 15px 40px 15px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    transition: all 0.5s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 220px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.advanced-card::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 120px;
    height: 120px;
    background: rgba(255, 20, 147, 0.08);
    border-radius: 50%;
    z-index: 0;
    transition: all 0.5s ease;
}

.advanced-card:hover {
    transform: translateY(-20px) translateX(15px) scale(1.1) rotateY(12deg) rotateZ(-2deg);
    box-shadow: -20px 30px 60px rgba(255, 20, 147, 0.6),
                0 0 50px rgba(255, 20, 147, 0.5);
    border-color: #ff1493;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 10;
    border-radius: 15px 40px 15px 40px;
}

.advanced-card:hover::before {
    transform: scale(1.8);
    opacity: 0.5;
}

.advanced-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.advanced-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.card-link {
    color: #ff1493;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.card-link:hover {
    color: #ff69b4;
    transform: translateX(5px);
}

.price-list-btn {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 1rem;
}

.price-list-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.4);
}

/* Accessibility Warning Modal */
.access-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.access-modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.access-modal {
    background: #0d0d0d;
    border: 1px solid rgba(255, 20, 147, 0.35);
    border-top: 3px solid #ff1493;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(255, 20, 147, 0.08);
    animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalIn {
    from { transform: translateY(30px) scale(0.95); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

.access-modal-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.access-modal-icon svg {
    width: 26px;
    height: 26px;
    stroke: #ff1493;
}

.access-modal h2 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.access-modal p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.access-modal p strong {
    color: #fff;
}

.access-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.8rem;
}

.access-btn-continue {
    background: #ff1493;
    color: #fff;
    border: 2px solid #ff1493;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.access-btn-continue:hover {
    background: transparent;
    color: #ff1493;
}

.access-btn-reduce {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.access-btn-reduce:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

/* Reduced motion override */
body.reduced-motion *,
body.reduced-motion *::before,
body.reduced-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

body.reduced-motion .hero-creature,
body.reduced-motion .page-bottom-creature-zone,
body.reduced-motion #bottomCreature,
body.reduced-motion .creature-sparkle {
    display: none !important;
}

.access-reset-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.78rem;
    cursor: pointer;
    margin-top: 0.75rem;
    transition: color 0.3s ease;
    font-family: inherit;
}

.access-reset-btn:hover {
    color: #ff1493;
}

/* Footer container override - full width */
.footer .container {
    max-width: 100%;
    padding: 0 6rem;
}

/* Footer */
.footer {
    background: #000;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #ff1493;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    z-index: 9999;
}

.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 180px;
    background: #000;
    clip-path: polygon(0 100%, 100% 50%, 100% 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.1), transparent);
    border-radius: 50%;
    animation: floatFooter 15s ease-in-out infinite;
}

@keyframes floatFooter {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-50px, 30px) scale(1.1);
    }
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 20, 147, 0.15);
}

.footer-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}


.footer-section h3 {
    color: #ff1493;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff1493, transparent);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    text-align: left;
    width: 100%;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    font-size: 1rem;
}

.footer-section ul li::before {
    content: '';
}

.footer-section ul li:hover {
    padding-left: 0;
}

.footer-section ul li:hover a {
    color: #ff1493;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.footer-section p {
    color: #bbb;
    line-height: 2;
    font-size: 1rem;
    text-align: left;
    margin-bottom: 0.8rem;
    text-align: left;
}

.footer-section p a {
    color: #ff1493;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-section p a:hover {
    color: #ff69b4;
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

/* Footer Logo / Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding-right: 3rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}


/* Footer Coverage Row */
.footer-coverage-row {
    width: 100%;
    padding: 2.5rem 0;
    margin-top: 1rem;
}

.footer-coverage-row h3 {
    color: #ff1493;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-map-row {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.footer-map {
    flex: 0 0 50%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 20, 147, 0.3);
}

.footer-map-info {
    flex: 0 0 calc(50% - 2rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-map-info p {
    color: #bbb;
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

.footer-map-info strong {
    color: #fff;
}

.footer-coverage-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.footer-coverage-cities li {
    font-size: 0.78rem;
    color: #ccc;
    background: rgba(255, 20, 147, 0.08);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 50px;
    padding: 0.25rem 0.7rem;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
}

.footer-coverage-cities li:hover {
    background: rgba(255, 20, 147, 0.18);
    border-color: #ff1493;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 3rem;
    border-top: 2px solid rgba(255, 20, 147, 0.3);
    background: #000;
    position: relative;
    z-index: 2;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #ff1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-bottom p a {
    color: #ff1493;
    text-decoration: none;
}

.footer-bottom p a:hover {
    color: #ff69b4;
    text-decoration: underline;
}

/* Reveal Animation Base Styles */
.reveal {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
}

/* Reveal from Left */
.reveal-left {
    transform: translateX(-100px);
}

.reveal-left.active {
    transform: translateX(0);
}

/* Reveal from Right */
.reveal-right {
    transform: translateX(100px);
}

.reveal-right.active {
    transform: translateX(0);
}

/* Reveal from Top */
.reveal-top {
    transform: translateY(-100px);
}

.reveal-top.active {
    transform: translateY(0);
}

/* Reveal from Bottom */
.reveal-bottom {
    transform: translateY(100px);
}

.reveal-bottom.active {
    transform: translateY(0);
}

/* Staggered animations for grid items */
.reveal-right .service-card,
.reveal-right .advanced-card,
.reveal-top .tech-item,
.reveal-left .cert-item {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.reveal-right.active .service-card,
.reveal-right.active .advanced-card {
    opacity: 1;
    transform: translateX(0);
}

.reveal-top.active .tech-item {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left.active .cert-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered delay for grid items */
.reveal-right .service-card:nth-child(1),
.reveal-right .advanced-card:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-right .service-card:nth-child(2),
.reveal-right .advanced-card:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-right .service-card:nth-child(3),
.reveal-right .advanced-card:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-right .advanced-card:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-right .advanced-card:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-right .advanced-card:nth-child(6) {
    transition-delay: 0.6s;
}

.reveal-right .advanced-card:nth-child(7) {
    transition-delay: 0.7s;
}

/* Tech items staggered from top */
.reveal-top .tech-item:nth-child(1) { transition-delay: 0.1s; }
.reveal-top .tech-item:nth-child(2) { transition-delay: 0.15s; }
.reveal-top .tech-item:nth-child(3) { transition-delay: 0.2s; }
.reveal-top .tech-item:nth-child(4) { transition-delay: 0.25s; }
.reveal-top .tech-item:nth-child(5) { transition-delay: 0.3s; }
.reveal-top .tech-item:nth-child(6) { transition-delay: 0.35s; }
.reveal-top .tech-item:nth-child(7) { transition-delay: 0.4s; }
.reveal-top .tech-item:nth-child(8) { transition-delay: 0.45s; }
.reveal-top .tech-item:nth-child(9) { transition-delay: 0.5s; }
.reveal-top .tech-item:nth-child(10) { transition-delay: 0.55s; }
.reveal-top .tech-item:nth-child(11) { transition-delay: 0.6s; }

/* Certification items from left */
.reveal-left .cert-item:nth-child(1) { transition-delay: 0.1s; }
.reveal-left .cert-item:nth-child(2) { transition-delay: 0.2s; }
.reveal-left .cert-item:nth-child(3) { transition-delay: 0.3s; }
.reveal-left .cert-item:nth-child(4) { transition-delay: 0.4s; }

/* Initial state for grid items */
.reveal-right .service-card,
.reveal-right .advanced-card {
    transform: translateX(100px);
}

.reveal-top .tech-item {
    transform: translateY(-50px);
}

.reveal-left .cert-item {
    transform: translateX(-50px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        width: 100vw; /* Full viewport width on mobile */
        right: -100vw; /* Hide completely off-screen */
    }

    .service-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .advanced-card {
        width: 300px;
    }

    .cert-item {
        width: 180px;
    }

    .tech-item {
        width: 100px;
    }
}


/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #000000;
    position: relative;
}

.faq-section::before {
    display: none;
}

.faq-section h2 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid #ff1493;
    border-radius: 30px 10px 30px 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.faq-item:nth-child(1) {
    background: linear-gradient(135deg, #ff1493, #4b0082);
}

.faq-item:nth-child(2) {
    background: linear-gradient(135deg, #ff1493, #2e8b57);
}

.faq-item:nth-child(3) {
    background: linear-gradient(135deg, #ff1493, #191970);
}

.faq-item:nth-child(4) {
    background: linear-gradient(135deg, #ff1493, #8b008b);
}

.faq-item:nth-child(5) {
    background: linear-gradient(135deg, #ff1493, #4b0082);
}

.faq-item:nth-child(6) {
    background: linear-gradient(135deg, #ff1493, #2e8b57);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.4);
    border-radius: 10px 30px 10px 30px;
}

.faq-item:hover::after {
    transform: translateY(-50%) scale(1.5);
    opacity: 0.6;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #fff;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

/* Contact Page Styles */
.main-content {
    padding-top: 0;
}

.contact-hero {
    background-image: var(--hero-img, none);
    background-color: #000;
    background-size: cover;
    background-position: center;
    padding: 160px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.contact-hero > .container {
    position: relative;
    z-index: 2;
}

.contact-hero-glow {
    content: '';
    position: absolute;
    top: -5%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.09) 0%, transparent 65%);
    border-radius: 50%;
    animation: float 22s ease-in-out infinite;
    pointer-events: none;
}

.contact-hero > .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.contact-hero h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-hero h1 span:not(.h1-letter):not(.h1-word) {
    color: #ff1493;
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
}

.contact-hero p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-section {
    padding: 80px 0;
    background: #000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form h2,
.contact-info h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff1493;
    background: rgba(255, 20, 147, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff1493' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: #ff1493;
    color: white;
    border: 2px solid #ff1493;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-info {
    color: #ccc;
}

.info-item {
    background: rgba(255, 20, 147, 0.05);
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2.2rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: #ff1493;
    background: rgba(255, 20, 147, 0.1);
    transform: translateY(-5px);
}

.info-item h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.info-item p {
    color: #ccc;
    line-height: 1.8;
    margin: 0.5rem 0;
}

.info-item a {
    color: #ff1493;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #ff69b4;
    text-decoration: underline;
}

.info-item em {
    color: #ff1493;
    font-style: italic;
}

.info-item strong {
    color: #fff;
}

/* Contact Hero Eyebrow */
.contact-hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ff1493;
    margin-bottom: 1rem;
}

/* Trust Badges */
.contact-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.contact-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 20, 147, 0.08);
    border: 1px solid rgba(255, 20, 147, 0.35);
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.contact-trust-badge svg {
    width: 14px;
    height: 14px;
    stroke: #ff1493;
    flex-shrink: 0;
}

.contact-trust-badge:hover {
    background: rgba(255, 20, 147, 0.18);
    border-color: #ff1493;
    transform: translateY(-2px);
}

/* Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff1493, transparent);
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Two-column form row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Required star */
.required-star {
    color: #ff1493;
}

/* Submit button arrow */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.submit-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .submit-arrow {
    transform: translateX(4px);
}

/* Info item icon layout */
.info-item-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 20, 147, 0.12);
    border: 1px solid rgba(255, 20, 147, 0.35);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.info-icon svg {
    width: 18px;
    height: 18px;
    stroke: #ff1493;
}

.info-item:hover .info-icon {
    background: rgba(255, 20, 147, 0.25);
}

.info-item h3 {
    margin: 0;
    font-size: 1.1rem;
}

/* Hours grid */
.hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.4rem 1.5rem;
    color: #ccc;
    font-size: 0.95rem;
}

.closed-tag {
    color: rgba(255, 255, 255, 0.35);
}

/* CTA card */
.info-item-cta {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.12), rgba(75, 0, 130, 0.15)) !important;
    border-color: rgba(255, 20, 147, 0.4) !important;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1.4rem;
    background: #ff1493;
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-link svg {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.cta-link:hover {
    background: transparent;
    outline: 2px solid #ff1493;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.3);
    transform: translateY(-2px);
}

.cta-link:hover svg {
    transform: translateX(3px);
}

/* FAQ subtitle */
.faq-subtitle {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 1rem;
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
}

/* Responsive Contact Page */
@media (max-width: 968px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-trust-badges {
        gap: 0.5rem;
    }
}

/* Service Pages Styles */
.service-hero {
    background-image: var(--hero-img, none);
    background-color: #000;
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 55vh;
    display: flex;
    align-items: center;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.service-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 20, 147, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.service-hero > .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.service-hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff1493;
    margin-bottom: 1rem;
    opacity: 0.85;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

.service-hero h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.service-hero h1 span:not(.h1-letter):not(.h1-word) {
    color: #ff1493;
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
}

h1 span:not(.h1-letter):not(.h1-word),
h2 span,
h3 span {
    color: #ff1493;
}

.service-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff1493, transparent);
}

.service-hero .hero-subtitle {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.service-hero p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 15px 40px;
    background: transparent;
    color: #ff1493;
    text-decoration: none;
    border: 2px solid #ff1493;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    background: #ff1493;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
}

.btn-secondary {
    padding: 15px 40px;
    background: #ff1493;
    color: white;
    text-decoration: none;
    border: 2px solid #ff1493;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    background: white;
    color: #000;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ── Hero Creature ── */
@keyframes creatureWalk {
    from { transform: translateX(-80px); }
    to   { transform: translateX(calc(100vw + 80px)); }
}
@keyframes creatureTurn {
    0%, 49.9% { transform: scaleX(1); }
    50%, 100% { transform: scaleX(-1); }
}
@keyframes creatureBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}
@keyframes legSwing {
    0%, 100% { transform: rotate(-20deg); }
    50%       { transform: rotate(20deg); }
}

.hero-creature {
    position: absolute;
    bottom: 2px;
    left: 0;
    pointer-events: none;
    z-index: 10;
    animation: creatureWalk 10s linear infinite alternate;
}

.creature-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: creatureTurn 20s steps(1, end) infinite;
}

.creature-body {
    width: 56px;
    height: 44px;
    background: linear-gradient(135deg, #2a0a2a 0%, #1a0520 60%, #0d0010 100%);
    border-radius: 50% 50% 44% 44%;
    position: relative;
    animation: creatureBob 0.5s ease-in-out infinite;
    box-shadow: 0 0 14px rgba(255, 20, 147, 0.55), 0 0 30px rgba(255, 20, 147, 0.2), inset 0 1px 0 rgba(255,255,255,0.08);
    border: 1px solid rgba(255, 20, 147, 0.35);
}

.creature-eye {
    position: absolute;
    width: 10px;
    height: 12px;
    background: white;
    border-radius: 50%;
    top: 10px;
}
.creature-eye::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 6px;
    background: #1a001a;
    border-radius: 50%;
    top: 3px;
    left: 3px;
}
.creature-eye.left  { left: 9px; }
.creature-eye.right { right: 9px; }

/* Glasses */
.creature-glasses {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 14px;
    pointer-events: none;
}
.creature-glasses::before,
.creature-glasses::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 13px;
    border: 1.5px solid rgba(255, 20, 147, 0.7);
    border-radius: 40% 40% 50% 50%;
    top: 0;
    background: rgba(255, 20, 147, 0.06);
}
.creature-glasses::before { left: 0; }
.creature-glasses::after  { right: 0; }

.creature-mouth {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 5px;
    border-bottom: 2px solid rgba(255, 105, 180, 0.8);
    border-radius: 0 0 8px 8px;
}

/* Code badge on the body */
.creature-code {
    position: absolute;
    bottom: 4px;
    right: 4px;
    font-size: 6.5px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: rgba(255, 20, 147, 0.75);
    letter-spacing: -0.5px;
    line-height: 1;
}

/* Styled hair — 3 spikes in brand palette */
.creature-hair {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

@keyframes hairWiggle {
    0%, 100% { transform: rotate(var(--hr, 0deg)) scaleY(1); }
    50%       { transform: rotate(var(--hr, 0deg)) scaleY(1.15); }
}

.hair-spike {
    position: absolute;
    width: 5px;
    border-radius: 3px 3px 0 0;
    transform-origin: bottom center;
    animation: hairWiggle 0.5s ease-in-out infinite;
}

.hair-spike.s1 { height:20px; background: linear-gradient(to top, #ff1493, #ff69b4); left: 8px;  top:-15px; --hr:-32deg; animation-delay:0.00s; }
.hair-spike.s2 { height:26px; background: linear-gradient(to top, #cc0077, #ff1493); left:26px;  top:-26px; --hr:  0deg; animation-delay:0.08s; }
.hair-spike.s3 { height:18px; background: linear-gradient(to top, #bb44ff, #dd88ff); left:43px;  top:-13px; --hr: 32deg; animation-delay:0.04s; }

/* Speech bubble */
.creature-speech {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 5, 20, 0.95);
    color: #ffffff;
    border: 1px solid rgba(255, 20, 147, 0.4);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 10.5px;
    font-family: 'Courier New', monospace;
    white-space: nowrap;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 20;
    box-shadow: 0 4px 16px rgba(255, 20, 147, 0.2), 0 2px 8px rgba(0,0,0,0.5);
}
.creature-speech::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(255, 20, 147, 0.4);
}
.creature-speech.visible { opacity: 1; }
.creature-speech { animation: creatureTurn 20s steps(1, end) infinite; }


.creature-sparkle {
    position: fixed;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: sparkleFade 0.9s ease-out forwards;
}

.creature-legs {
    display: flex;
    gap: 6px;
    margin-top: 2px;
}

.creature-leg {
    width: 6px;
    height: 12px;
    background: linear-gradient(to bottom, #3a0a3a, #ff1493);
    border-radius: 3px;
    transform-origin: top center;
    animation: legSwing 0.25s ease-in-out infinite alternate;
}
.creature-leg:nth-child(2) { animation-delay: 0.08s; }
.creature-leg:nth-child(3) { animation-delay: 0.16s; }
.creature-leg:nth-child(4) { animation-delay: 0.24s; }

/* ── Bottom creature fall zone ── */
.page-bottom-creature-zone {
    position: relative;
    height: 90px;
    width: 100%;
    overflow: visible;
    pointer-events: none;
    background: transparent;
}

.bottom-creature-el {
    position: absolute;
    bottom: 2px;
    left: 0;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transform: translateY(-110vh);
}

@keyframes creatureFallIn {
    0%   { transform: translateY(-110vh); }
    65%  { transform: translateY(18px);   }
    77%  { transform: translateY(-10px);  }
    87%  { transform: translateY(6px);    }
    93%  { transform: translateY(-3px);   }
    100% { transform: translateY(0);      }
}

.bottom-creature-el.falling {
    opacity: 1;
    animation: creatureFallIn 1.4s cubic-bezier(0.3, 0, 0.2, 1) forwards;
}

.bottom-creature-el.walking {
    opacity: 1;
    transform: none;
    animation: bottomCreatureWalk 10s linear infinite alternate;
}

@keyframes bottomCreatureWalk {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(100vw - 60px)); }
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 20, 147, 0.4), 0 0 20px rgba(255, 20, 147, 0.2); }
    50%       { box-shadow: 0 0 18px rgba(255, 20, 147, 0.9), 0 0 40px rgba(255, 20, 147, 0.5), 0 0 70px rgba(255, 105, 180, 0.3); }
}

.btn-primary,
.btn-secondary {
    animation: btnPulse 2s ease-in-out infinite;
}


.service-intro {
    padding: 80px 0;
    background: #000;
}

.service-intro h2 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.service-intro p {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.features-section {
    padding: 80px 0;
    background: #000;
}

.features-section h2 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 20, 147, 0.05);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 40px 15px 40px 15px;
    padding: 2rem 1.75rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 20, 147, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: rgba(255, 20, 147, 0.08);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #ff1493;
    background: rgba(255, 20, 147, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.feature-card:hover::after {
    transform: scale(1.3);
    opacity: 0.5;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon-bar {
    width: 36px;
    height: 3px;
    background: #ff1493;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    transition: width 0.3s ease;
}

.feature-card:hover .feature-icon-bar {
    width: 56px;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.75;
}

.ideal-for-section {
    padding: 80px 0;
    background: #000;
}

/* ── Custom Websites page ── */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.6rem;
    opacity: 0.9;
    
}

.cw-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .cw-split-grid { grid-template-columns: 1fr; }
}

.cw-split-card {
    background: rgba(255, 20, 147, 0.05);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 40px 15px 40px 15px;
    padding: 2.25rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cw-split-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 20, 147, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cw-split-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: rgba(255, 20, 147, 0.08);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.3s ease;
}

.cw-split-card--wp {
    background: rgba(255, 20, 147, 0.05);
    border-color: rgba(255, 20, 147, 0.3);
}

.cw-split-card:hover,
.cw-split-card--wp:hover {
    border-color: #ff1493;
    background: rgba(255, 20, 147, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.cw-split-card:hover::after,
.cw-split-card--wp:hover::after {
    transform: scale(1.3);
    opacity: 0.5;
}

.cw-split-icon {
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: #ff1493;
    margin-bottom: 1.5rem;
    display: block;
    transition: width 0.3s ease;
}

.cw-split-card:hover .cw-split-icon {
    width: 56px;
}

.cw-split-card h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.cw-split-card p {
    color: #fff;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cw-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.1rem;
}

.cw-check-list li {
    color: #888;
    padding: 0.35rem 0;
    padding-left: 1.4rem;
    position: relative;
    font-size: 0.88rem;
}

.cw-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff1493;
    font-weight: 700;
}

.cw-wp-section {
    padding: 80px 0 120px;
    background: #050505;
    position: relative;
    z-index: 1;
}

.cw-wp-section h2 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.cw-wp-intro {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 760px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    text-align: center;
}

.ideal-for-section h2 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.ideal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.addons-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
}

.ideal-card {
    background: rgba(255, 20, 147, 0.05);
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 40px 15px 40px 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.ideal-card::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 60px;
    height: 60px;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
}

.ideal-card:hover {
    border-color: #ff1493;
    background: rgba(255, 20, 147, 0.1);
    transform: translateY(-5px);
    border-radius: 15px 50px 15px 50px;
}

.ideal-card:hover::after {
    transform: scale(1.5);
    opacity: 0.5;
}

.ideal-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.ideal-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
}

.process-section {
    padding: 80px 0;
    background: #000;
}

.process-section h2 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.process-timeline {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    padding-left: 1rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: calc(1rem + 28px);
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, #ff1493, rgba(255, 20, 147, 0.1));
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 0;
    align-items: flex-start;
    position: relative;
    padding: 2rem 2rem 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
    border-radius: 12px;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item:hover {
    background: rgba(255, 20, 147, 0.03);
}

.timeline-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #000;
    border: 1px solid #ff1493;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #ff1493;
    position: relative;
    z-index: 1;
    letter-spacing: 0;
}

.timeline-content {
    padding-top: 0.6rem;
}

.timeline-content h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.timeline-content p {
    color: #777;
    font-size: 1rem;
    line-height: 1.75;
    max-width: 560px;
}

.comparison-section {
    padding: 80px 0;
    background: #000;
    position: relative;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #000;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
    transform: translateY(-99px);
}

.comparison-section h2 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table {
    max-width: 860px;
    margin: 0 auto;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease;
}

.comparison-row:not(.header):hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: #111;
    border-bottom: 1px solid rgba(255, 20, 147, 0.25);
}

.comparison-cell {
    padding: 1.1rem 1.5rem;
    color: #999;
    font-size: 0.95rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell:not(:first-child) {
    justify-content: center;
    text-align: center;
}

.comparison-cell.highlight {
    background: rgba(255, 20, 147, 0.04);
    color: #eee;
    font-weight: 500;
    border-right-color: rgba(255, 20, 147, 0.12);
}

.comparison-cell.positive {
    color: #3ecf8e;
    font-weight: 500;
}

.comparison-cell.positive::before {
    content: '✓';
    font-weight: 700;
    color: #3ecf8e;
    font-size: 0.85rem;
}

.comparison-cell.negative {
    color: #555;
    font-weight: 400;
}

.comparison-cell.negative::before {
    content: '–';
    color: #444;
    font-weight: 700;
}

.comparison-cell.neutral {
    color: #999;
    font-weight: 400;
}

.comparison-cell.neutral::before {
    content: '~';
    color: #666;
    font-weight: 700;
}

.comparison-cell.highlight.positive {
    color: #3ecf8e;
}

.comparison-cell.highlight.neutral {
    color: #999;
}

.comparison-row.header .comparison-cell {
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1.2rem 1.5rem;
}

.comparison-row.header .comparison-cell:not(:first-child) {
    color: #ff1493;
}

/* ── E-Commerce Platform Section ── */
.ecom-section {
    padding: 80px 0 180px;
    background: #000;
}



.ecom-section h2 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.ecom-intro {
    color: #aaa;
    font-size: 1.05rem;
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.7;
}

.ecom-platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}


.ecom-platform-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 20, 147, 0.15);
}

.ecom-platform-header h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 0 0 0.3rem;
}

.ecom-platform-tagline {
    color: #ff1493;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.ecom-cost-block {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 20, 147, 0.15);
}

.ecom-cost-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    gap: 1rem;
}

.ecom-cost-item:last-child {
    border-bottom: none;
}

.ecom-cost-total {
    margin-top: 0.4rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 20, 147, 0.2) !important;
    border-bottom: none !important;
}

.ecom-cost-total .ecom-cost-label,
.ecom-cost-total .ecom-cost-value {
    color: #fff;
    font-weight: 600;
}

.ecom-cost-label {
    color: #888;
    font-size: 0.88rem;
    white-space: nowrap;
}

.ecom-cost-value {
    color: #ccc;
    font-size: 0.88rem;
    text-align: right;
}

.ecom-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.ecom-pros h4,
.ecom-cons h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.8rem;
}

.ecom-pros h4 {
    color: #3ecf8e;
}

.ecom-cons h4 {
    color: #ff6b6b;
}

.ecom-pros ul,
.ecom-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ecom-pros ul li,
.ecom-cons ul li {
    font-size: 0.88rem;
    line-height: 1.5;
    padding: 0.25rem 0 0.25rem 1.1rem;
    position: relative;
    color: #bbb;
}

.ecom-pros ul li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #3ecf8e;
    font-weight: 700;
}

.ecom-cons ul li::before {
    content: 'x';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: 700;
    font-size: 0.8rem;
}

.ecom-best-for {
    font-size: 0.9rem;
    color: #999;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #ff1493;
    padding: 0.8rem 1rem;
    border-radius: 0 15px 15px 0;
    margin: 0;
    line-height: 1.5;
}

.ecom-best-for strong {
    color: #fff;
}

.ecom-comparison-table {
    max-width: 860px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .ecom-platform-grid {
        grid-template-columns: 1fr;
    }
    .ecom-pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ecom-cost-item {
        flex-direction: column;
        gap: 0.2rem;
    }
    .ecom-cost-value {
        text-align: left;
    }
}

.pricing-section {
    padding: 80px 0;
    background: #000;
}

.pricing-section h2 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-intro {
    color: #777;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.price-guide-note {
    color: #aaa;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0.5rem 0 1.2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: rgba(255, 20, 147, 0.05);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 40px 15px 40px 15px;
    padding: 2rem 1.75rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 20, 147, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: rgba(255, 20, 147, 0.08);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #ff1493;
    background: rgba(255, 20, 147, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.pricing-card:hover::after {
    transform: scale(1.3);
    opacity: 0.5;
}

.pricing-card.featured {
    background: rgba(255, 20, 147, 0.08);
    border-color: #ff1493;
}

.pricing-card.featured:hover {
    transform: translateY(-5px);
}

.featured-badge {
    display: inline-block;
    background: rgba(255, 20, 147, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 20, 147, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.price {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.price-guide-note {
    color: #666;
    font-size: 0.85rem;
    font-style: normal;
    margin: 0 0 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex: 1;
}

.pricing-card ul li {
    color: #888;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.pricing-card ul li:before {
    content: "✓";
    color: #ff1493;
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.pricing-notice {
    margin: 2.5rem auto 0;
    max-width: 860px;
    background: rgba(255, 20, 147, 0.06);
    border-left: 4px solid #ff1493;
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
}

.pricing-notice p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 0.75rem;
}

.pricing-notice p:last-child {
    margin-bottom: 0;
}

.pricing-notice strong {
    color: #fff;
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

.pricing-cta p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(0, 0, 0, 0.8));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 200px;
    background: #000;
    border-radius: 50%;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Responsive Service Pages */
@media (max-width: 968px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ideal-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid rgba(255, 20, 147, 0.2);
    }

    .comparison-row.header .comparison-cell:first-child {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    /* In column mode the text would start at the same left as the circle
       and cross the vertical line — indent it past the line             */
    .timeline-content {
        padding-left: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* ══════════════════════════════════════════
   Service Page — Scroll Reveal Animations
   ══════════════════════════════════════════ */
.srv-reveal {
    opacity: 0;
    transform: scale(0.82);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.srv-reveal.srv-from-top    { transform: translateY(-50px); transition: opacity 0.5s ease, transform 0.5s ease; }
.srv-reveal.srv-from-bottom { transform: translateY(50px);  transition: opacity 0.5s ease, transform 0.5s ease; }
.srv-reveal.srv-from-left   { transform: translateX(-60px); transition: opacity 0.5s ease, transform 0.5s ease; }
.srv-reveal.srv-from-right  { transform: translateX(60px);  transition: opacity 0.5s ease, transform 0.5s ease; }

.srv-reveal.srv-visible {
    opacity: 1;
    transform: scale(1) translateX(0) translateY(0);
}
/* Restore hover lift after reveal */
.feature-card.srv-reveal.srv-visible:hover,
.pricing-card.srv-reveal.srv-visible:hover,
.ideal-card.srv-reveal.srv-visible:hover,
.seo-concept-card.srv-reveal.srv-visible:hover,
.review-llm-card.srv-reveal.srv-visible:hover,
.host-concept-card.srv-reveal.srv-visible:hover,
.hosting-tier.srv-reveal.srv-visible:hover,
.site-size-card.srv-reveal.srv-visible:hover,
.speed-factor-card.srv-reveal.srv-visible:hover {
    transform: translateY(-5px);
}
@media (prefers-reduced-motion: reduce) {
    .srv-reveal { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE
   ZFlip (360px) → iPad Pro (1024px) · Portrait & Landscape
   ══════════════════════════════════════════════════════ */

/* ─── Homepage hero: image bottom-anchored, centred, no oversized gap ───
   Keep the image absolute at the bottom of the hero.
   Replace the old huge margin-bottom with padding-bottom on the hero
   so the text/buttons sit naturally above the image without a big void.
   The creature shares the same bottom anchor.
   ─────────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    /* Image: absolute, bottom of hero, horizontally centred */
    .hero-image-wrapper {
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
        width: min(300px, 72vw) !important;
        height: auto !important;
        margin: 0 !important;
    }
    /* Remove the old fixed-space hack; hero padding-bottom does the job */
    .hero-content {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        position: static !important;
        z-index: 1 !important;
        align-items: center !important;
        width: 100% !important;
    }
    /* Reset the asymmetric left padding on the text wrapper */
    .hero-text-wrapper {
        padding-left: 0 !important;
        text-align: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    /* Padding-bottom = roughly the visible height of the image
       so text never overlaps it                                  */
    .hero {
        padding-bottom: 310px !important;
        align-items: center !important;
    }
    /* Creature stays pinned to very bottom of hero */
    .hero-creature {
        position: absolute !important;
        bottom: 2px !important;
    }
}

@media (max-width: 768px) {
    .hero-image-wrapper { width: min(270px, 68vw) !important; }
    .hero               { padding-bottom: 280px !important; }
}

@media (max-width: 600px) {
    .hero-image-wrapper { width: min(230px, 65vw) !important; }
    .hero               { padding-bottom: 240px !important; }
}

@media (max-width: 360px) {
    .hero-image-wrapper { width: min(180px, 60vw) !important; }
    .hero               { padding-bottom: 190px !important; }
}

@media (max-width: 1100px) and (orientation: landscape) {
    .hero-image-wrapper { width: min(180px, 32vw) !important; }
    .hero               { padding-bottom: 190px !important; }
}

/* ─── iPad portrait (769–1024px) ─── */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-logo { margin-left: 1rem; }

    .footer .container { padding: 0 2rem; }
    .footer-content { flex-wrap: wrap; gap: 2rem; }
    .footer-brand { flex: 1 1 100%; padding-right: 0; margin-bottom: 0.5rem; }
    .footer-section { flex: 1 1 calc(33% - 1rem); }

    .service-hero h1 { font-size: 2.8rem; }
    .contact-hero h1 { font-size: 2.8rem; }

    /* ── Inspiration slider ── */
    .projects-slider { animation-duration: 90s; }

    /* 3-col grids → 2-col at tablet portrait */
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid  { grid-template-columns: repeat(2, 1fr); }

    /* Blog 2-col grids stay 2-col on iPad — fine */
    .hosting-tier-grid,
    .host-concept-grid,
    .site-size-grid,
    .term-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Tablet portrait & large phone landscape (≤768px) ─── */
@media (max-width: 768px) {

    /* ── Section vertical padding ── */
    .services          { padding: 60px 0; margin-bottom: 0; }
    .advanced-services { padding: 60px 0; }
    .faq-section       { padding: 60px 0; }

    /* ── Advanced service cards ── */
    .advanced-grid { flex-direction: column; gap: 1.25rem; }
    .advanced-card { width: 100% !important; min-width: unset !important; box-sizing: border-box; }
    .advanced-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 8px 24px rgba(255, 20, 147, 0.4);
    }

    /* ── Global text centering ── */
    .service-intro p,
    .features-section p,
    .ideal-for-section p,
    .pricing-section p,
    .cta-section p,
    .comparison-section p,
    .faq-section p,
    .services-intro,
    .service-subtitle,
    .advanced-services p,
    .hero-description,
    .hero-tagline,
    .hero-process-message,
    .feature-card p,
    .feature-card h3,
    .ideal-card h3,
    .ideal-card p,
    .pricing-intro,
    .pricing-cta p,
    .info-item p,
    .contact-hero p,
    .service-hero p,
    .seo-intro-block,
    .host-intro-block,
    .cw-wp-intro,
    .advanced-card h3,
    .advanced-card p,
    .service-hero-eyebrow,
    .section-eyebrow { text-align: center; }

    /* ── Process & Why Choose: main titles + intro centred ── */
    .process-section h2,
    .about-text h2,
    .about-intro { text-align: center; }

    /* ── Process & Why Choose: body content left-aligned ── */
    .process-section p,
    .timeline-content h3,
    .timeline-content p,
    .highlight-label,
    .about-highlight p { text-align: left; }

    /* ── Button groups centred ── */
    .hero-buttons,
    .pricing-cta,
    .cta-section,
    .service-intro > .container,
    .info-item-cta { text-align: center; }

    .hero-buttons { justify-content: center; }
    .pricing-cta .btn-primary,
    .cta-section .btn-primary,
    .service-intro .btn-secondary,
    .service-intro .btn-primary { display: inline-block; }

    /* Keep these left-aligned */
    .form-group label,
    .form-group input,
    .form-group select,
    .form-group textarea,
    .pricing-card ul,
    .pricing-card ul li,
    .footer-section p,
    .footer-section ul,
    .footer-map-info p,
    .cw-check-list,
    .cw-check-list li,
    .faq-answer,
    .keyword-box ul li,
    .hosting-tier ul li,
    .timeline-explainer-item p { text-align: left; }

    /* ── Inspiration slider ── */
    .slider-arrow           { width: 36px; height: 36px; font-size: 1rem; }
    .slider-arrow-left      { left: 0.5rem; }
    .slider-arrow-right     { right: 0.5rem; }
    .project-item           { width: 78vw; }
    .project-video-wrap     { height: 200px; }
    .projects-slider        { animation-duration: 80s; }

    /* ── Global section headings ── */
    .about-text h2,
    .process-section h2,
    .projects h2,
    .services h2,
    .advanced-services h2,
    .certifications h3,
    .external-resources h2,
    .service-intro h2,
    .features-section h2,
    .pricing-section h2,
    .ideal-for-section h2,
    .comparison-section h2,
    .cta-section h2,
    .faq-section h2,
    .cw-wp-section h2,
    .tech-title { font-size: 1.9rem; }

    /* ── Service hero ── */
    .service-hero { padding: 80px 0 50px; min-height: auto; }
    .service-hero h1 { font-size: 2.2rem; }
    .service-hero .hero-subtitle { font-size: 1.1rem; letter-spacing: 1px; }
    .service-hero p { font-size: 1rem; }

    /* ── Contact hero ── */
    .contact-hero { padding: 110px 0 70px; min-height: auto; }
    .contact-hero h1 { font-size: 2.2rem; }
    .contact-hero p  { font-size: 1rem; }

    /* ── Hero buttons wrap nicely ── */
    .service-hero .hero-buttons,
    .contact-hero .hero-buttons { gap: 0.8rem; }

    /* ── Service circles → rectangular on mobile ── */
    .service-card {
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
        border-radius: 20px !important;
        padding: 2rem !important;
    }
    .service-grid { justify-content: center; gap: 2rem; }

    /* ── Features grid: 3→2 ── */
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    /* ── Pricing grid: 3→2 ── */
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    /* ── Blog inline 2-col grids → 1-col ── */
    .hosting-tier-grid,
    .host-concept-grid,
    .site-size-grid,
    .term-grid { grid-template-columns: 1fr; }

    /* ── Blog analogy/intro blocks ── */
    .seo-analogy-box,
    .host-analogy-box { padding: 1.5rem; }
    .seo-intro-block,
    .host-intro-block { padding: 1.5rem; }

    /* ── Big stats ── */
    .big-stat .stat-num { font-size: 2.2rem; }

    /* ── Carousel ── */
    .carousel-card   { width: 80%; left: 10%; }

    /* ── Comparison table ── */
    .comparison-cell { padding: 0.8rem 1rem; font-size: 0.85rem; }

    /* ── Footer ── */
    .footer .container  { padding: 0 1.5rem; }
    .footer-content     { flex-direction: column; gap: 2rem; }
    .footer-brand       { padding-right: 0; }
    .footer-map-row     { flex-direction: column; }
    .footer-map         { flex: none; width: 100%; height: 220px; }
    .footer-map-info    { flex: none; width: 100%; }
}

/* ─── Standard phone (≤600px) ─── */
@media (max-width: 600px) {

    /* ── Inspiration slider ── */
    .projects-slider-outer  { padding: 0 0.5rem; gap: 0.5rem; }
    .slider-arrow           { width: 32px; height: 32px; font-size: 0.9rem; }
    .slider-arrow-left      { left: 0.3rem; }
    .slider-arrow-right     { right: 0.3rem; }
    .project-item           { width: 82vw; }
    .project-video-wrap     { height: 180px; }
    .project-content        { padding: 1rem 1.25rem 1.25rem; }
    .project-content h3     { font-size: 1rem; }
    .project-content p      { font-size: 0.85rem; }
    .projects-slider        { animation-duration: 70s; }

    /* ── Global section headings ── */
    .about-text h2,
    .process-section h2,
    .projects h2,
    .services h2,
    .advanced-services h2,
    .certifications h3,
    .external-resources h2,
    .service-intro h2,
    .features-section h2,
    .pricing-section h2,
    .ideal-for-section h2,
    .comparison-section h2,
    .cta-section h2,
    .faq-section h2,
    .cw-wp-section h2,
    .tech-title { font-size: 1.65rem; }

    /* ── Service & contact heroes ── */
    .service-hero { padding: 70px 0 40px; }
    .service-hero h1 { font-size: 1.9rem; }
    .contact-hero { padding: 90px 0 50px; }
    .contact-hero h1 { font-size: 1.9rem; }

    /* ── Hero buttons stack ── */
    .service-hero .hero-buttons { flex-direction: column; align-items: center; }
    .service-hero .hero-buttons .btn-primary,
    .service-hero .hero-buttons .btn-secondary { width: 100%; max-width: 280px; text-align: center; }

    /* ── Features grid: 2→1 ── */
    .features-grid { grid-template-columns: 1fr; }

    /* ── Pricing grid: 2→1 ── */
    .pricing-grid { grid-template-columns: 1fr; }

    /* ── Ideal grid already 1-col at 968px, keep tidy ── */
    .ideal-grid { gap: 1.25rem; }

    /* ── Section padding tighten ── */
    .services,
    .advanced-services,
    .service-intro,
    .features-section,
    .ideal-for-section,
    .process-section,
    .pricing-section,
    .cta-section,
    .comparison-section,
    .faq-section { padding: 50px 0; }

    /* ── Process timeline ── */
    .process-timeline::before { left: calc(1rem + 20px); }
    .timeline-number { width: 42px; height: 42px; font-size: 0.9rem; }
    /* Re-align text indent to match the smaller circle/line position */
    .timeline-content { padding-left: 2rem; }

    /* ── CTA section ── */
    .cta-section h2 { font-size: 1.65rem; }
    .cta-section p  { font-size: 1rem; }

    /* ── Certifications ── */
    .cert-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .cert-item {
        width: 100%;
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
        box-sizing: border-box;
    }
    .cert-item::after { display: none; }

    /* ── FAQ ── */
    .faq-grid { width: 100%; box-sizing: border-box; }
    .faq-item { width: 100%; box-sizing: border-box; }
    .faq-item::after { display: none; }
    .faq-question { font-size: 0.95rem; padding: 1.1rem 1.2rem; }
    .faq-section h2 { margin-bottom: 1.5rem; }

    /* ── Contact form ── */
    .contact-form-card { padding: 1.25rem; }
    .contact-trust-badges { gap: 0.4rem; }
    .contact-trust-badge { font-size: 0.78rem; padding: 0.4rem 0.85rem; }

    /* ── Body background fix for mobile ── */
    body { background-attachment: scroll; background: #000; }

    /* ── Hide custom cursor and sparkles on touch devices ── */
    #hb-cursor { display: none !important; }
    .creature-sparkle { display: none !important; }

    /* ── Footer ── */
    .footer { padding: 60px 0 0; background: #000; }
    .footer .container { padding: 0 1rem; }
    .footer-content { flex-direction: column; align-items: center; }
    .footer-brand { align-items: center; padding-right: 0; text-align: center; }
    .footer-section { align-items: center; text-align: center; }
    .footer-section h3 { font-size: 1.1rem; text-align: center; }
    .footer-section h3::after { left: 50%; transform: translateX(-50%); }
    .footer-section ul { text-align: center; }
    .footer-section p { text-align: center; }
    .footer-logo { height: 50px; }
    .footer-bottom p { font-size: 0.85rem; text-align: center; }
    .footer-coverage-row h3 { text-align: center; }
    .footer-map-row { flex-direction: column; align-items: center; }
    .footer-map { width: 100%; flex: unset; }
    .footer-map-info { align-items: center; flex: unset; width: 100%; }
    .footer-map-info p { text-align: center !important; }
    .footer-coverage-cities { justify-content: center; }

    /* ── Big stats ── */
    .big-stat .stat-num   { font-size: 2rem; }
    .big-stat             { flex: 1 1 120px; }

    /* ── Carousel ── */
    .carousel-card  { width: 86%; left: 7%; }
}

/* ─── Small phones & Z Flip folded (≤360px) ─── */
@media (max-width: 360px) {

    /* ── Inspiration slider ── */
    .project-item       { width: 88vw; }
    .project-video-wrap { height: 160px; }

    /* ── Nav ── */
    .nav-logo img   { height: 42px; }
    .nav-container  { padding: 0 0.75rem; }

    /* ── Global headings ── */
    .about-text h2,
    .process-section h2,
    .service-intro h2,
    .features-section h2,
    .pricing-section h2,
    .ideal-for-section h2,
    .cta-section h2,
    .faq-section h2,
    .tech-title { font-size: 1.4rem; }

    /* ── Service hero ── */
    .service-hero { padding: 60px 0 30px; }
    .service-hero h1 { font-size: 1.5rem; }
    .service-hero .hero-subtitle { font-size: 0.88rem; letter-spacing: 0; }
    .service-hero p { font-size: 0.88rem; }

    /* ── Contact hero ── */
    .contact-hero { padding: 70px 0 35px; }
    .contact-hero h1 { font-size: 1.5rem; }
    .contact-hero p  { font-size: 0.88rem; }

    /* ── Buttons ── */
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.82rem;
        width: 100%;
        max-width: 260px;
        text-align: center;
        display: block;
    }
    .hero-buttons,
    .service-hero .hero-buttons { flex-direction: column; align-items: center; gap: 0.5rem; }

    /* ── Global container ── */
    .container           { padding: 0 0.75rem; width: 100%; box-sizing: border-box; }
    .footer .container   { padding: 0 0.75rem; }

    /* ── Cards ── */
    .feature-card  { padding: 1.25rem 1rem; }
    .pricing-card  { padding: 1.25rem 1rem; }
    .ideal-card    { padding: 1.25rem; }
    .info-item     { padding: 1.1rem; }

    /* ── Form ── */
    .contact-form-card { padding: 0.9rem; }
    .form-group label  { font-size: 0.88rem; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 0.88rem; padding: 9px 11px; }
    .submit-btn { font-size: 0.9rem; padding: 12px 20px; }

    /* ── Certifications ── */
    .cert-item { padding: 0.85rem 0.6rem; font-size: 0.78rem; }

    /* ── FAQ ── */
    .faq-question { font-size: 0.85rem; padding: 0.9rem 1rem; }
    .faq-item.active .faq-answer { padding: 0.9rem 1rem; font-size: 0.9rem; }

    /* ── Footer ── */
    .footer-section h3  { font-size: 1rem; margin-bottom: 1rem; }
    .footer-bottom p    { font-size: 0.75rem; }
    .footer-logo        { height: 42px; }

    /* ── Big stats ── */
    .big-stat .stat-num   { font-size: 1.75rem; }
    .big-stat .stat-label { font-size: 0.75rem; }

    /* ── Process timeline ── */
    .timeline-item     { gap: 0.6rem; }
    .timeline-number   { width: 36px; height: 36px; font-size: 0.82rem; }
    .process-timeline  { padding-left: 0.5rem; }
    .process-timeline::before { left: calc(0.5rem + 18px); }
    /* Line at 0.5rem + 18px = 26px; indent text past it */
    .timeline-content  { padding-left: 1.75rem; }

    /* ── Service circles ── */
    .service-card { max-width: 100% !important; }

    /* ── Carousel ── */
    .carousel-card  { width: 92%; left: 4%; }

    /* ── CTA section ── */
    .cta-section h2 { font-size: 1.4rem; }
    .cta-section p  { font-size: 0.9rem; }
}

/* ─── Phone landscape (any phone rotated) ─── */
@media (max-width: 768px) and (orientation: landscape) {
    .service-hero,
    .contact-hero {
        padding: 32px 0 30px;
        min-height: auto;
    }
    .service-hero h1,
    .contact-hero h1  { font-size: 1.8rem; }
    .contact-trust-badges { margin-top: 1rem; }

    /* Keep 2-col on landscape for efficiency */
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid  { grid-template-columns: repeat(2, 1fr); }
    .ideal-grid    { grid-template-columns: repeat(2, 1fr); }

    /* Blog grids stay 2-col in landscape */
    .hosting-tier-grid,
    .host-concept-grid,
    .site-size-grid,
    .term-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Touch devices: restore native cursor, hide custom cursor ── */
@media (hover: none) {
    * { cursor: auto !important; }
    a, button, [role="button"], input[type="submit"], input[type="button"],
    input[type="reset"], select, label[for], .btn, summary, [tabindex], .clickable {
        cursor: pointer !important;
    }
    #hb-cursor { display: none !important; }
    .creature-sparkle { display: none !important; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#hb-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #0d0d0d;
    border-top: 2px solid #ff1493;
    padding: 1.4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 30px rgba(255, 20, 147, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#hb-cookie-banner.hb-cookie-visible {
    transform: translateY(0);
}

.hb-cookie-text {
    flex: 1;
    min-width: 220px;
}

.hb-cookie-text p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.hb-cookie-text a {
    color: #ff1493;
    text-decoration: underline;
}

.hb-cookie-text a:hover {
    color: #ff69b4;
}

.hb-cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.hb-cookie-accept {
    background: #ff1493;
    color: #fff;
    border: none;
    padding: 0.65rem 1.4rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer !important;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.hb-cookie-accept:hover {
    background: #ff69b4;
    transform: translateY(-1px);
}

.hb-cookie-decline {
    background: transparent;
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.65rem 1.4rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer !important;
    transition: border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.hb-cookie-decline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

@media (max-width: 600px) {
    #hb-cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem 1.2rem 1.4rem;
    }

    .hb-cookie-actions {
        width: 100%;
    }

    .hb-cookie-accept,
    .hb-cookie-decline {
        flex: 1;
        text-align: center;
    }
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */

/* Hero */
.privacy-hero {
    position: relative;
    background: #000;
    padding: 180px 0 80px;
    overflow: hidden;
    text-align: center;
}

.privacy-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 20, 147, 0.12), transparent 70%);
    pointer-events: none;
}

.privacy-hero .container {
    position: relative;
    z-index: 2;
}

.privacy-hero-eyebrow {
    color: #ff1493;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.privacy-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.privacy-hero h1 .h1-pink,
.privacy-hero h1 .h1-pink .h1-letter {
    color: #ff1493;
}

.privacy-hero p {
    color: #ccc;
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 0.8rem;
    line-height: 1.7;
}

.privacy-last-updated {
    display: inline-block;
    color: #ff1493;
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(255, 20, 147, 0.08);
    border: 1px solid rgba(255, 20, 147, 0.25);
    border-radius: 20px;
    padding: 0.35rem 1rem;
    margin-top: 0.8rem;
}

/* Content */
.privacy-content {
    background: #000;
    padding: 60px 0 100px;
}

.privacy-container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1.5rem;
}

.privacy-card {
    background: rgba(255, 20, 147, 0.05);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 40px 15px 40px 15px;
    padding: 2rem 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 20, 147, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.privacy-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: rgba(255, 20, 147, 0.08);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.3s ease;
}

.privacy-card > * {
    position: relative;
    z-index: 1;
}

.privacy-card:hover {
    transform: translateY(-5px);
    border-color: #ff1493;
    background: rgba(255, 20, 147, 0.1);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.privacy-card h2 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.privacy-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 6px;
    padding: 0.25rem 0.55rem;
    flex-shrink: 0;
}

.privacy-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-card p:last-child {
    margin-bottom: 0;
}

.privacy-card ul {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.privacy-card ul li {
    margin-bottom: 0.5rem;
}

.privacy-card ul li strong,
.privacy-card strong {
    color: #fff;
}

.privacy-card a {
    color: #ff1493;
}

.privacy-card a:hover {
    color: #ff69b4;
}

/* Privacy — tablet (up to 1024px) */
@media (max-width: 1024px) {
    .privacy-hero {
        padding: 150px 0 70px;
    }

    .privacy-hero-glow {
        width: 90vw;
        height: 300px;
    }

    .privacy-container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
}

/* Privacy — mobile (up to 768px) */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 120px 0 50px;
        text-align: center;
    }

    .privacy-hero-glow {
        width: 100vw;
        height: 250px;
    }

    .privacy-hero p {
        font-size: 0.95rem;
    }

    .privacy-card {
        padding: 1.5rem 1.4rem;
        border-radius: 24px 10px 24px 10px;
    }

    .privacy-card h2 {
        font-size: 1.05rem;
    }

    .privacy-container {
        gap: 1.2rem;
        padding: 0 1rem;
    }

    .privacy-content {
        padding: 40px 0 70px;
    }
}

/* Privacy — small phones (up to 480px) */
@media (max-width: 480px) {
    .privacy-hero {
        padding: 100px 0 40px;
    }

    .privacy-hero p {
        font-size: 0.9rem;
    }

    .privacy-last-updated {
        font-size: 0.75rem;
    }

    .privacy-card {
        padding: 1.2rem 1rem;
        border-radius: 20px 8px 20px 8px;
    }

    .privacy-card h2 {
        font-size: 1rem;
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .privacy-number {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
        flex-shrink: 0;
    }

    .privacy-card p,
    .privacy-card ul {
        font-size: 0.88rem;
    }

    .privacy-container {
        gap: 1rem;
        padding: 0 0.75rem;
    }

    .privacy-content {
        padding: 30px 0 50px;
    }
}

/* Privacy — phone landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .privacy-hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
}

/* ── Shared: Big Stats (used by both Hosting Explained & SEO Explained) ── */
.big-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
}
.big-stat {
    text-align: center;
    flex: 1 1 160px;
}
.big-stat .stat-num {
    font-size: 3rem;
    font-weight: 900;
    color: #ff1493;
    display: block;
    line-height: 1;
}
.big-stat .stat-label {
    color: #aaa;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}
/* stat-source is only used in SEO Explained */
.big-stat .stat-source {
    color: #555;
    font-size: 0.7rem;
    margin-top: 0.35rem;
    display: block;
    font-style: italic;
}

/* ── Hosting Explained ── */
.host-intro-block {
    background: #0a0a0a;
    border-left: 4px solid #ff1493;
    border-radius: 0 16px 16px 0;
    padding: 2rem 2.5rem;
    margin: 2rem 0;
    color: #ddd;
    font-size: 1.05rem;
    line-height: 1.8;
}
.host-intro-block strong { color: #ff1493; }

.host-concept-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.host-concept-card {
    background: #0a0a0a;
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 40px 15px 40px 15px;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.host-concept-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 20, 147, 0.7);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.15);
}
.host-concept-card h3 {
    color: #ff1493;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.host-concept-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
}

.host-analogy-box {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin: 2.5rem auto;
    max-width: 860px;
    position: relative;
    text-align: center;
}
.host-analogy-box::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-size: 5rem;
    color: rgba(255, 20, 147, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}
.host-analogy-box p {
    color: #ccc;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}
.host-analogy-box .analogy-label {
    color: #ff1493;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-style: normal;
    text-align: center;
}

.service-intro > .container > p,
.features-section > .container > p,
.ideal-for-section > .container > p { color: #fff; text-align: center; }

.hosting-tier-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.hosting-tier {
    background: #0a0a0a;
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 40px 15px 40px 15px;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
}
.hosting-tier:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 20, 147, 0.7);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.15);
}
.hosting-tier .tier-badge {
    display: inline-block;
    background: rgba(255, 20, 147, 0.15);
    border: 1px solid rgba(255, 20, 147, 0.4);
    color: #ff69b4;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
    display: block;
    width: fit-content;
}
.hosting-tier h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.hosting-tier .tier-price {
    color: #ff1493;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hosting-tier p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.hosting-tier ul {
    list-style: none;
    padding: 0; margin: 0;
}
.hosting-tier ul li {
    color: #bbb;
    font-size: 1rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hosting-tier ul li:last-child { border: none; }
.hosting-tier ul li::before {
    content: '– ';
    color: #ff1493;
}

.site-size-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
.site-size-card {
    background: #0a0a0a;
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 40px 15px 40px 15px;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
}
.site-size-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 20, 147, 0.7);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.15);
}
.site-size-card .size-label {
    color: #ff1493;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}
.site-size-card h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.site-size-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.site-size-card .size-rec {
    color: #ff69b4;
    font-size: 1rem;
    font-weight: 600;
    border-top: 1px solid rgba(255,20,147,0.2);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

.speed-factor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
.speed-factor-card {
    background: #0a0a0a;
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 40px 15px 40px 15px;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
}
.speed-factor-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 20, 147, 0.7);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.15);
}
.speed-factor-card h3 {
    color: #ff1493;
    margin-bottom: 0.75rem;
}
.speed-factor-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
}

.term-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.term-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}
.term-card h4 {
    color: #ff1493;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.term-card p {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1024px) {
    .service-intro h2,
    .features-section h2,
    .ideal-for-section h2 { margin-bottom: 0.5rem !important; font-size: 1.75rem !important; }
    .service-intro p,
    .features-section p,
    .ideal-for-section p { margin-bottom: 0.6rem !important; }
    .service-intro,
    .features-section,
    .ideal-for-section { padding: 36px 0 !important; }
    .speed-factor-grid,
    .hosting-tier-grid,
    .host-concept-grid,
    .site-size-grid,
    .term-grid { margin-top: 0.75rem !important; gap: 1.25rem !important; }
    .big-stat-row { margin: 1.25rem 0 !important; }
}

@media (max-width: 768px) {
    .speed-factor-grid      { grid-template-columns: 1fr; margin-top: 0.5rem !important; gap: 0.75rem !important; }
    .hosting-tier-grid      { grid-template-columns: 1fr; margin-top: 0.5rem !important; gap: 0.75rem !important; }
    .host-concept-grid      { grid-template-columns: 1fr !important; margin-top: 0.5rem !important; gap: 0.75rem !important; }
    .site-size-grid         { grid-template-columns: 1fr; margin-top: 0.5rem !important; gap: 0.75rem !important; }
    .term-grid              { grid-template-columns: 1fr; margin-top: 0.5rem !important; gap: 0.75rem !important; }
    .service-intro h2,
    .features-section h2,
    .ideal-for-section h2 { margin-bottom: 0.4rem !important; font-size: 1.55rem !important; }
    .service-intro p,
    .features-section p,
    .ideal-for-section p { margin-bottom: 0.5rem !important; font-size: 1rem !important; text-align: center !important; line-height: 1.6 !important; }
    .service-intro,
    .features-section,
    .ideal-for-section { padding: 24px 0 !important; }
    .big-stat-row { margin: 1rem 0 !important; gap: 0.75rem !important; }
    .big-stat .stat-num { font-size: 2rem !important; }
}

/* ── SEO Explained ── */
.seo-intro-block {
    background: #0a0a0a;
    border-left: 4px solid #ff1493;
    border-radius: 0 16px 16px 0;
    padding: 2rem 2.5rem;
    margin: 2rem 0;
    color: #ddd;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: left;
}
.seo-intro-block strong { color: #ff1493; }

.service-intro > .container > p,
.features-section > .container > p,
.ideal-for-section > .container > p { color: #fff; text-align: center; padding-bottom: 15px; }

.seo-concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.seo-concept-card {
    background: #0a0a0a;
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 40px 15px 40px 15px;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.seo-concept-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: rgba(255, 20, 147, 0.05);
    border-radius: 50%;
    pointer-events: none;
}
.seo-concept-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 20, 147, 0.7);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.15);
}
.seo-concept-card h3 {
    color: #ff1493;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.seo-concept-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
}
.seo-concept-card,
.seo-concept-card h3,
.seo-concept-card p,
.review-llm-card,
.review-llm-card h3,
.review-llm-card p,
.timeline-explainer-item,
.timeline-explainer-item h4,
.timeline-explainer-item p,
.keyword-box,
.keyword-box h3,
.keyword-box ul li { text-align: left; }

.seo-analogy-box {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin: 2.5rem auto;
    max-width: 860px;
    position: relative;
    text-align: center;
}
.seo-analogy-box::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-size: 5rem;
    color: rgba(255, 20, 147, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}
.seo-analogy-box p {
    color: #ccc;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}
.seo-analogy-box .analogy-label {
    color: #ff1493;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-style: normal;
    text-align: center;
}

.timeline-explainer {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.timeline-explainer-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    align-items: start;
    background: #0a0a0a;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 20, 147, 0.15);
}
.timeline-explainer-item .tei-label {
    color: #ff1493;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    align-self: center;
}
.timeline-explainer-item h4 {
    color: #fff;
    margin: 0 0 0.4rem;
}
.timeline-explainer-item p {
    color: #bbb;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.keyword-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.keyword-box {
    border-radius: 20px;
    padding: 2rem;
}
.keyword-box.hard {
    background: #0a0a0a;
    border: 2px solid rgba(255, 80, 80, 0.3);
}
.keyword-box.easy {
    background: #0a0a0a;
    border: 2px solid rgba(20, 200, 100, 0.3);
}
.keyword-box h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.keyword-box.hard h3 { color: #ff6b6b; }
.keyword-box.easy h3 { color: #4ade80; }
.keyword-box ul {
    list-style: none;
    padding: 0; margin: 0;
}
.keyword-box ul li {
    color: #ccc;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.keyword-box ul li:last-child { border: none; }
.keyword-box ul li span {
    font-size: 0.8rem;
    opacity: 0.6;
    display: block;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.25rem;
}
.pill {
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.35);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    color: #ff69b4;
    font-size: 0.85rem;
}

.seo-section-divider {
    text-align: center;
    padding: 4rem 0 0;
    margin: 0;
}
.seo-section-divider .eyebrow {
    color: #ff1493;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.5rem;
}

.review-llm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}
@media (max-width: 700px) {
    .review-llm-grid { grid-template-columns: 1fr; }
}
.review-llm-card {
    background: #0a0a0a;
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 40px 15px 40px 15px;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
}
.review-llm-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 20, 147, 0.7);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.15);
}
.review-llm-card h3 {
    color: #ff1493;
    margin-bottom: 0.75rem;
}
.review-llm-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .seo-concept-grid { margin-top: 0.75rem !important; gap: 1.25rem !important; }
    .timeline-explainer { margin-top: 0.75rem !important; gap: 1rem !important; }
    .seo-analogy-box { margin: 1rem auto !important; }
    .review-llm-grid { margin-top: 0.75rem !important; gap: 1.25rem !important; }
    .big-stat-row { margin-top: 2.5rem !important; margin-bottom: 1.25rem !important; }
    .seo-concept-card, .seo-concept-card h3, .seo-concept-card p,
    .review-llm-card, .review-llm-card h3, .review-llm-card p,
    .timeline-explainer-item, .timeline-explainer-item h4, .timeline-explainer-item p,
    .keyword-box, .keyword-box h3, .keyword-box ul li { text-align: left !important; }
}

@media (max-width: 768px) {
    .keyword-split { grid-template-columns: 1fr; gap: 1rem; }
    .timeline-explainer-item { grid-template-columns: 1fr; }
    .timeline-explainer-item .tei-label { text-align: left; }
    .seo-concept-grid { grid-template-columns: 1fr !important; margin-top: 0.5rem !important; gap: 0.75rem !important; }
    .seo-concept-card, .seo-concept-card h3, .seo-concept-card p,
    .review-llm-card, .review-llm-card h3, .review-llm-card p,
    .timeline-explainer-item, .timeline-explainer-item h4, .timeline-explainer-item p,
    .keyword-box, .keyword-box h3, .keyword-box ul li { text-align: left !important; }
    .timeline-explainer { margin-top: 0.5rem !important; gap: 0.75rem !important; }
    .seo-analogy-box { margin: 0.75rem auto !important; padding: 1.25rem 1.5rem !important; }
    .seo-analogy-box::before { font-size: 3rem; }
    .review-llm-grid { margin-top: 0.5rem !important; gap: 0.75rem !important; }
    .big-stat-row { margin-top: 2rem !important; margin-bottom: 1rem !important; gap: 0.75rem !important; }
    .big-stat .stat-num { font-size: 2rem !important; }
}

