/*
Theme Name: Code Pixels Unlimited
Theme URI: https://codepixels.unlimited
Author: PC Digital Design
Author URI: https://pcdigitaldesign.com/
Description: Premium WordPress theme for web design agency
Version: 1.0.7
License: GPL v2 or later
Text Domain: codepixels

        /* --- CSS VARIABLES & RESET --- */
        :root {
            /* Brand Palette */
            --color-blue-primary: #1D97C9;
            --color-blue-light: #A9CFE4;
            --color-accent-deep: #BC5F00;
            --color-accent-orange: #FCA502;
            --color-accent-yellow: #FDC601;
            
            /* Neutrals */
            --color-bg: #F8FBFD;
            --color-text-dark: #0F172A;
            --color-text-light: #475569;
            --color-white: #FFFFFF;

            /* Spacing & Layout */
            --container-width: 1200px;
            --header-height: 88px;
            --border-radius: 12px;
            
            /* Animation */
            --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Space Grotesk', sans-serif;
            line-height: 1.1;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* --- UTILITIES --- */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding {
            padding: 100px 0;
        }

        /* --- SECTION CONTRAST --- */
        #about {
            background: #1E293B;
        }
        #about h2, #about .section-title, #about p,
        #about .about-main-text h2, #about .about-body p,
        #about .feature-title, #about .feature-desc {
            color: #ffffff !important;
        }
        #about .text-gradient {
            background: linear-gradient(135deg, #7DD3FC, #38BDF8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        #about .feature-icon-wrap {
            background: rgba(255,255,255,0.1) !important;
        }
        #benefits {
            background: linear-gradient(180deg, #F0F9FF 0%, #E6F4FA 100%);
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: var(--transition-smooth);
            cursor: pointer;
            border: none;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep)); /* Peacock gradient */
            color: var(--color-white);
            box-shadow: 0 10px 20px -5px rgba(29, 151, 201, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px -5px rgba(29, 151, 201, 0.6);
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(135deg, var(--color-accent-orange), var(--color-accent-yellow));
            opacity: 0;
            transition: var(--transition-smooth);
            z-index: 1;
        }
        
        .btn-primary span {
            position: relative;
            z-index: 2;
        }

        .btn-primary:hover::after {
            opacity: 0; /* Gradient shift handled by base transform */
            background: var(--color-accent-deep);
        }

        .btn-outline {
            border: 2px solid var(--color-blue-primary);
            color: var(--color-blue-primary);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--color-blue-primary);
            color: white;
        }

        /* --- NAVIGATION --- */
        .navbar {
            height: var(--header-height);
            display: flex;
            align-items: center;
            position: relative;
            top: auto;
            left: auto;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(169, 207, 228, 0.3);
            transition: var(--transition-smooth);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        
        /* Make header content full-width (client request) */
        .navbar .container {
            max-width: 100%;
            padding-left: 40px;
            padding-right: 40px;
        }
        @media (max-width: 768px) {
            .navbar .container {
                padding-left: 20px;
                padding-right: 20px;
            }
        }

.logo-wrapper {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex: 0 0 auto;
        }

        .custom-logo-link img,
        .header-logo {
            height: 62px;
            width: auto;
            display: block;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--color-text-dark);
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--color-blue-primary);
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 2px;
            border-radius: 4px;
        }

        .logo-icon div {
            background: white;
            opacity: 0.8;
        }
        .logo-icon div:nth-child(2) { background: var(--color-accent-yellow); }
        .logo-icon div:nth-child(3) { background: var(--color-accent-orange); }

        .nav-menu {
            display: flex;
            gap: 48px;
            align-items: center;
            justify-content: center;
            flex: 1 1 auto;
        }

        .nav-link {
            font-size: 1.05rem;
            font-weight: 600;
            position: relative;
            color: var(--color-text-light);
        }

        .header-contact-btn {
            flex: 0 0 auto;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--color-accent-orange);
            transition: var(--transition-smooth);
        }

        .nav-link:hover {
            color: var(--color-blue-primary);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* --- NAV DROPDOWN / SUBMENU (desktop) --- */
        .nav-menu > li {
            position: relative;
        }
        .nav-menu .menu-item-has-children > a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .nav-menu .menu-item-has-children > a::after {
            content: '';
            display: inline-block;
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 5px solid currentColor;
            position: static;
            bottom: auto;
            left: auto;
            background: transparent;
            transform-origin: center 40%;
            transition: transform 0.25s ease;
        }
        .nav-menu .menu-item-has-children:hover > a::after,
        .nav-menu .menu-item-has-children:focus-within > a::after {
            transform: rotate(180deg);
        }
        .nav-menu .menu-item-has-children:hover > a::after {
            width: 0;
            background: transparent;
        }
        .nav-menu .sub-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translate(-50%, 8px);
            min-width: 260px;
            margin: 0;
            padding: 10px 0;
            list-style: none;
            background: #ffffff;
            border: 1px solid rgba(169, 207, 228, 0.4);
            border-radius: 14px;
            box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
            z-index: 1100;
        }
        .nav-menu .sub-menu::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 0;
            width: 100%;
            height: 12px;
        }
        .nav-menu .menu-item-has-children:hover > .sub-menu,
        .nav-menu .menu-item-has-children:focus-within > .sub-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translate(-50%, 0);
        }
        .nav-menu .sub-menu li {
            display: block;
            width: 100%;
        }
        .nav-menu .sub-menu li a {
            display: block;
            padding: 10px 20px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--color-text-light);
            white-space: nowrap;
            transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
        }
        .nav-menu .sub-menu li a,
        .nav-menu .sub-menu li a::after,
        .nav-menu .sub-menu li a:hover::after,
        .nav-menu .sub-menu li a:focus::after {
            border: none;
            text-decoration: none;
        }
        .nav-menu .sub-menu li a::after,
        .nav-menu .sub-menu li a:hover::after,
        .nav-menu .sub-menu li a:focus::after {
            content: none;
            display: none;
            width: 0;
            height: 0;
            background: transparent;
        }
        .nav-menu .sub-menu li a:hover {
            color: var(--color-blue-primary);
            background: rgba(29, 151, 201, 0.06);
            padding-left: 26px;
        }
        .nav-menu .sub-menu .current-menu-item > a,
        .nav-menu .sub-menu .current_page_item > a {
            color: var(--color-blue-primary);
        }

        /* --- HERO SECTION --- */
        #hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        #canvas-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-content {
            position: relative;
            max-width: 700px;
            z-index: 10;
        }

        .hero-tag {
            display: inline-block;
            background: var(--color-blue-light);
            color: var(--color-blue-primary);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-title {
            font-size: 4rem;
            margin-bottom: 24px;
            color: var(--color-text-dark);
        }

        .hero-desc {
            font-size: 1.25rem;
            color: var(--color-text-light);
            margin-bottom: 40px;
            max-width: 550px;
        }

        /* --- ABOUT / VALUE PROP --- */
        .value-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .value-text h2 {
            font-size: 2.5rem;
            margin-bottom: 24px;
        }

        .value-card {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            position: relative;
            border: 1px solid rgba(169, 207, 228, 0.4);
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: -2px; left: -2px; right: -2px; bottom: -2px;
            background: linear-gradient(45deg, var(--color-blue-primary), var(--color-accent-orange));
            z-index: -1;
            border-radius: 26px;
            opacity: 0.5;
            filter: blur(10px);
        }

        /* --- SERVICE SECTION --- */
        #service {
            background: linear-gradient(180deg, #E6F4FA 0%, #F0F9FF 100%);
            text-align: center;
        }

        .service-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 30px 60px -10px rgba(29, 151, 201, 0.15);
            margin-top: 50px;
            transition: var(--transition-smooth);
            display: grid;
            grid-template-columns: 1.5fr 1fr;
        }

        .service-info {
            padding: 60px;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-visual {
            background: var(--color-blue-primary);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-btn-wrap {
            margin-top: 40px;
            text-align: center;
        }

        /* Glowing Owner Message Box (replaces pixel squares) */
/* ── Modern Glowing Owner Message Box ── */
.glow-owner-box {
    width: min(520px, 90%);
    padding: 34px 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 20px 48px rgba(13, 27, 42, 0.10);
    position: relative;
    text-align: center;
    z-index: 1;
    overflow: visible;
    animation: ownerFloat 6s ease-in-out infinite;
}

/* Aurora glow layer behind the card */
.glow-owner-box::before {
    content: '';
    position: absolute;
    inset: -36px;
    border-radius: 34px;
    z-index: -1;
    background: conic-gradient(
        from var(--aurora-angle, 0deg) at 50% 50%,
        rgba(56,  189, 248, 0.60)   0deg,
        rgba(99,  102, 241, 0.55)  72deg,
        rgba(249, 115,  22, 0.50) 144deg,
        rgba(56,  189, 248, 0.55) 216deg,
        rgba(99,  102, 241, 0.50) 288deg,
        rgba(56,  189, 248, 0.60) 360deg
    );
    filter: blur(28px);
    animation: auroraRotate 8s linear infinite, auroraBreath 4s ease-in-out infinite;
}

/* Animated gradient border ring */
.glow-owner-box::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    z-index: -1;
    background: linear-gradient(
        135deg,
        rgba(56,  189, 248, 0.90),
        rgba(99,  102, 241, 0.75),
        rgba(249, 115,  22, 0.80),
        rgba(56,  189, 248, 0.90)
    );
    background-size: 300% 300%;
    animation: borderShift 5s ease infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}

@keyframes ownerFloat {
    0%   { transform: translateY(0px);  box-shadow: 0 20px 48px rgba(13,27,42,0.10); }
    50%  { transform: translateY(-7px); box-shadow: 0 30px 60px rgba(13,27,42,0.16); }
    100% { transform: translateY(0px);  box-shadow: 0 20px 48px rgba(13,27,42,0.10); }
}

@keyframes auroraRotate {
    from { transform: rotate(0deg);   }
    to   { transform: rotate(360deg); }
}

@keyframes auroraBreath {
    0%   { opacity: 0.15; filter: blur(24px); }
    30%  { opacity: 0.75; filter: blur(28px); }
    60%  { opacity: 0.90; filter: blur(32px); }
    100% { opacity: 0.15; filter: blur(24px); }
}

@keyframes borderShift {
    0%   { background-position:   0% 50%; opacity: 0.55; }
    50%  { background-position: 100% 50%; opacity: 0.90; }
    100% { background-position:   0% 50%; opacity: 0.55; }
}

@keyframes glowPulse {
    0%   { opacity: 0.40; }
    50%  { opacity: 0.95; }
    100% { opacity: 0.50; }
}

.glow-owner-title {
            margin: 0 0 14px;
            text-align: center;
            font-weight: 900;
            font-size: 1.35rem;
            color: var(--color-navy);
        }

        .glow-owner-body {
            color: rgba(13, 27, 42, 0.78);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .glow-owner-body p {
            margin: 0 0 12px;
        }

        .glow-owner-body strong {
            color: var(--color-navy);
        }

        .glow-owner-signature {
            margin-top: 14px;
            font-weight: 800;
            color: var(--color-navy);
        }

        /* Abstract Pixel Art in CSS */
        .pixel-art {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            transform: rotate(-15deg) scale(1.2);
        }
        .px {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 4px;
            animation: pulse 3s infinite alternate;
        }
        .px:nth-child(2n) { background: var(--color-accent-yellow); opacity: 0.8; }
        .px:nth-child(3n) { background: var(--color-accent-orange); opacity: 0.8; }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.1); opacity: 1; }
        }

        .feature-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.1rem;
            color: var(--color-text-light);
        }

        /* --- SERVICES PORTRAIT CARDS --- */
        .service-portrait-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-top: 10px;
        }

        .service-portrait-card {
            border-radius: 16px;
            padding: 18px 18px 16px;
            border: 1px solid rgba(169, 207, 228, 0.35);
            background: rgba(248, 251, 253, 0.7);
            position: relative;
            overflow: hidden;
            transition: var(--transition-smooth);
        }

        .service-portrait-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 35px rgba(0,0,0,0.06);
            border-color: rgba(29, 151, 201, 0.35);
        }

        .service-portrait-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 6px;
            height: 100%;
            background: var(--color-blue-primary);
        }

        .service-portrait-card.accent-yellow::before { background: var(--color-accent-yellow); }
        .service-portrait-card.accent-orange::before { background: var(--color-accent-orange); }

        .service-portrait-title {
            font-weight: 800;
            font-size: 1.05rem;
            margin-bottom: 8px;
            color: var(--color-text-dark);
        }

        .service-portrait-desc {
            color: var(--color-text-light);
            font-size: 0.95rem;
            line-height: 1.55;
        }

        .service-note {
            margin-top: 18px;
            padding: 14px 16px;
            border-radius: 14px;
            background: rgba(169, 207, 228, 0.18);
            border: 1px solid rgba(169, 207, 228, 0.35);
            color: var(--color-text-light);
            font-size: 0.95rem;
        }

        .check-icon {
            color: var(--color-accent-deep);
            font-weight: bold;
        }

        /* --- WHY US --- */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .why-card {
            padding: 30px;
            background: white;
            border-radius: 16px;
            border: 1px solid #eee;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .why-card:hover {
            transform: translateY(-10px);
            border-color: var(--color-blue-light);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .icon-box {
            position: absolute;
            right: 18px;
            top: 18px;
            width: auto;
            height: auto;
            background: transparent;
            color: var(--color-blue-primary);
            display: block;
            border-radius: 0;
            font-size: 6rem;
            line-height: 1;
            opacity: 0.08;
            pointer-events: none;
        }

        .why-card h3 {
            text-align: center;
        }

        /* --- OWNER MESSAGE --- */
        .owner-message-wrap {
            background: white;
            border: 1px solid rgba(169, 207, 228, 0.35);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.04);
        }

        
        /* Owner message layout tweaks (client request) */
        #owner-message .container {
            max-width: 1400px;
        }
        .owner-message-wrap {
            width: 100%;
        }
        .owner-message-body {
            margin-top: 18px;
        }

.owner-message-title {
            text-align: center;
            color: var(--color-blue-primary);
            margin-bottom: 18px;
            font-size: 2.2rem;
        }

        .owner-message-body p {
            color: var(--color-text-light);
            font-size: 1.05rem;
            margin-bottom: 16px;
            line-height: 1.7;
            text-align: left;
        }

        .owner-signature {
            margin-top: 10px;
            font-weight: 800;
            color: var(--color-text-dark);
        }

        /* --- PROCESS DROPDOWN BOXES --- */
        .process-accordion {
            max-width: 920px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 18px;
            text-align: left;
        }

        .process-accordion details {
            background: white;
            border-radius: 18px;
            border: 1px solid rgba(169, 207, 228, 0.35);
            box-shadow: 0 18px 40px rgba(0,0,0,0.04);
            overflow: hidden;
        }

        .process-accordion summary {
            list-style: none;
            cursor: pointer;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            gap: 14px;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--color-blue-primary);
        }

        .process-accordion summary::-webkit-details-marker {
            display: none;
        }

        .process-accordion summary::after {
            content: '+';
            margin-left: auto;
            font-size: 1.4rem;
            color: var(--color-accent-orange);
        }

        .process-accordion details[open] summary::after {
            content: '–';
        }

        .process-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 2px solid var(--color-blue-primary);
            color: var(--color-blue-primary);
            font-weight: 900;
            flex: 0 0 auto;
        }

        .process-accordion-body {
            padding: 0 22px 18px;
            color: var(--color-text-light);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        

        /* --- SMOOTH ACCORDION TRANSITIONS --- */
        .features-accordion-body,
        .process-accordion-body{
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transition: max-height 360ms ease, opacity 260ms ease, padding 360ms ease;
        }
        details[open] > .features-accordion-body,
        details[open] > .process-accordion-body{
            opacity: 1;
        }
    /* --- CONTACT --- */
        #contact {
            text-align: center;
            background-color: #0F172A; /* Dark contrast */
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        #contact h2 { color: white; }
        #contact p { color: #94A3B8; }

        .cta-box {
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- ANIMATION UTILS --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 968px) {
            .hero-title { font-size: 3rem; }
            .value-grid { grid-template-columns: 1fr; }
            .service-card { grid-template-columns: 1fr; }
            /*
             * Mobile: the owner message box is taller than 200px.
             * A fixed height clips the content and the glow (seen in screenshots).
             */
            .service-info { padding: 40px 26px; }
            .service-visual {
                height: auto;
                min-height: 360px;
                padding: 44px 0 54px;
            }
            
            .nav-menu {
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 40px;
                border-bottom: 1px solid #eee;
                transform: translateY(-150%);
                transition: var(--transition-smooth);
                z-index: 900;
            }
            
            .nav-menu.open { transform: translateY(0); }
            .mobile-toggle { display: block; }
        }

        @media (max-width: 480px) {
            .hero-title { font-size: 2.2rem; }
            .btn { width: 100%; text-align: center; }
            .glow-owner-box { animation: none; }
        }

 /* --- CUSTOM LOGO STYLES --- */
.custom-logo {
    height: 80px;
    width: auto;
    max-height: 80px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-wrapper .custom-logo-link {
    display: flex;
    align-items: center;
}

/* --- MENU STYLES FOR WORDPRESS MENU --- */
.nav-menu li {
    list-style: none;
}

.nav-menu li.menu-button {
    margin-left: 10px;
}

.nav-menu li.menu-button a.btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Footer Menu */
.footer-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-menu li {
    list-style: none;
}

.footer-menu a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-menu a:hover {
    color: var(--color-blue-primary);
}

/* Social Links */
.social-links a {
    color: var(--color-blue-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.social-links a:hover {
    color: var(--color-accent-orange);
    transform: translateY(-2px);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 40px;
        border-bottom: 1px solid #eee;
        transform: translateY(-150%);
        transition: var(--transition-smooth);
        z-index: 900;
        gap: 20px;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li.menu-button {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .nav-menu.open { transform: translateY(0); }
    
    .custom-logo {
        height: 35px;
    }
}       

/* --- HEADER CONTACT BUTTON (SEPARATE) --- */
.header-contact-btn {
    margin-left: 20px;
}

.header-contact-btn .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Mobile: Hide contact button in menu */
@media (max-width: 968px) {
    .nav-container {
        position: relative;
    }
    
    .header-contact-btn {
        display: none; /* Hide separate button on mobile */
    }
    
    /* Add contact button inside mobile menu */
    .nav-menu::after {
        content: '';
        display: block;
        text-align: center;
        margin-top: 20px;
    }
    
    .nav-menu::after {
        content: 'Contact Us';
        display: block;
        background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
        color: white;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        margin: 20px auto;
        width: fit-content;
        cursor: pointer;
    }
}

/* --- LOGO SIZE CONTROL --- */

/* Header Uploaded Logo */
.header-logo, .custom-logo {
    height: 40px; /* Default header logo size */
    width: auto;
    max-height: 40px;
    transition: var(--transition-smooth);
}

/* Header Default Logo (Text + Icon) */
.logo {
    font-size: 1.5rem; /* Default header text size */
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.logo-icon {
    width: 32px; /* Default header icon size */
    height: 32px;
    transition: var(--transition-smooth);
}

/* FOOTER LOGO STYLES */
.footer-logo-wrapper {
    text-align: center;
}

/* Footer Uploaded Logo */
.footer-custom-logo {
    height: 50px; /* Default footer logo size - LARGER than header */
    width: auto;
    max-height: 50px;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
}

/* Footer Default Logo */
.footer-logo {
    font-size: 2.1rem; /* Default footer text size - LARGER than header */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-logo-icon {
    width: 40px; /* Default footer icon size - LARGER than header */
    height: 40px;
    background: var(--color-blue-primary);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    border-radius: 4px;
}

.footer-logo-icon div {
    background: white;
    opacity: 0.8;
}
.footer-logo-icon div:nth-child(2) { background: var(--color-accent-yellow); }
.footer-logo-icon div:nth-child(3) { background: var(--color-accent-orange); }

/* --- LOGO SIZE CONTROL CLASSES --- */

/* SMALL LOGOS */
.header-logo.small-logo,
.custom-logo.small-logo {
    height: 30px;
    max-height: 30px;
}

.logo.small-logo {
    font-size: 1.2rem;
}
.logo.small-logo .logo-icon {
    width: 24px;
    height: 24px;
}

.footer-custom-logo.small-logo {
    height: 35px;
    max-height: 35px;
}

.footer-logo.small-logo {
    font-size: 1.4rem;
}
.footer-logo.small-logo .footer-logo-icon {
    width: 30px;
    height: 30px;
}

/* MEDIUM LOGOS (Default) */
.header-logo.medium-logo,
.custom-logo.medium-logo {
    height: 40px;
    max-height: 40px;
}

.logo.medium-logo {
    font-size: 1.5rem;
}
.logo.medium-logo .logo-icon {
    width: 32px;
    height: 32px;
}

.footer-custom-logo.medium-logo {
    height: 50px;
    max-height: 50px;
}

.footer-logo.medium-logo {
    font-size: 1.8rem;
}
.footer-logo.medium-logo .footer-logo-icon {
    width: 40px;
    height: 40px;
}

/* LARGE LOGOS */
.header-logo.large-logo,
.custom-logo.large-logo {
    height: 50px;
    max-height: 50px;
}

.logo.large-logo {
    font-size: 1.8rem;
}
.logo.large-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-custom-logo.large-logo {
    height: 60px;
    max-height: 60px;
}

.footer-logo.large-logo {
    font-size: 2.2rem;
}
.footer-logo.large-logo .footer-logo-icon {
    width: 50px;
    height: 50px;
}

/* EXTRA LARGE LOGOS */
.header-logo.xlarge-logo,
.custom-logo.xlarge-logo {
    height: 60px;
    max-height: 60px;
}

.logo.xlarge-logo {
    font-size: 2.2rem;
}
.logo.xlarge-logo .logo-icon {
    width: 48px;
    height: 48px;
}

.footer-custom-logo.xlarge-logo {
    height: 70px;
    max-height: 70px;
}

.footer-logo.xlarge-logo {
    font-size: 2.5rem;
}
.footer-logo.xlarge-logo .footer-logo-icon {
    width: 60px;
    height: 60px;
}

/* Logo wrapper for alignment */
.logo-wrapper, .footer-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-wrapper {
    flex-direction: column;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-logo, .custom-logo {
        height: 35px;
        max-height: 35px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .footer-custom-logo {
        height: 45px;
        max-height: 45px;
    }
    
    .footer-logo {
        font-size: 1.6rem;
    }
    
    .footer-logo-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .header-logo, .custom-logo {
        height: 30px;
        max-height: 30px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .footer-custom-logo {
        height: 40px;
        max-height: 40px;
    }
    
    .footer-logo {
        font-size: 1.4rem;
    }
    
    .footer-logo-icon {
        width: 30px;
        height: 30px;
    }
}

/* --- NEW STYLES FOR UPDATED CONTENT --- */

/* Standout List in About Card */
.standout-list {
    list-style: none;
    padding-left: 0;
}

.standout-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(169, 207, 228, 0.3);
}

.standout-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.standout-list strong {
    color: var(--color-text-dark);
    display: block;
    margin-bottom: 5px;
}

/* Benefits Section */
#benefits {
    background: white;
}

/* Process Timeline */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-blue-primary), var(--color-accent-orange));
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--color-blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-blue-primary);
    z-index: 2;
    flex-shrink: 0;
    margin-right: 30px;
}

.process-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(169, 207, 228, 0.3);
}

.process-content h3 {
    color: var(--color-blue-primary);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.process-content p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form-wrapper .wpcf7-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-wrapper .wpcf7-form p {
    margin: 0;
}

.contact-form-wrapper .wpcf7-form p:nth-child(3),
.contact-form-wrapper .wpcf7-form p:nth-child(4) {
    grid-column: span 2;
}

.contact-form-wrapper .wpcf7-form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-form-wrapper .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--color-accent-orange);
    background: rgba(255,255,255,0.15);
}

.contact-form-wrapper .wpcf7-form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.contact-form-wrapper textarea.wpcf7-form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrapper .wpcf7-submit {
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    justify-self: center;
    grid-column: span 2;
    width: fit-content;
}

.contact-form-wrapper .wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contact-form-wrapper .wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 15px !important;
    border-radius: 8px;
    grid-column: span 2;
    text-align: center;
}

.contact-form-wrapper .wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Responsive Process Timeline */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 25px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 20px;
    }
    
    .process-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-number {
        margin: 0 auto 15px;
    }
    
    .contact-form-wrapper .wpcf7-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-wrapper .wpcf7-form p:nth-child(3),
    .contact-form-wrapper .wpcf7-form p:nth-child(4) {
        grid-column: span 1;
    }
    
    .contact-form-wrapper .wpcf7-submit {
        grid-column: span 1;
        width: 100%;
    }
    
    .standout-list li {
        font-size: 0.95rem;
    }
}

/* Feature List Updates */
.feature-list li span.check-icon {
    min-width: 24px;
}

.feature-list li strong {
    color: var(--color-text-dark);
}

/* --- CUSTOM CONTACT FORM STYLES --- */
.custom-contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    backdrop-filter: blur(10px);
}

.custom-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.custom-contact-form .form-group {
    margin-bottom: 25px;
}

.custom-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #E2E8F0;
}

.custom-contact-form .form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

/* Ensure select dropdown options are visible */
.custom-contact-form select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-contact-form select.form-control option {
    background: #0F172A;
    color: #FFFFFF;
}

.custom-contact-form .form-control:focus {
    outline: none;
    border-color: var(--color-blue-primary);
    background: rgba(255, 255, 255, 0.08);
}

/* Options Containers (Radio/Check) */
.budget-options, .timeline-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.radio-label, .check-label {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-label:hover, .check-label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-blue-primary);
}

.radio-label input, .check-label input {
    accent-color: var(--color-blue-primary);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn-primary {
    padding: 16px 45px;
    font-size: 1.1rem;
}

/* Responsive Form */
@media (max-width: 768px) {
    .custom-contact-form {
        padding: 25px;
    }
    .custom-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .budget-options, .timeline-options {
        flex-direction: column;
    }
    .radio-label {
        width: 100%;
    }
}

/* --- BALANCED ABOUT SECTION STYLES --- */
.about-flex-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-main-text {
    flex: 1;
}

.about-main-text h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-body p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.about-features-column {
    flex: 1.2; /* Give the grid slightly more room */
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    border: 1px solid rgba(169, 207, 228, 0.3);
}

.features-grid-title {
    font-size: 1.5rem;
    color: var(--color-blue-primary);
    margin-bottom: 30px;
}

.features-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


        /* Smooth accordion open/close animation */
        .features-accordion details,
        .process-accordion details {
            overflow: hidden;
        }

        .features-accordion summary,
        .process-accordion summary {
            cursor: pointer;
        }

        /* Remove default disclosure markers */
        .features-accordion summary::-webkit-details-marker,
        .process-accordion summary::-webkit-details-marker { display: none; }
        .features-accordion summary::marker,
        .process-accordion summary::marker { content: ""; }

        .features-accordion-body,
        .process-accordion-body {
            max-height: 0;
            opacity: 0;
            transform: translateY(-6px);
            transition: max-height 320ms ease, opacity 260ms ease, transform 260ms ease;
            will-change: max-height, opacity, transform;
        }

        .features-accordion details[open] .features-accordion-body,
        .process-accordion details[open] .process-accordion-body {
            max-height: 260px; /* enough for 1–2 lines */
            opacity: 1;
            transform: translateY(0);
        }

.features-accordion details {
    border: 1px solid rgba(169, 207, 228, 0.35);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(248, 251, 253, 0.7);
}

.features-accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 700;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.features-accordion summary::-webkit-details-marker {
    display: none;
}

/* Ensure default disclosure markers are hidden consistently (Chrome/Firefox) */
.features-accordion summary::marker,
.process-accordion summary::marker {
    content: "";
}
.features-accordion summary,
.process-accordion summary {
    list-style: none;
}

.features-accordion summary::after {
    content: '+';
    font-weight: 800;
    color: var(--color-blue-primary);
    font-size: 1.2rem;
}

.features-accordion details[open] summary::after {
    content: '–';
}

.features-accordion-body {
    padding: 0 18px 16px;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .about-flex-container {
        flex-direction: column;
        gap: 40px;
    }
    .about-main-text, .about-features-column {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .service-portrait-grid {
        grid-template-columns: 1fr;
    }

    .owner-message-wrap {
        padding: 28px;
    }

    .owner-message-title {
        font-size: 1.8rem;
    }

    .process-accordion summary {
        font-size: 1.1rem;
    }

    .about-main-text h2 {
        font-size: 2.2rem;
    }
}

/* ============================================================
   ABOUT PAGE STYLES (desktop only)
   ============================================================ */

/* Shared eyebrow + section title */
.about-eyebrow {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-blue-primary);
    background: rgba(29, 151, 201, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.about-eyebrow--light {
    color: #7DD3FC;
    background: rgba(125, 211, 252, 0.12);
}

.about-section-title {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--color-text-dark);
}

.about-head-center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px;
}
.about-head-center .about-section-title {
    margin-bottom: 18px;
}
.about-head-lead {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ---------- PAGE HERO ---------- */
.about-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 60vh;
    padding: 120px 0 100px;
    background:
        radial-gradient(1100px 500px at 90% -10%, rgba(29, 151, 201, 0.18) 0%, transparent 60%),
        radial-gradient(900px 500px at -10% 110%, rgba(252, 165, 2, 0.16) 0%, transparent 65%),
        linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
    overflow: hidden;
}
.about-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.about-hero-content {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.about-hero-content .hero-desc {
    margin-left: auto;
    margin-right: auto;
}
.about-hero-content .hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
}
.about-hero-content .hero-desc {
    max-width: 100%;
}
.about-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.about-hero-orb--one {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--color-blue-light), transparent 70%);
    top: 40px;
    right: 40px;
}
.about-hero-orb--two {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(252, 165, 2, 0.45), transparent 70%);
    bottom: 40px;
    right: 220px;
}

/* ---------- WHO WE ARE ---------- */
#about-who {
    background: var(--color-white);
}
.about-who-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 70px;
    align-items: start;
}
.about-who-text p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 18px;
}
.about-quote {
    margin-top: 30px;
    padding: 26px 28px;
    border-left: 4px solid var(--color-accent-orange);
    background: linear-gradient(135deg, rgba(29, 151, 201, 0.06), rgba(252, 165, 2, 0.06));
    border-radius: 0 16px 16px 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    font-style: italic;
}
.about-quote cite {
    display: block;
    margin-top: 14px;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 700;
    color: var(--color-blue-primary);
    letter-spacing: 0.04em;
}

/* Stats card */
.about-stats-card {
    background: linear-gradient(160deg, #ffffff 0%, #F0F9FF 100%);
    border: 1px solid rgba(169, 207, 228, 0.4);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 30px 60px -20px rgba(29, 151, 201, 0.25);
    position: sticky;
    top: 110px;
}
.about-stats-title {
    font-size: 1.4rem;
    color: var(--color-blue-primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(169, 207, 228, 0.5);
}
.about-stats-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.about-stats-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-stat-plus {
    font-size: 2rem;
    margin-left: 2px;
}
.about-stat-label {
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

/* ---------- OUR PASSION ---------- */
#about-passion {
    background: linear-gradient(180deg, #F0F9FF 0%, #E6F4FA 100%);
}
.about-passion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.about-pillar-card {
    background: var(--color-white);
    padding: 38px 32px;
    border-radius: 22px;
    border: 1px solid rgba(169, 207, 228, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.about-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--color-blue-primary);
}
.about-pillar-card--orange::before { background: var(--color-accent-orange); }
.about-pillar-card--yellow::before { background: var(--color-accent-yellow); }
.about-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(29, 151, 201, 0.15);
    border-color: rgba(29, 151, 201, 0.35);
}
.about-pillar-icon {
    font-size: 2.2rem;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(29, 151, 201, 0.12), rgba(252, 165, 2, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.about-pillar-card h3 {
    font-size: 1.4rem;
    color: var(--color-blue-primary);
    margin-bottom: 14px;
}
.about-pillar-card p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ---------- OUR CULTURE (dark) ---------- */
#about-culture {
    background: #1E293B;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
#about-culture::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 65%);
}
.about-culture-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.about-culture-intro .about-section-title {
    color: var(--color-white);
}
#about-culture .text-gradient {
    background: linear-gradient(135deg, #7DD3FC, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-culture-intro p {
    color: #CBD5E1;
    font-size: 1.05rem;
    line-height: 1.75;
}
.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-pillar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 26px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
}
.about-pillar:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(125, 211, 252, 0.35);
    transform: translateY(-4px);
}
.about-pillar-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7DD3FC, var(--color-accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}
.about-pillar h4 {
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 6px;
}
.about-pillar p {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- GROWTH JOURNEY ---------- */
#about-journey {
    background: var(--color-bg);
}
.about-journey-subtitle {
    text-align: center;
    font-size: 1.6rem;
    color: var(--color-blue-primary);
    margin: 0 auto 40px;
    max-width: 920px;
}

.about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.about-process-card {
    background: var(--color-white);
    border: 1px solid rgba(169, 207, 228, 0.35);
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.about-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue-primary), var(--color-accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.about-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(29, 151, 201, 0.18);
    border-color: rgba(29, 151, 201, 0.4);
}

.about-process-card:hover::before {
    transform: scaleX(1);
}

.about-process-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
    display: inline-block;
}

.about-process-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.about-process-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* ---------- CTA ---------- */
#about-cta {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cta-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.about-cta-bg-circle--one {
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border: 20px solid rgba(255, 255, 255, 0.05);
}
.about-cta-bg-circle--two {
    bottom: -120px;
    left: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, var(--color-blue-primary) 0%, transparent 70%);
    opacity: 0.18;
}
.about-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}
.about-cta-inner h2 {
    font-size: 2.8rem;
    color: var(--color-white);
    margin-bottom: 18px;
    line-height: 1.15;
}
#about-cta .text-gradient {
    background: linear-gradient(135deg, #7DD3FC, #FCA502);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-cta-inner p {
    color: #94A3B8;
    font-size: 1.15rem;
    margin-bottom: 36px;
}

/* ============================================================
   SERVICES PAGE STYLES (desktop only)
   ============================================================ */

/* Shared eyebrow + section title */
.services-eyebrow {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-blue-primary);
    background: rgba(29, 151, 201, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.services-eyebrow--light {
    color: #7DD3FC;
    background: rgba(125, 211, 252, 0.12);
}

.services-section-title {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--color-text-dark);
}

.services-head-center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px;
}
.services-head-lead {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ---------- PAGE HERO ---------- */
.services-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 60vh;
    padding: 120px 0 100px;
    background:
        radial-gradient(1100px 500px at 10% -10%, rgba(29, 151, 201, 0.18) 0%, transparent 60%),
        radial-gradient(900px 500px at 110% 110%, rgba(252, 165, 2, 0.16) 0%, transparent 65%),
        linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
    overflow: hidden;
}
.services-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.services-hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}
.services-hero-content .hero-tag,
.services-hero-content .hero-title {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.services-hero-content .hero-desc {
    max-width: 70%;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.services-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.services-hero-orb--one {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--color-blue-light), transparent 70%);
    top: 60px;
    left: 60px;
}
.services-hero-orb--two {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(252, 165, 2, 0.45), transparent 70%);
    bottom: 60px;
    right: 60px;
}

/* ---------- SERVICES GRID ---------- */
#services-list {
    background: var(--color-white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}
.services-card {
    background: var(--color-white);
    border: 1px solid rgba(169, 207, 228, 0.4);
    border-radius: 22px;
    padding: 38px 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}
.services-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--color-blue-primary);
}
.services-card--orange::before { background: var(--color-accent-orange); }
.services-card--yellow::before { background: var(--color-accent-yellow); }

.services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(29, 151, 201, 0.18);
    border-color: rgba(29, 151, 201, 0.4);
}
.services-card-num {
    position: absolute;
    top: 22px;
    right: 26px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.18);
    letter-spacing: 0.1em;
}
.services-card-icon {
    font-size: 2rem;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(29, 151, 201, 0.12), rgba(252, 165, 2, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.services-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    color: var(--color-blue-primary);
    margin-bottom: 14px;
    line-height: 1.25;
}
.services-card p {
    color: var(--color-text-light);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 22px;
}
.services-card-tags {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.services-card-tags li {
    background: rgba(29, 151, 201, 0.08);
    color: var(--color-blue-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    border-radius: 50px;
}
.services-card-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-accent-deep);
    transition: var(--transition-smooth);
    align-self: flex-start;
}
.services-card-cta span {
    transition: var(--transition-smooth);
}
.services-card-cta:hover {
    color: var(--color-blue-primary);
}
.services-card-cta:hover span {
    transform: translateX(4px);
}

/* ---------- WHY CHOOSE US (dark) ---------- */
#services-why {
    background: #1E293B;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
#services-why::before {
    content: '';
    position: absolute;
    top: -180px;
    left: -150px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 65%);
    pointer-events: none;
}
#services-why::after {
    content: '';
    position: absolute;
    bottom: -180px;
    right: -150px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 165, 2, 0.18) 0%, transparent 65%);
    pointer-events: none;
}
#services-why .services-section-title {
    color: var(--color-white);
}
#services-why .text-gradient {
    background: linear-gradient(135deg, #7DD3FC, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.services-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.services-why-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 28px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    position: relative;
}
.services-why-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(125, 211, 252, 0.4);
    transform: translateY(-6px);
}
.services-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.18), rgba(252, 165, 2, 0.18));
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.services-why-item h4 {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 10px;
}
.services-why-item p {
    color: #94A3B8;
    font-size: 0.98rem;
    line-height: 1.65;
}
.services-why-cta {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
#services-why .btn-outline {
    border-color: #7DD3FC;
    color: #7DD3FC;
}
#services-why .btn-outline:hover {
    background: #7DD3FC;
    color: var(--color-text-dark);
}

/* ============================================================
   PACKAGES PAGE STYLES (desktop only)
   ============================================================ */

/* Shared eyebrow + section title */
.packages-eyebrow {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-blue-primary);
    background: rgba(29, 151, 201, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.packages-eyebrow--light {
    color: #7DD3FC;
    background: rgba(125, 211, 252, 0.12);
}

.packages-section-title {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--color-text-dark);
}

.packages-head-center {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 60px;
}
.packages-head-lead {
    color: var(--color-text-light);
    font-size: 1.08rem;
    line-height: 1.7;
}

/* ---------- PAGE HERO ---------- */
.packages-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 60vh;
    padding: 120px 0 100px;
    background:
        radial-gradient(1100px 500px at 90% -10%, rgba(29, 151, 201, 0.18) 0%, transparent 60%),
        radial-gradient(900px 500px at -10% 110%, rgba(252, 165, 2, 0.16) 0%, transparent 65%),
        linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
    overflow: hidden;
}
.packages-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.packages-hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}
.packages-hero-content .hero-tag,
.packages-hero-content .hero-title {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.packages-hero-content .hero-desc {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
.packages-hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 28px;
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
}
.packages-hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(169, 207, 228, 0.4);
    backdrop-filter: blur(6px);
}
.packages-hero-trust .packages-check {
    background: transparent;
    color: var(--color-accent-deep);
    width: auto;
    height: auto;
    font-weight: 800;
}
.packages-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.packages-hero-orb--one {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--color-blue-light), transparent 70%);
    top: 60px;
    right: 60px;
}
.packages-hero-orb--two {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(252, 165, 2, 0.45), transparent 70%);
    bottom: 60px;
    left: 60px;
}

/* ---------- PRICING GRID ---------- */
#packages-logo,
#packages-ecom {
    background: var(--color-white);
}
#packages-website {
    background: linear-gradient(180deg, #F0F9FF 0%, #E6F4FA 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.packages-card {
    background: var(--color-white);
    border: 1px solid rgba(169, 207, 228, 0.4);
    border-radius: 22px;
    padding: 38px 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.packages-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 22px 22px 0 0;
    background: var(--color-blue-primary);
}
.packages-card--bronze::before { background: linear-gradient(90deg, #BC5F00, #FCA502); }
.packages-card--silver::before { background: linear-gradient(90deg, var(--color-blue-primary), #7DD3FC); }
.packages-card--gold::before   { background: linear-gradient(90deg, var(--color-accent-yellow), var(--color-accent-orange)); }

.packages-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(29, 151, 201, 0.18);
    border-color: rgba(29, 151, 201, 0.4);
}

.packages-card--popular {
    background: linear-gradient(180deg, #ffffff 0%, #F0F9FF 100%);
    border: 2px solid transparent;
    box-shadow: 0 30px 70px rgba(29, 151, 201, 0.22);
    transform: translateY(-10px);
    background-clip: padding-box;
    z-index: 1;
}
.packages-card--popular::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    z-index: -1;
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep), var(--color-accent-orange));
    background-size: 200% 200%;
    animation: packagesGradient 6s ease infinite;
}
.packages-card--popular:hover {
    transform: translateY(-16px);
    box-shadow: 0 40px 80px rgba(29, 151, 201, 0.28);
}
@keyframes packagesGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.packages-card-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(29, 151, 201, 0.35);
    z-index: 2;
    white-space: nowrap;
}

.packages-card-head {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(169, 207, 228, 0.4);
}
.packages-card-tier {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-blue-primary);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}
.packages-card-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Space Grotesk', sans-serif;
}
.packages-card-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-dark);
}
.packages-card-amount {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.packages-card-period {
    margin-left: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.packages-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1 1 auto;
}
.packages-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(169, 207, 228, 0.25);
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}
.packages-card-features li:last-child {
    border-bottom: none;
}
.packages-check {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(29, 151, 201, 0.12);
    color: var(--color-blue-primary);
    font-size: 0.78rem;
    font-weight: 800;
    margin-top: 1px;
}
.packages-card--popular .packages-check {
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
    color: var(--color-white);
}

.packages-card-cta {
    text-align: center;
    margin-top: auto;
}
.packages-card-cta .btn {
    width: 100%;
}

/* ---------- CUSTOM SERVICES (dark) ---------- */
#packages-custom {
    background: #1E293B;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
#packages-custom::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 65%);
    pointer-events: none;
}
#packages-custom .packages-section-title {
    color: var(--color-white);
}
#packages-custom .packages-head-lead {
    color: #CBD5E1;
}
#packages-custom .text-gradient {
    background: linear-gradient(135deg, #7DD3FC, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.packages-custom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.packages-custom-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 34px 30px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.packages-custom-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(125, 211, 252, 0.4);
    transform: translateY(-6px);
}
.packages-custom-icon {
    font-size: 1.8rem;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.18), rgba(252, 165, 2, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.packages-custom-card h3 {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 12px;
}
.packages-custom-card p {
    color: #94A3B8;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 22px;
    flex: 1;
}
.packages-custom-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #7DD3FC;
    transition: var(--transition-smooth);
    margin-top: auto;
}
.packages-custom-cta span {
    transition: var(--transition-smooth);
}
.packages-custom-cta:hover {
    color: var(--color-accent-orange);
}
.packages-custom-cta:hover span {
    transform: translateX(4px);
}

/* ---------- CTA ---------- */
#packages-cta {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.packages-cta-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.packages-cta-bg-circle--one {
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border: 20px solid rgba(255, 255, 255, 0.05);
}
.packages-cta-bg-circle--two {
    bottom: -120px;
    left: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, var(--color-blue-primary) 0%, transparent 70%);
    opacity: 0.18;
}
.packages-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}
.packages-cta-note {
    font-size: 0.92rem;
    color: #94A3B8;
    font-style: italic;
    margin-bottom: 26px;
}
.packages-cta-inner h2 {
    font-size: 2.6rem;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.15;
}
#packages-cta .text-gradient {
    background: linear-gradient(135deg, #7DD3FC, #FCA502);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.packages-cta-inner > p {
    color: #94A3B8;
    font-size: 1.1rem;
    margin-bottom: 34px;
}
.packages-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
#packages-cta .btn-outline {
    border-color: #7DD3FC;
    color: #7DD3FC;
}
#packages-cta .btn-outline:hover {
    background: #7DD3FC;
    color: var(--color-text-dark);
}

/* ============================================================
   PACKAGES TABS + POPULAR-CARD CTA THEME
   ============================================================ */

#packages-tiers {
    background: var(--color-white);
}

/* ----- TABS ----- */
.packages-tabs {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto 50px;
    padding: 10px;
    background: linear-gradient(180deg, #F0F9FF 0%, #E6F4FA 100%);
    border: 1px solid rgba(169, 207, 228, 0.4);
    border-radius: 20px;
}

.packages-tab {
    flex: 1 1 0;
    min-width: 220px;
    padding: 18px 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: transparent;
    color: var(--color-text-light);
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.packages-tab:hover {
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-text-dark);
}

.packages-tab.is-active {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--color-white);
    border-color: rgba(29, 151, 201, 0.5);
    box-shadow: 0 18px 40px -10px rgba(29, 151, 201, 0.4);
    transform: translateY(-2px);
}

.packages-tab-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.packages-tab-sub {
    font-size: 0.82rem;
    font-weight: 600;
    color: inherit;
    opacity: 0.7;
}

.packages-tab.is-active .packages-tab-sub {
    opacity: 0.85;
}

/* ----- PANELS ----- */
.packages-tab-panel {
    animation: packagesFadeIn 360ms ease both;
}
.packages-tab-panel[hidden] {
    display: none;
}
.packages-tab-desc {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 40px;
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}
@keyframes packagesFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ----- POPULAR CARD — CTA THEME ----- */
.packages-card--popular {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border: 1px solid rgba(125, 211, 252, 0.25);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.45);
    color: var(--color-white);
    transform: translateY(-10px);
    overflow: hidden;
}
/* Kill the animated gradient border from earlier rule */
.packages-card--popular::after {
    content: none;
}
.packages-card--popular::before {
    background: linear-gradient(90deg, var(--color-blue-primary), var(--color-accent-orange));
    height: 6px;
}
.packages-card--popular:hover {
    transform: translateY(-16px);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.55);
    border-color: rgba(125, 211, 252, 0.45);
}

.packages-card--popular .packages-card-head {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}
.packages-card--popular .packages-card-tier {
    color: #7DD3FC;
}
.packages-card--popular .packages-card-currency,
.packages-card--popular .packages-card-period {
    color: rgba(255, 255, 255, 0.85);
}
.packages-card--popular .packages-card-amount {
    background: linear-gradient(135deg, #7DD3FC, var(--color-accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.packages-card--popular .packages-card-features li {
    color: #CBD5E1;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
.packages-card--popular .packages-check {
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
    color: var(--color-white);
}

.packages-card--popular .btn-outline {
    border-color: #7DD3FC;
    color: #7DD3FC;
}
.packages-card--popular .btn-outline:hover {
    background: #7DD3FC;
    color: var(--color-text-dark);
}

/* ----- CLEAN POPULAR BADGE (no side decorations) ----- */
.packages-card-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(29, 151, 201, 0.35);
    z-index: 2;
    white-space: nowrap;
}
.packages-card-ribbon::before,
.packages-card-ribbon::after {
    content: none;
}

/* ============================================================
   PACKAGES — REMOVE CARD TOP STRIP + UNCLIP POPULAR RIBBON
   ============================================================ */

/* 1. Kill the decorative top strip on every package card */
.packages-card::before,
.packages-card--bronze::before,
.packages-card--silver::before,
.packages-card--gold::before,
.packages-card--popular::before {
    content: none !important;
    background: none !important;
    height: 0 !important;
}

/* 2. Allow the "Most Popular" ribbon to render outside the card */
.packages-card,
.packages-card--popular {
    overflow: visible;
}

.packages-card-ribbon {
    z-index: 5;
}

/* ============================================================
   CONTACT PAGE STYLES (layout only — form reuses homepage CSS)
   ============================================================ */

/* Shared eyebrow + section title */
.contact-eyebrow {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-blue-primary);
    background: rgba(29, 151, 201, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.contact-section-title {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--color-text-dark);
}
.contact-head-center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px;
}
.contact-head-lead {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ---------- HERO ---------- */
.contact-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 55vh;
    padding: 120px 0 90px;
    background:
        radial-gradient(1100px 500px at 90% -10%, rgba(29, 151, 201, 0.18) 0%, transparent 60%),
        radial-gradient(900px 500px at -10% 110%, rgba(252, 165, 2, 0.16) 0%, transparent 65%),
        linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
    overflow: hidden;
}
.contact-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.contact-hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}
.contact-hero-content .hero-tag,
.contact-hero-content .hero-title {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.contact-hero-content .hero-desc {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
.contact-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.contact-hero-orb--one {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--color-blue-light), transparent 70%);
    top: 60px;
    right: 60px;
}
.contact-hero-orb--two {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(252, 165, 2, 0.45), transparent 70%);
    bottom: 60px;
    left: 60px;
}

/* ---------- MAIN: INFO + FORM (dark, matches homepage #contact) ---------- */
#contact-main {
    background-color: #0F172A;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
#contact-main .text-gradient {
    background: linear-gradient(135deg, #7DD3FC, #FCA502);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* LEFT: contact info */
.contact-info .contact-eyebrow {
    color: #7DD3FC;
    background: rgba(125, 211, 252, 0.12);
}
.contact-info h2 {
    font-size: 2.4rem;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.contact-info-lead {
    color: #94A3B8;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: var(--transition-smooth);
}
.contact-info-list li:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(125, 211, 252, 0.35);
    transform: translateX(4px);
}
.contact-info-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.18), rgba(252, 165, 2, 0.18));
    font-size: 1.3rem;
}
.contact-info-list li > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.contact-info-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7DD3FC;
}
.contact-info-list a,
.contact-info-list span:not(.contact-info-icon):not(.contact-info-label) {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.contact-info-list a:hover {
    color: var(--color-accent-orange);
}

.contact-info-badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-info-badges li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #CBD5E1;
    font-size: 0.95rem;
    font-weight: 500;
}
.contact-badge-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* RIGHT: form column header */
.contact-form-col {
    position: relative;
    z-index: 2;
}
.contact-form-title {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.2;
}
.contact-form-sub {
    color: #94A3B8;
    font-size: 1rem;
    margin-bottom: 28px;
}
/* Form fields themselves inherit from homepage .custom-contact-form rules.
   No new form CSS added. */

/* ---------- FAQ ---------- */
#contact-faq {
    background: var(--color-bg);
}
.contact-faq-accordion {
    margin-top: 0;
}

/* ============================================================
   CONTACT — INFO ICON VISIBILITY FIX
   ============================================================ */

.contact-info-icon {
    background: linear-gradient(135deg, #7DD3FC 0%, #FCA502 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 6px 16px rgba(29, 151, 201, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    filter: saturate(1.15) brightness(1.05);
}

.contact-info-list li:hover .contact-info-icon {
    transform: scale(1.05);
    box-shadow:
        0 10px 24px rgba(29, 151, 201, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.contact-info-icon {
    transition: var(--transition-smooth);
}

/* ============================================================
   LOGO & GRAPHIC DESIGN — INNER SERVICE PAGE (desktop only)
   Banner + What's Included grid + Why It Matters block + reused #about-cta.
   ============================================================ */

/* ---------- PAGE HERO ---------- */
.logo-service-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52vh;
    padding: 110px 0 90px;
    background:
        radial-gradient(1100px 500px at 10% -10%, rgba(29, 151, 201, 0.18) 0%, transparent 60%),
        radial-gradient(900px 500px at 110% 110%, rgba(252, 165, 2, 0.16) 0%, transparent 65%),
        linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
    overflow: hidden;
}
.logo-service-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.logo-service-hero-content {
    width: 100%;
    text-align: center;
}
.logo-service-hero-content .hero-tag,
.logo-service-hero-content .hero-title {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.logo-service-hero-content .hero-desc {
    max-width: 70%;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.logo-service-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.logo-service-hero-orb--one {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--color-blue-light), transparent 70%);
    top: 60px;
    left: 60px;
}
.logo-service-hero-orb--two {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(252, 165, 2, 0.45), transparent 70%);
    bottom: 60px;
    right: 60px;
}

/* ---------- WHAT'S INCLUDED ---------- */
#logo-service-included {
    background: var(--color-white);
}
.logo-service-included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}
.logo-service-included-card {
    background: var(--color-white);
    border: 1px solid rgba(169, 207, 228, 0.4);
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition-smooth);
}
.logo-service-included-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue-primary), var(--color-accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}
.logo-service-included-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(29, 151, 201, 0.16);
    border-color: rgba(29, 151, 201, 0.4);
}
.logo-service-included-card:hover::before {
    transform: scaleX(1);
}
.logo-service-included-icon {
    font-size: 1.6rem;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(29, 151, 201, 0.12), rgba(252, 165, 2, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-service-included-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    line-height: 1.3;
    margin: 0;
}
.logo-service-tag-pill {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent-deep);
    background: rgba(252, 165, 2, 0.16);
    padding: 3px 9px;
    border-radius: 50px;
    vertical-align: middle;
    margin-left: 6px;
}

/* ---------- WHY IT MATTERS (single highlighted block) ---------- */
#logo-service-why-matters {
    background: linear-gradient(180deg, #F0F9FF 0%, #E6F4FA 100%);
}
.logo-service-matter-card {
    max-width: 880px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid rgba(169, 207, 228, 0.45);
    border-radius: 24px;
    padding: 56px 56px 52px;
    box-shadow: 0 28px 60px rgba(29, 151, 201, 0.14);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.logo-service-matter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-blue-primary), var(--color-accent-orange));
}
.logo-service-matter-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(29, 151, 201, 0.16), rgba(252, 165, 2, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 22px;
}
.logo-service-matter-card .services-section-title {
    margin-bottom: 16px;
}
.logo-service-matter-card p {
    color: var(--color-text-light);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- CTA — button row inside reused #about-cta ---------- */
.logo-service-cta-actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}
#about-cta .logo-service-cta-actions .btn-outline {
    border-color: #7DD3FC;
    color: #7DD3FC;
}
#about-cta .logo-service-cta-actions .btn-outline:hover {
    background: #7DD3FC;
    color: var(--color-text-dark);
}

/* ============================================================
   WEB DESIGN & DEVELOPMENT — INNER SERVICE PAGE (desktop only)
   Banner + What We Build grid + Our Approach block + reused #about-cta.
   ============================================================ */

/* ---------- PAGE HERO ---------- */
.web-service-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52vh;
    padding: 110px 0 90px;
    background:
        radial-gradient(1100px 500px at 10% -10%, rgba(29, 151, 201, 0.18) 0%, transparent 60%),
        radial-gradient(900px 500px at 110% 110%, rgba(252, 165, 2, 0.16) 0%, transparent 65%),
        linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
    overflow: hidden;
}
.web-service-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.web-service-hero-content {
    width: 100%;
    text-align: center;
}
.web-service-hero-content .hero-tag,
.web-service-hero-content .hero-title {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.web-service-hero-content .hero-desc {
    max-width: 70%;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.web-service-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.web-service-hero-orb--one {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--color-blue-light), transparent 70%);
    top: 60px;
    left: 60px;
}
.web-service-hero-orb--two {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(252, 165, 2, 0.45), transparent 70%);
    bottom: 60px;
    right: 60px;
}

/* ---------- WHAT WE BUILD ---------- */
#web-service-build {
    background: var(--color-white);
}
.web-service-build-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}
.web-service-build-card {
    background: var(--color-white);
    border: 1px solid rgba(169, 207, 228, 0.4);
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition-smooth);
}
.web-service-build-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue-primary), var(--color-accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}
.web-service-build-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(29, 151, 201, 0.16);
    border-color: rgba(29, 151, 201, 0.4);
}
.web-service-build-card:hover::before {
    transform: scaleX(1);
}
.web-service-build-icon {
    font-size: 1.7rem;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(29, 151, 201, 0.12), rgba(252, 165, 2, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}
.web-service-build-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    color: var(--color-text-dark);
    line-height: 1.3;
    margin: 0;
}
.web-service-tag-pill {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent-deep);
    background: rgba(252, 165, 2, 0.16);
    padding: 3px 9px;
    border-radius: 50px;
    vertical-align: middle;
    margin-left: 6px;
}

/* ---------- OUR APPROACH (single highlighted block) ---------- */
#web-service-approach {
    background: linear-gradient(180deg, #F0F9FF 0%, #E6F4FA 100%);
}
.web-service-approach-card {
    max-width: 880px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid rgba(169, 207, 228, 0.45);
    border-radius: 24px;
    padding: 56px 56px 52px;
    box-shadow: 0 28px 60px rgba(29, 151, 201, 0.14);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.web-service-approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-blue-primary), var(--color-accent-orange));
}
.web-service-approach-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(29, 151, 201, 0.16), rgba(252, 165, 2, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 22px;
}
.web-service-approach-card .services-section-title {
    margin-bottom: 16px;
}
.web-service-approach-card p {
    color: var(--color-text-light);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- CTA — button row inside reused #about-cta ---------- */
.web-service-cta-actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}
#about-cta .web-service-cta-actions .btn-outline {
    border-color: #7DD3FC;
    color: #7DD3FC;
}
#about-cta .web-service-cta-actions .btn-outline:hover {
    background: #7DD3FC;
    color: var(--color-text-dark);
}

/* ============================================================
   APP DESIGN & DEVELOPMENT — INNER SERVICE PAGE (desktop only)
   Banner + Our App Services grid + reused #about-cta.
   ============================================================ */

/* ---------- PAGE HERO ---------- */
.app-service-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52vh;
    padding: 110px 0 90px;
    background:
        radial-gradient(1100px 500px at 10% -10%, rgba(29, 151, 201, 0.18) 0%, transparent 60%),
        radial-gradient(900px 500px at 110% 110%, rgba(252, 165, 2, 0.16) 0%, transparent 65%),
        linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
    overflow: hidden;
}
.app-service-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.app-service-hero-content {
    width: 100%;
    text-align: center;
}
.app-service-hero-content .hero-tag,
.app-service-hero-content .hero-title {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.app-service-hero-content .hero-desc {
    max-width: 70%;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.app-service-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.app-service-hero-orb--one {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--color-blue-light), transparent 70%);
    top: 60px;
    left: 60px;
}
.app-service-hero-orb--two {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(252, 165, 2, 0.45), transparent 70%);
    bottom: 60px;
    right: 60px;
}

/* ---------- OUR APP SERVICES ---------- */
#app-service-services {
    background: var(--color-white);
}
.app-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}
.app-service-card {
    background: var(--color-white);
    border: 1px solid rgba(169, 207, 228, 0.4);
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition-smooth);
}
.app-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue-primary), var(--color-accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}
.app-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(29, 151, 201, 0.16);
    border-color: rgba(29, 151, 201, 0.4);
}
.app-service-card:hover::before {
    transform: scaleX(1);
}
.app-service-icon {
    font-size: 1.7rem;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(29, 151, 201, 0.12), rgba(252, 165, 2, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}
.app-service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    color: var(--color-text-dark);
    line-height: 1.3;
    margin: 0;
}
.app-service-tag-pill {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent-deep);
    background: rgba(252, 165, 2, 0.16);
    padding: 3px 9px;
    border-radius: 50px;
    vertical-align: middle;
    margin-left: 6px;
}

/* ---------- CTA — button row inside reused #about-cta ---------- */
.app-service-cta-actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}
#about-cta .app-service-cta-actions .btn-outline {
    border-color: #7DD3FC;
    color: #7DD3FC;
}
#about-cta .app-service-cta-actions .btn-outline:hover {
    background: #7DD3FC;
    color: var(--color-text-dark);
}

/* ============================================================
   DIGITAL MARKETING — INNER SERVICE PAGE (desktop only)
   Banner + Services grid + Promise block + reused #about-cta.
   ============================================================ */

/* ---------- PAGE HERO ---------- */
.digital-service-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52vh;
    padding: 110px 0 90px;
    background:
        radial-gradient(1100px 500px at 10% -10%, rgba(29, 151, 201, 0.18) 0%, transparent 60%),
        radial-gradient(900px 500px at 110% 110%, rgba(252, 165, 2, 0.16) 0%, transparent 65%),
        linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
    overflow: hidden;
}
.digital-service-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.digital-service-hero-content {
    width: 100%;
    text-align: center;
}
.digital-service-hero-content .hero-tag,
.digital-service-hero-content .hero-title {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.digital-service-hero-content .hero-desc {
    max-width: 70%;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.digital-service-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.digital-service-hero-orb--one {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--color-blue-light), transparent 70%);
    top: 60px;
    left: 60px;
}
.digital-service-hero-orb--two {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(252, 165, 2, 0.45), transparent 70%);
    bottom: 60px;
    right: 60px;
}

/* ---------- OUR DIGITAL MARKETING SERVICES ---------- */
#digital-service-services {
    background: var(--color-white);
}
.digital-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}
.digital-service-card {
    background: var(--color-white);
    border: 1px solid rgba(169, 207, 228, 0.4);
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition-smooth);
}
.digital-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue-primary), var(--color-accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}
.digital-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(29, 151, 201, 0.16);
    border-color: rgba(29, 151, 201, 0.4);
}
.digital-service-card:hover::before {
    transform: scaleX(1);
}
.digital-service-card--wide {
    grid-column: 1 / -1;
}
.digital-service-icon {
    font-size: 1.7rem;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(29, 151, 201, 0.12), rgba(252, 165, 2, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}
.digital-service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    color: var(--color-text-dark);
    line-height: 1.3;
    margin: 0;
}

/* ---------- OUR PROMISE (single highlighted block) ---------- */
#digital-service-promise {
    background: linear-gradient(180deg, #F0F9FF 0%, #E6F4FA 100%);
}
.digital-service-promise-card {
    max-width: 880px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid rgba(169, 207, 228, 0.45);
    border-radius: 24px;
    padding: 56px 56px 52px;
    box-shadow: 0 28px 60px rgba(29, 151, 201, 0.14);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.digital-service-promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-blue-primary), var(--color-accent-orange));
}
.digital-service-promise-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(29, 151, 201, 0.16), rgba(252, 165, 2, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 22px;
}
.digital-service-promise-card .services-section-title {
    margin-bottom: 16px;
}
.digital-service-promise-card p {
    color: var(--color-text-light);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- CTA — button row inside reused #about-cta ---------- */
.digital-service-cta-actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}
#about-cta .digital-service-cta-actions .btn-outline {
    border-color: #7DD3FC;
    color: #7DD3FC;
}
#about-cta .digital-service-cta-actions .btn-outline:hover {
    background: #7DD3FC;
    color: var(--color-text-dark);
}

/* ============================================================
   PRINT & STATIONERY — INNER SERVICE PAGE (desktop only)
   Banner + What We Design grid + reused #about-cta.
   ============================================================ */

/* ---------- PAGE HERO ---------- */
.print-service-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52vh;
    padding: 110px 0 90px;
    background:
        radial-gradient(1100px 500px at 10% -10%, rgba(29, 151, 201, 0.18) 0%, transparent 60%),
        radial-gradient(900px 500px at 110% 110%, rgba(252, 165, 2, 0.16) 0%, transparent 65%),
        linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
    overflow: hidden;
}
.print-service-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.print-service-hero-content {
    width: 100%;
    text-align: center;
}
.print-service-hero-content .hero-tag,
.print-service-hero-content .hero-title {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.print-service-hero-content .hero-desc {
    max-width: 70%;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.print-service-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.print-service-hero-orb--one {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--color-blue-light), transparent 70%);
    top: 60px;
    left: 60px;
}
.print-service-hero-orb--two {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(252, 165, 2, 0.45), transparent 70%);
    bottom: 60px;
    right: 60px;
}

/* ---------- WHAT WE DESIGN ---------- */
#print-service-design {
    background: var(--color-white);
}
.print-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}
.print-service-card {
    background: var(--color-white);
    border: 1px solid rgba(169, 207, 228, 0.4);
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition-smooth);
}
.print-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue-primary), var(--color-accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}
.print-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(29, 151, 201, 0.16);
    border-color: rgba(29, 151, 201, 0.4);
}
.print-service-card:hover::before {
    transform: scaleX(1);
}
.print-service-card--wide {
    grid-column: 1 / -1;
}
.print-service-icon {
    font-size: 1.7rem;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(29, 151, 201, 0.12), rgba(252, 165, 2, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}
.print-service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    color: var(--color-text-dark);
    line-height: 1.3;
    margin: 0;
}

/* ---------- CTA — button row inside reused #about-cta ---------- */
.print-service-cta-actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}
#about-cta .print-service-cta-actions .btn-outline {
    border-color: #7DD3FC;
    color: #7DD3FC;
}
#about-cta .print-service-cta-actions .btn-outline:hover {
    background: #7DD3FC;
    color: var(--color-text-dark);
}

/* ============================================================
   ADMIN & CONSULTANCY — INNER SERVICE PAGE (desktop only)
   Banner + What We Offer grid + reused #about-cta.
   ============================================================ */

/* ---------- PAGE HERO ---------- */
.admin-service-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52vh;
    padding: 110px 0 90px;
    background:
        radial-gradient(1100px 500px at 10% -10%, rgba(29, 151, 201, 0.18) 0%, transparent 60%),
        radial-gradient(900px 500px at 110% 110%, rgba(252, 165, 2, 0.16) 0%, transparent 65%),
        linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
    overflow: hidden;
}
.admin-service-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.admin-service-hero-content {
    width: 100%;
    text-align: center;
}
.admin-service-hero-content .hero-tag,
.admin-service-hero-content .hero-title {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.admin-service-hero-content .hero-desc {
    max-width: 70%;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.admin-service-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.admin-service-hero-orb--one {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--color-blue-light), transparent 70%);
    top: 60px;
    left: 60px;
}
.admin-service-hero-orb--two {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(252, 165, 2, 0.45), transparent 70%);
    bottom: 60px;
    right: 60px;
}

/* ---------- WHAT WE OFFER ---------- */
#admin-service-offer {
    background: var(--color-white);
}
.admin-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}
.admin-service-card {
    background: var(--color-white);
    border: 1px solid rgba(169, 207, 228, 0.4);
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition-smooth);
}
.admin-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue-primary), var(--color-accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}
.admin-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(29, 151, 201, 0.16);
    border-color: rgba(29, 151, 201, 0.4);
}
.admin-service-card:hover::before {
    transform: scaleX(1);
}
.admin-service-card--wide {
    grid-column: 1 / -1;
}
.admin-service-icon {
    font-size: 1.7rem;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(29, 151, 201, 0.12), rgba(252, 165, 2, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}
.admin-service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    color: var(--color-text-dark);
    line-height: 1.3;
    margin: 0;
}

/* ---------- CTA — button row inside reused #about-cta ---------- */
.admin-service-cta-actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}
#about-cta .admin-service-cta-actions .btn-outline {
    border-color: #7DD3FC;
    color: #7DD3FC;
}
#about-cta .admin-service-cta-actions .btn-outline:hover {
    background: #7DD3FC;
    color: var(--color-text-dark);
}

/* ============================================================
   HOMEPAGE REBUILD (desktop only)
   Reuses .services-card / .about-pillar-card / .about-stat-* patterns.
   Adds: hero CTA row + trust badges, stats bar, values grid,
         process bullets, why-choose grid, testimonials, CTA bullets.
   ============================================================ */

/* ---------- HERO EXTENSIONS ---------- */
/* Center-align homepage banner to match inner-page hero pattern */
#hero .hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
#hero .hero-tag,
#hero .hero-title {
    margin-left: auto;
    margin-right: auto;
}
#hero .hero-desc {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.home-hero-ctas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.home-trust-badges {
    list-style: none;
    padding: 0;
    margin: 30px auto 0;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 0.98rem;
}
.home-trust-badges li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.home-trust-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(29, 151, 201, 0.3);
}

/* ---------- STATS BAR ---------- */
#home-stats {
    background: var(--color-white);
    padding: 70px 0;
}
.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E6F4FA 100%);
    border: 1px solid rgba(169, 207, 228, 0.45);
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: 0 24px 50px rgba(29, 151, 201, 0.10);
}
.home-stats-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    position: relative;
}
.home-stats-card + .home-stats-card::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: rgba(29, 151, 201, 0.18);
}
.home-stats-card .about-stat-num {
    font-size: 2.6rem;
}

/* ---------- SERVICES OVERVIEW (light) ---------- */
#home-services {
    background: linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
}

/* ---------- VALUES ---------- */
#home-values {
    background: var(--color-bg);
}
.home-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* ---------- PROCESS + WHY CHOOSE US ---------- */
#home-process {
    background: linear-gradient(180deg, #F0F9FF 0%, #E6F4FA 100%);
}
.home-process-bullets {
    list-style: none;
    padding: 0;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 40px;
    max-width: 760px;
}
.home-process-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 1.02rem;
}
.home-process-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue-primary), var(--color-accent-deep));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(29, 151, 201, 0.3);
}
.home-why-head {
    text-align: center;
    margin-bottom: 28px;
}
.home-why-head h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    color: var(--color-blue-primary);
}
.home-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}
.home-why-card {
    background: var(--color-white);
    border: 1px solid rgba(169, 207, 228, 0.4);
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition-smooth);
}
.home-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue-primary), var(--color-accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}
.home-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(29, 151, 201, 0.16);
    border-color: rgba(29, 151, 201, 0.4);
}
.home-why-card:hover::before {
    transform: scaleX(1);
}
.home-why-icon {
    font-size: 1.6rem;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(29, 151, 201, 0.12), rgba(252, 165, 2, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-why-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    line-height: 1.3;
    margin: 0;
}
.home-why-card p {
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

/* ---------- TESTIMONIALS ---------- */
#home-testimonials {
    background: var(--color-white);
}
.home-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}
.home-testimonial-card {
    background: var(--color-white);
    border: 1px solid rgba(169, 207, 228, 0.4);
    border-radius: 22px;
    padding: 36px 30px 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: var(--transition-smooth);
}
.home-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-blue-primary), var(--color-accent-orange));
}
.home-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(29, 151, 201, 0.16);
    border-color: rgba(29, 151, 201, 0.4);
}
.home-testimonial-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    line-height: 0.6;
    color: var(--color-blue-primary);
    opacity: 0.55;
    display: inline-block;
    margin-top: 6px;
}
.home-testimonial-card p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}
.home-testimonial-meta {
    border-top: 1px solid rgba(29, 151, 201, 0.18);
    padding-top: 14px;
}
.home-testimonial-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

/* ---------- CTA BULLETS + CONTACT LINE ---------- */
.home-cta-bullets {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: center;
}
.home-cta-bullets li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #CBD5E1;
    font-weight: 600;
    font-size: 0.98rem;
}
.home-cta-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7DD3FC, #FCA502);
    color: #0F172A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}
.home-cta-contact {
    margin-top: 26px;
    color: #94A3B8;
    font-size: 0.95rem;
    text-align: center;
}
.home-cta-contact a {
    color: #7DD3FC;
    font-weight: 600;
    transition: color 0.2s ease;
}
.home-cta-contact a:hover {
    color: #ffffff;
}
.home-cta-sep {
    margin: 0 10px;
    color: rgba(148, 163, 184, 0.5);
}

/* ============================================================
   REVISION OVERRIDES — applied last to ensure correct render
   ============================================================ */

/* 1. Non-sticky navbar */
nav.navbar {
    position: relative !important;
    top: auto !important;
    left: auto !important;
}

/* 2. Remove hero padding-top compensation */
header#hero {
    padding-top: 0 !important;
}

/* 3. Section contrast backgrounds */
section#about    { background: #1E293B !important; }
section#about h2, section#about .section-title, section#about p,
section#about .about-main-text h2, section#about .about-body p,
section#about .feature-title, section#about .feature-desc { color: #ffffff !important; }
section#about .text-gradient {
    background: linear-gradient(135deg, #7DD3FC, #38BDF8) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}
section#service  { background: linear-gradient(180deg, #E6F4FA 0%, #F0F9FF 100%) !important; }
section#benefits { background: linear-gradient(180deg, #F0F9FF 0%, #E6F4FA 100%) !important; }

/* =========================
   ELEMENTOR-LIKE FOOTER (3 equal columns + equal gap)
   ========================= */

.site-footer{
  background: #ffffff;
  color: #64748B;
  padding: 60px 0 30px;
  border-top: 1px solid #eee;
}

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

.site-footer__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 equal columns */
  gap: 40px; /* equal gap everywhere */
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

/* Titles */
.site-footer__title{
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0F172A;
  margin: 0 0 16px;
}

/* Column base */
.site-footer__col{
  min-width: 0; /* important so long email/strings don't push layout */
}

/* LINKS */
.site-footer__links{
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.site-footer__links li{ margin-bottom: 10px; }
.site-footer__links a{
  color: #475569;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.site-footer__links a:hover{ color: #0F172A; }

/* SOCIAL */
.site-footer__social{
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.site-footer__social-icon{
  color: #475569;
  display: inline-flex;
  transition: transform 0.2s ease, color 0.2s ease;
}
.site-footer__social-icon:hover{
  color: #0F172A;
  transform: translateY(-2px);
}

/* BRAND (center column) */
.site-footer__col--brand{
  text-align: center;
}

.site-footer__logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #0F172A;
  font-weight: 800;
  margin-bottom: 10px;
}

.site-footer__logo-img{
  height: 52px;
  width: auto;
  display: block;
}

.site-footer__logo-icon{
  width: 26px;
  height: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
}
.site-footer__logo-icon i{
  display: block;
  background: #1D97C9;
  border-radius: 2px;
}
.site-footer__logo-icon i:nth-child(2){ background: #FDC601; }
.site-footer__logo-icon i:nth-child(3){ background: #FCA502; }

.site-footer__copyright{
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: #94A3B8;
}

/* CONTACT */
.site-footer__contact{
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__contact li{
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: #475569;
}

.site-footer__label{
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0F172A;
}

.site-footer__contact a{
  color: #475569;
  text-decoration: none;
  overflow-wrap: anywhere; /* prevents long email from breaking layout */
}
.site-footer__contact a:hover{ color: #0F172A; }

/* RESPONSIVE */
@media (max-width: 768px){
  .site-footer__grid{
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .site-footer__social{
    justify-content: center;
  }

  .site-footer__contact li{
    align-items: center;
  }
}
/* Make 3 columns, but align each column's content like Elementor (desktop/tablet) */
@media (min-width: 769px){
  .site-footer__col--links{
    justify-self: start;
    text-align: left;
  }

  .site-footer__col--brand{
    justify-self: center;
    text-align: center;
  }

  .site-footer__col--contact{
    justify-self: end;      /* pushes contact block to far right */
    text-align: left;       /* labels/text still read normally */
  }
}

/* On mobile the footer becomes a single column — keep everything centered */
@media (max-width: 768px){
  .site-footer__col--links,
  .site-footer__col--brand,
  .site-footer__col--contact{
    justify-self: center;
    text-align: center;
  }
}

/* ============================================================
   HOMEPAGE + GLOBAL HEADER/FOOTER RESPONSIVE FIXES
   Adds mobile drawer behavior, submenu tap-toggle, left alignment,
   and homepage section grid collapses. Desktop styles untouched.
   ============================================================ */

/* ---------- KILL legacy pseudo-element "Contact Us" inside mobile drawer ---------- */
@media (max-width: 968px) {
    .nav-menu::after { content: none !important; display: none !important; }
}

/* ---------- MOBILE NAV DRAWER — FULLSCREEN + LEFT ALIGNED ---------- */
@media (max-width: 968px) {
    .navbar { position: relative; z-index: 1300; } /* keep header + hamburger above drawer */
    body.menu-open,
    html.menu-open { overflow: hidden; }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100vw;
        height: calc(100vh - var(--header-height));
        max-height: calc(100vh - var(--header-height));
        margin: 0;
        background: #ffffff;
        z-index: 1200;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        padding: 28px 24px 40px;
        gap: 4px;
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateY(-110%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        border-bottom: none;
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-menu li {
        width: 100%;
        text-align: left;
        list-style: none;
    }
    .nav-menu > li > a,
    .nav-menu .nav-link {
        display: block;
        width: 100%;
        padding: 14px 4px;
        font-size: 1.08rem;
        border-bottom: 1px solid rgba(169, 207, 228, 0.25);
    }
    .nav-menu > li:last-child > a {
        border-bottom: none;
    }

    /* Parent of submenu — caret indicator, tap toggles */
    .nav-menu .menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-menu .menu-item-has-children > a::after {
        margin-left: auto;
        transition: transform 0.25s ease;
    }
    .nav-menu .menu-item-has-children.submenu-open > a::after {
        transform: rotate(180deg);
    }

    /* Submenu — neutralize desktop hover/focus-within absolute positioning + translate
       so the static mobile submenu doesn't get shifted off-screen on tap. */
    .nav-menu .sub-menu,
    .nav-menu .menu-item-has-children:hover > .sub-menu,
    .nav-menu .menu-item-has-children:focus-within > .sub-menu {
        position: static !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        min-width: 0 !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    .nav-menu .sub-menu {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .nav-menu .sub-menu::before { display: none !important; }
    /* ONLY open when parent has .submenu-open (JS-controlled). Hover/focus must NOT open. */
    .nav-menu .menu-item-has-children:hover > .sub-menu,
    .nav-menu .menu-item-has-children:focus-within > .sub-menu {
        max-height: 0;
        padding: 0;
    }
    .nav-menu .menu-item-has-children.submenu-open > .sub-menu {
        max-height: 1200px !important;
        padding: 4px 0 8px !important;
    }
    /* Disable desktop caret rotation on hover/focus — caret only rotates via .submenu-open */
    .nav-menu .menu-item-has-children:hover > a::after,
    .nav-menu .menu-item-has-children:focus-within > a::after {
        transform: none;
    }
    .nav-menu .menu-item-has-children.submenu-open > a::after {
        transform: rotate(180deg) !important;
    }
    .nav-menu .sub-menu li a {
        padding: 10px 0 10px 18px;
        font-size: 0.98rem;
        white-space: normal;
    }
    .nav-menu .sub-menu li a:hover {
        background: transparent;
        padding-left: 22px;
    }

    /* Contact button — JS moves it into nav-menu as last li; style as full-width */
    .nav-menu__contact-li {
        margin-top: 16px;
        padding: 0;
        border-bottom: none !important;
    }
    .nav-menu__contact-li .header-contact-btn {
        display: block;
        margin: 0;
    }
    .nav-menu__contact-li .header-contact-btn .btn {
        display: block;
        width: 100%;
        text-align: center;
    }
    /* When contact button is moved into drawer, hide original empty slot */
    .header-contact-btn {
        display: block;
    }
    /* Pre-move desktop fallback: if JS not yet run, keep the standalone button hidden so we don't get two */
    .nav-container > .header-contact-btn {
        display: none;
    }
}

/* ---------- HOMEPAGE HERO ---------- */
@media (max-width: 968px) {
    #hero {
        min-height: auto;
        padding: calc(var(--header-height) + 40px) 0 70px;
    }
    #hero .hero-content {
        max-width: 100%;
    }
    #hero .hero-title { font-size: 2.6rem; }
    #hero .hero-desc {
        max-width: 100%;
        width: 100%;
        font-size: 1.08rem;
    }
    .home-hero-ctas {
        width: auto;
        justify-content: center;
        gap: 10px;
    }
    .home-hero-ctas .btn {
        flex: 0 0 auto;
        padding: 11px 22px;
        font-size: 0.95rem;
        line-height: 1.2;
        text-align: center;
    }
    .home-trust-badges { justify-content: center; gap: 14px 22px; }

    /* About page hero — match #hero spacing/scale */
    .about-hero {
        min-height: auto;
        padding: calc(var(--header-height) + 40px) 0 70px;
    }
    .about-hero-content { max-width: 100%; }
    .about-hero-content .hero-title { font-size: 2.6rem; }
    .about-hero-content .hero-desc {
        max-width: 100%;
        width: 100%;
        font-size: 1.08rem;
    }

    /* About — Who We Are 2-col → 1-col */
    .about-who-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-stats-card { margin: 0 auto; max-width: 480px; width: 100%; }

    /* About — Passion 3-col → 2-col */
    .about-passion-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    /* About — Culture 2-col split → 1-col */
    .about-culture-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-pillars {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* About — Process 4-col → 2-col */
    .about-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    /* About CTA scale */
    .about-cta-inner h2 { font-size: 2.2rem; }
    .about-cta-inner p { font-size: 1.05rem; }

    /* About section title typography */
    .about-section-title { font-size: 2rem; }
    .about-journey-subtitle { font-size: 1.35rem; }
    .about-quote { font-size: 1rem; padding: 18px 20px; }

    /* ----- SERVICES PAGE ----- */
    .services-hero {
        min-height: auto;
        padding: calc(var(--header-height) + 40px) 0 70px;
    }
    .services-hero-content { max-width: 100%; }
    .services-hero-content .hero-title { font-size: 2.6rem; }
    .services-hero-content .hero-desc {
        max-width: 100%;
        width: 100%;
        font-size: 1.08rem;
    }
    .services-section-title { font-size: 2rem; }
    .services-head-lead { font-size: 1rem; }

    /* 3-col cards grid → 2-col (matches homepage rule, scoped without #home-services) */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    /* Why-Choose Us 2-col dark grid → 1-col */
    .services-why-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    /* CTA button row: stack centered */
    .services-why-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .services-why-cta .btn {
        min-width: 220px;
        max-width: 320px;
        padding: 11px 22px;
        font-size: 0.95rem;
        line-height: 1.2;
    }

    /* ----- INNER SERVICE PAGES (6 templates) ----- */
    /* Hero — match #hero / about-hero / services-hero */
    .logo-service-hero,
    .web-service-hero,
    .app-service-hero,
    .digital-service-hero,
    .print-service-hero,
    .admin-service-hero {
        min-height: auto;
        padding: calc(var(--header-height) + 40px) 0 70px;
    }
    .logo-service-hero-content,
    .web-service-hero-content,
    .app-service-hero-content,
    .digital-service-hero-content,
    .print-service-hero-content,
    .admin-service-hero-content { max-width: 100%; }
    .logo-service-hero-content .hero-title,
    .web-service-hero-content .hero-title,
    .app-service-hero-content .hero-title,
    .digital-service-hero-content .hero-title,
    .print-service-hero-content .hero-title,
    .admin-service-hero-content .hero-title { font-size: 2.4rem; }
    .logo-service-hero-content .hero-desc,
    .web-service-hero-content .hero-desc,
    .app-service-hero-content .hero-desc,
    .digital-service-hero-content .hero-desc,
    .print-service-hero-content .hero-desc,
    .admin-service-hero-content .hero-desc {
        max-width: 100%;
        width: 100%;
        font-size: 1.05rem;
    }

    /* Card grids — 3 or 4 col → 2 col */
    .logo-service-included-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .web-service-build-grid,
    .app-service-grid,
    .digital-service-grid,
    .print-service-grid,
    .admin-service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    /* Highlight cards — pad smaller */
    .logo-service-matter-card,
    .web-service-approach-card,
    .digital-service-promise-card {
        padding: 42px 32px 38px;
        max-width: 100%;
    }

    /* CTA button rows — stack centered */
    .logo-service-cta-actions,
    .web-service-cta-actions,
    .app-service-cta-actions,
    .digital-service-cta-actions,
    .print-service-cta-actions,
    .admin-service-cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    .logo-service-cta-actions .btn,
    .web-service-cta-actions .btn,
    .app-service-cta-actions .btn,
    .digital-service-cta-actions .btn,
    .print-service-cta-actions .btn,
    .admin-service-cta-actions .btn {
        min-width: 220px;
        max-width: 320px;
        padding: 11px 22px;
        font-size: 0.95rem;
        line-height: 1.2;
        text-align: center;
    }

    /* ----- PACKAGES PAGE ----- */
    .packages-hero {
        min-height: auto;
        padding: calc(var(--header-height) + 40px) 0 70px;
    }
    .packages-hero-content { max-width: 100%; }
    .packages-hero-content .hero-title { font-size: 2.4rem; }
    .packages-hero-content .hero-desc {
        max-width: 100%;
        width: 100%;
        font-size: 1.05rem;
    }
    .packages-hero-trust {
        justify-content: center;
        gap: 12px 22px;
    }
    .packages-section-title { font-size: 2rem; }
    .packages-head-lead { font-size: 1rem; }

    /* Tabs — leave layout to the @768 vertical-stack rule */
    .packages-tab-desc { font-size: 0.98rem; }

    /* Cards grid 3-col → 2-col */
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    /* Custom services grid 4-col → 2-col */
    .packages-custom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    /* CTA buttons row — stack centered */
    .packages-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    .packages-cta-buttons .btn {
        min-width: 220px;
        max-width: 320px;
        padding: 11px 22px;
        font-size: 0.95rem;
        line-height: 1.2;
        text-align: center;
    }

    /* ----- CONTACT PAGE ----- */
    .contact-hero {
        min-height: auto;
        padding: calc(var(--header-height) + 40px) 0 70px;
    }
    .contact-hero-content { max-width: 100%; }
    .contact-hero-content .hero-title { font-size: 2.4rem; }
    .contact-hero-content .hero-desc {
        max-width: 100%;
        width: 100%;
        font-size: 1.05rem;
    }
    .contact-section-title { font-size: 2rem; }
    .contact-head-lead { font-size: 1rem; }

    /* 2-col info + form → stacked */
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info,
    .contact-form-col { max-width: 100%; }

    /* CF7 checkbox/acceptance — Contact page: stack vertically (long labels) */
    .contact-form-col .custom-contact-form .wpcf7-form-control.wpcf7-checkbox,
    .contact-form-col .custom-contact-form .wpcf7-form-control.wpcf7-acceptance,
    .contact-form-col .custom-contact-form .wpcf7-form-control-wrap > .wpcf7-checkbox {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* CF7 radio — Contact page: flex-wrap row so each pill takes natural width */
    .contact-form-col .custom-contact-form .wpcf7-form-control.wpcf7-radio,
    .contact-form-col .custom-contact-form .wpcf7-form-control-wrap > .wpcf7-radio {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 15px;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .contact-form-col .custom-contact-form .wpcf7-radio .wpcf7-list-item {
        display: inline-flex;
        align-items: center;
        width: auto;
        margin: 0;
    }
    .contact-form-col .custom-contact-form .wpcf7-radio .wpcf7-list-item label {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin: 0;
        cursor: pointer;
    }

    /* Shared CF7 list-item rules (checkbox + acceptance) */
    .contact-form-col .custom-contact-form .wpcf7-checkbox .wpcf7-list-item,
    .contact-form-col .custom-contact-form .wpcf7-acceptance .wpcf7-list-item {
        margin: 0;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        max-width: 100%;
    }
    .contact-form-col .custom-contact-form .wpcf7-checkbox .wpcf7-list-item label,
    .contact-form-col .custom-contact-form .wpcf7-acceptance .wpcf7-list-item label {
        display: flex;
        align-items: center;
        gap: 8px;
        word-break: break-word;
        margin: 0;
        cursor: pointer;
    }

    /* Native input reset — neutralize global "input → 100% width" override */
    .contact-form-col .custom-contact-form .wpcf7-checkbox input[type="checkbox"],
    .contact-form-col .custom-contact-form .wpcf7-radio input[type="radio"],
    .contact-form-col .custom-contact-form .wpcf7-acceptance input[type="checkbox"] {
        flex-shrink: 0;
        width: auto !important;
        max-width: none !important;
        margin: 0;
    }

    /* ----- HOMEPAGE CF7 (body.home) — checkbox overflow fix ----- */
    body.home .custom-contact-form .wpcf7-form-control.wpcf7-checkbox,
    body.home .custom-contact-form .wpcf7-form-control.wpcf7-acceptance,
    body.home .custom-contact-form .wpcf7-form-control-wrap > .wpcf7-checkbox {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    body.home .custom-contact-form .wpcf7-checkbox .wpcf7-list-item,
    body.home .custom-contact-form .wpcf7-acceptance .wpcf7-list-item {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin: 0;
        max-width: 100%;
    }
    body.home .custom-contact-form .wpcf7-checkbox .wpcf7-list-item label,
    body.home .custom-contact-form .wpcf7-acceptance .wpcf7-list-item label {
        display: flex;
        align-items: center;
        gap: 8px;
        word-break: break-word;
        margin: 0;
        cursor: pointer;
    }
    body.home .custom-contact-form .wpcf7-checkbox input[type="checkbox"],
    body.home .custom-contact-form .wpcf7-acceptance input[type="checkbox"] {
        flex-shrink: 0;
        width: auto !important;
        max-width: none !important;
        margin: 0;
    }
    /* Homepage radio — same flex-wrap behavior as contact for consistency */
    body.home .custom-contact-form .wpcf7-form-control.wpcf7-radio,
    body.home .custom-contact-form .wpcf7-form-control-wrap > .wpcf7-radio {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 15px;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    body.home .custom-contact-form .wpcf7-radio .wpcf7-list-item {
        display: inline-flex;
        align-items: center;
        width: auto;
        margin: 0;
    }
    body.home .custom-contact-form .wpcf7-radio .wpcf7-list-item label {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin: 0;
        cursor: pointer;
    }
    body.home .custom-contact-form .wpcf7-radio input[type="radio"] {
        flex-shrink: 0;
        width: auto !important;
        max-width: none !important;
        margin: 0;
    }
}
@media (max-width: 560px) {
    #hero {
        padding: calc(var(--header-height) + 32px) 0 60px;
    }
    #hero .hero-title { font-size: 2rem; }
    #hero .hero-desc { font-size: 1rem; }

    /* About page hero tighter */
    .about-hero {
        padding: calc(var(--header-height) + 32px) 0 60px;
    }
    .about-hero-content .hero-title { font-size: 2rem; }
    .about-hero-content .hero-desc { font-size: 1rem; }

    /* Services page hero tighter */
    .services-hero {
        padding: calc(var(--header-height) + 32px) 0 60px;
    }
    .services-hero-content .hero-title { font-size: 2rem; }
    .services-hero-content .hero-desc { font-size: 1rem; }

    /* Inner service pages — hero tighter on tiny phones */
    .logo-service-hero,
    .web-service-hero,
    .app-service-hero,
    .digital-service-hero,
    .print-service-hero,
    .admin-service-hero {
        padding: calc(var(--header-height) + 32px) 0 60px;
    }
    .logo-service-hero-content .hero-title,
    .web-service-hero-content .hero-title,
    .app-service-hero-content .hero-title,
    .digital-service-hero-content .hero-title,
    .print-service-hero-content .hero-title,
    .admin-service-hero-content .hero-title { font-size: 1.9rem; }
    .logo-service-hero-content .hero-desc,
    .web-service-hero-content .hero-desc,
    .app-service-hero-content .hero-desc,
    .digital-service-hero-content .hero-desc,
    .print-service-hero-content .hero-desc,
    .admin-service-hero-content .hero-desc { font-size: 0.98rem; }

    /* Packages page hero tighter */
    .packages-hero {
        padding: calc(var(--header-height) + 32px) 0 60px;
    }
    .packages-hero-content .hero-title { font-size: 1.9rem; }
    .packages-hero-content .hero-desc { font-size: 0.98rem; }
    .packages-hero-trust { font-size: 0.88rem; gap: 8px 18px; }

    /* Contact page hero tighter */
    .contact-hero {
        padding: calc(var(--header-height) + 32px) 0 60px;
    }
    .contact-hero-content .hero-title { font-size: 1.9rem; }
    .contact-hero-content .hero-desc { font-size: 0.98rem; }
    .contact-info-icon { width: 40px; height: 40px; font-size: 1rem; }
    .home-hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .home-hero-ctas .btn {
        width: auto;
        min-width: 220px;
        max-width: 320px;
        padding: 10px 22px;
        font-size: 0.92rem;
        line-height: 1.2;
    }
}

/* ---------- HOMEPAGE STATS BAR ---------- */
@media (max-width: 968px) {
    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 18px;
        padding: 30px 22px;
    }
    .home-stats-card + .home-stats-card::before { display: none; }
    .home-stats-card .about-stat-num { font-size: 2.2rem; }
}
@media (max-width: 480px) {
    .home-stats-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ---------- HOMEPAGE SERVICES / VALUES / TESTIMONIALS / WHY GRIDS ---------- */
@media (max-width: 968px) {
    #home-services .services-grid,
    .home-values-grid,
    .home-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    .home-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}
@media (max-width: 600px) {
    #home-services .services-grid,
    .home-values-grid,
    .home-testimonials-grid,
    .home-why-grid {
        grid-template-columns: 1fr;
    }

    /* About — collapse remaining multi-col grids to 1 col */
    .about-passion-grid,
    .about-process-grid {
        grid-template-columns: 1fr;
    }

    /* Services — cards grid to 1 col */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Inner service pages — all card grids to 1 col */
    .logo-service-included-grid,
    .web-service-build-grid,
    .app-service-grid,
    .digital-service-grid,
    .print-service-grid,
    .admin-service-grid {
        grid-template-columns: 1fr;
    }
    /* Wide cards spanning full row already use grid-column: 1 / -1 — keep behavior on 1-col */

    /* Packages — cards + custom grid to 1 col */
    .packages-grid,
    .packages-custom-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- HOMEPAGE PROCESS BULLETS ---------- */
@media (max-width: 768px) {
    .home-process-bullets {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }
    .home-process-bullets li { font-size: 0.98rem; }
}

/* ---------- HOMEPAGE CTA ---------- */
@media (max-width: 768px) {
    #contact .cta-box h2 { font-size: 2rem !important; }
    #contact .cta-box p { font-size: 1.02rem !important; }
    .home-cta-bullets { flex-direction: column; align-items: flex-start; width: 100%; }
    .home-cta-bullets li { width: 100%; }
    .home-cta-contact { font-size: 0.9rem; word-break: break-word; }
    .home-cta-sep { margin: 0 6px; }
}

/* ---------- SECTION PADDING + CONTAINER (global mobile) ---------- */
@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .container { padding: 0 20px; }

    /* About — stat list spacing + quote scaling */
    .about-stats-list { gap: 18px; }
    .about-stat-num { font-size: 2.4rem; }
    .about-pillar-icon { width: 56px; height: 56px; font-size: 1.8rem; }
    .about-process-num { font-size: 2rem; }
    #about-cta { padding: 70px 0; }
    .about-cta-inner h2 { font-size: 1.9rem; }

    /* Services — card padding + icon scaling for compact mobile */
    .services-card { padding: 30px 24px; }
    .services-card-icon { width: 56px; height: 56px; font-size: 1.7rem; margin-bottom: 18px; }
    .services-card h3 { font-size: 1.2rem; }
    .services-card-num { font-size: 0.95rem; top: 18px; right: 20px; }
    #services-why { padding: 70px 0; }

    /* Inner service pages — card padding + icon scaling */
    .logo-service-included-card,
    .web-service-build-card,
    .app-service-card,
    .digital-service-card,
    .print-service-card,
    .admin-service-card { padding: 26px 22px; }
    .logo-service-included-icon { width: 52px; height: 52px; font-size: 1.45rem; }
    .web-service-build-icon,
    .app-service-icon,
    .digital-service-icon,
    .print-service-icon,
    .admin-service-icon { width: 54px; height: 54px; font-size: 1.5rem; }
    .logo-service-included-card h3,
    .web-service-build-card h3,
    .app-service-card h3,
    .digital-service-card h3,
    .print-service-card h3,
    .admin-service-card h3 { font-size: 1.05rem; }

    /* Highlight cards — tighter on small screens */
    .logo-service-matter-card,
    .web-service-approach-card,
    .digital-service-promise-card { padding: 36px 24px 32px; }
    .logo-service-matter-card .services-section-title,
    .web-service-approach-card .services-section-title,
    .digital-service-promise-card .services-section-title { font-size: 1.8rem; }
    .logo-service-matter-card p,
    .web-service-approach-card p,
    .digital-service-promise-card p { font-size: 1rem; }
    .logo-service-matter-icon,
    .web-service-approach-icon,
    .digital-service-promise-icon { width: 64px; height: 64px; font-size: 1.8rem; }

    /* Packages — card + ribbon + price scaling */
    .packages-card { padding: 28px 22px; }
    .packages-card-tier { font-size: 1.05rem; }
    .packages-card-amount { font-size: 2.6rem; }
    .packages-card-currency { font-size: 1.2rem; }
    .packages-card-period { font-size: 0.9rem; }
    .packages-card-features { font-size: 0.95rem; }
    .packages-card-features li { padding-left: 4px; }
    .packages-card-ribbon { font-size: 0.7rem; padding: 5px 14px; }
    .packages-card-cta .btn { padding: 11px 22px; font-size: 0.95rem; }
    /* Tabs — vertical stack on mobile */
    .packages-tabs {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .packages-tab {
        width: 100%;
        min-width: 0;
        text-align: left;
        padding: 14px 18px;
    }
    .packages-tab-label { font-size: 0.98rem; }
    .packages-tab-sub { font-size: 0.78rem; }

    /* ----- CONTACT PAGE ----- */
    .contact-form-title { font-size: 1.65rem; }
    .contact-form-sub { font-size: 0.98rem; }
    .contact-info h2 { font-size: 1.8rem; }
    .contact-info-lead { font-size: 0.98rem; }
    .contact-info-list { gap: 16px; }
    .contact-info-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .contact-info-label { font-size: 0.78rem; }
    .contact-info-badges li { font-size: 0.92rem; }

    /* CF7 form — full-width inputs, full-width submit */
    .custom-contact-form .wpcf7-form-control:not(.wpcf7-submit):not([type="checkbox"]):not([type="radio"]) {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    .custom-contact-form input,
    .custom-contact-form textarea,
    .custom-contact-form select {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        font-size: 16px; /* prevent iOS zoom on focus */
    }
    .custom-contact-form .wpcf7-submit,
    .custom-contact-form button[type="submit"] {
        width: 100%;
        padding: 13px 22px;
        font-size: 0.98rem;
        line-height: 1.2;
    }
    .custom-contact-form p { margin-bottom: 14px; }
    .custom-contact-form label { font-size: 0.95rem; }

    /* FAQ accordion summary scaling */
    .contact-faq-accordion summary { font-size: 1rem; padding: 18px 18px 18px 18px; }
    .contact-faq-accordion .process-accordion-body { font-size: 0.95rem; padding: 16px 18px; }
}
    .packages-custom-card { padding: 28px 24px; }
    .packages-custom-icon { width: 54px; height: 54px; font-size: 1.6rem; }
    .packages-custom-card h3 { font-size: 1.1rem; }
    #packages-cta { padding: 70px 0; }
    .packages-cta-inner h2 { font-size: 1.9rem; }
}

/* ---------- GLOBAL: PREVENT HORIZONTAL OVERFLOW ---------- */
@media (max-width: 968px) {
    body, html { overflow-x: hidden; }
}