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

:root {
    --bg-dark: #FFFEFB;
    --bg-dark-secondary: #FFFEFB;
    --bg-card: #FFFEFB;
    --primary-color: #45C87A;
    --primary-dark: #C74B0A;
    --primary-light: #81d4fa;
    --secondary-color: #14b8a6;
    --text-light: #1a1a2e;
    --text-secondary: #6b7280;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #FFFEFB;
    --border-light: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --border-radius: 16px;
    --border-radius-pill: 50px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-light);
    background-color: #08080e;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

body::-webkit-scrollbar {
    display: none;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    background: transparent;
    border: 1px solid transparent;
    z-index: 1000;
    transition: background 0.45s ease,
                border-color 0.45s ease,
                box-shadow 0.45s ease,
                top 0.45s ease,
                left 0.45s ease,
                right 0.45s ease,
                border-radius 0.45s ease,
                backdrop-filter 0.45s ease;
}

.navbar.scrolled {
    top: 12px;
    left: 12%;
    right: 12%;
    border-radius: 50px;
    background: rgba(32, 32, 36, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 26px;
    transition: padding 0.45s ease;
}

.navbar.scrolled .nav-container {
    padding: 8px 18px;
}

.navbar.scrolled .nav-links {
    gap: 2px;
}

.navbar.scrolled .nav-links a {
    font-size: 13px;
    padding: 7px 9px;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}
.logo-spin-wrap {
    display: inline-flex;
    align-items: center;
    perspective: 280px;
    flex-shrink: 0;
}
.logo-3d {
    position: relative;
    width: 44px;
    height: 44px;
    transform-style: preserve-3d;
    animation: logo-spin3d 4s linear infinite;
}
.logo-face {
    position: absolute;
    top: 0; left: 0;
    width: 44px;
    height: 44px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: block;
}
.logo-face-back {
    transform: rotateY(180deg);
}
.footer-logo .logo-3d,
.nav-container .logo-3d {
    animation: none;
    transform: none;
}
.footer-logo .logo-face-back,
.nav-container .logo-face-back {
    display: none;
}
.footer-logo .logo-face g {
    fill: #ffffff;
}
.nav-container .logo-face g {
    fill: #000000;
}
@keyframes logo-spin3d {
    0%   { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.logo-main {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.logo-tld {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.logo-tagline {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    margin-left: 4px;
}

.logo-sub {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    padding: 9px 11px;
    border: none;
    border-radius: 0;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    background: transparent;
    color: var(--primary-color);
}

.nav-links .nav-cta {
    background: var(--primary-color);
    color: #ffffff;
    padding: 9px 22px;
    border-radius: var(--border-radius-pill);
    border: 1px solid var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links .nav-cta:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.nav-social a {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s ease;
}

.nav-social a:hover {
    color: #ffffff;
}

.nav-links .nav-cta.active {
    color: #ffffff !important;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffffff;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 8px;
    transition: transform 0.3s ease;
}

@media (hover: hover) and (min-width: 769px) {
    .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #08080e;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    list-style: none;
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

@media (hover: hover) and (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }
}

.dropdown-menu li {
    width: 100%;
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 14px;
    border: none;
    border-radius: 0;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding-left: 24px;
}

.dropdown-category-group {
    list-style: none;
}

.dropdown-category-group:not(:first-child) {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.dropdown-category-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 10px 20px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: background 0.2s ease;
}

.dropdown-category-toggle:hover {
    background: rgba(69, 200, 122, 0.05);
}

.dropdown-category-toggle .cat-arrow {
    font-size: 8px;
    transition: transform 0.3s ease;
}

.dropdown-category-group.active .dropdown-category-toggle .cat-arrow {
    transform: rotate(180deg);
}

.dropdown-category-items {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    margin: 0;
}

.dropdown-category-group.active .dropdown-category-items {
    max-height: 200px;
}

.dropdown.nested {
    position: relative;
}

.nested-toggle {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.nested-toggle::after {
    content: '▼';
    font-size: 8px;
    margin-left: 10px;
    transition: none;
}

.dropdown.nested.active .nested-toggle::after {
    content: '▲';
}

.nested-menu {
    position: static;
    left: auto;
    transform: none;
    margin-top: 0;
    margin-left: 0;
    min-width: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    display: block;
    background: rgba(69, 200, 122, 0.05);
    border-radius: 8px;
    box-shadow: none;
    padding: 0;
}

.nested-menu::before {
    display: none;
}

.dropdown.nested.active > .nested-menu {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 8px 0;
    margin-top: 4px;
}

.nested-menu a {
    padding-left: 32px !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.hamburger:hover span,
.hamburger:active span {
    background: var(--primary-color);
}

.hero {
    padding: 150px 40px 25px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    align-items: center;
    overflow: hidden;
    min-height: 100vh;
}

.hero::after {
    display: none;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.hero-headline {
    font-size: clamp(16px, 6.375vw, 90px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 0;
    color: #ffffff;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.hero-rotating-text {
    display: inline;
    position: relative;
    padding-right: 6px;
}

.hero-rotating-text::after {
    display: none;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subheadline {
    font-size: 27px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 70px;
    font-weight: 700;
    margin-top: 16px;
    line-height: 1.5;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subheadline-break {
    display: block;
}

.hero-sub-mobile {
    display: none;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    margin-top: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-email-cta {
    margin-top: 0;
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-email-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 60px;
    border: 2px solid #e0e0e0;
    padding: 6px 6px 6px 20px;
    transition: border-color 0.3s;
}

.hero-email-form:focus-within {
    border-color: #45C87A;
}

.hero-email-input-wrap {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 10px;
    min-width: 0;
}

.hero-email-icon {
    flex-shrink: 0;
}

.hero-email-input {
    border: none;
    outline: none;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    color: #333;
    background: transparent;
    width: 100%;
    padding: 12px 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.hero-email-input:focus {
    outline: none;
    box-shadow: none;
}

.hero-email-input::placeholder {
    color: #6e6e6e;
}

.hero-email-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #45C87A;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 19px;
    font-weight: 700;
    flex-shrink: 0;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-email-btn:hover {
    background: #d14e0a;
}

.hero-email-success {
    color: #45C87A;
    font-weight: 600;
    font-size: 15px;
    margin-top: 12px;
    text-align: center;
}

.hero-trust {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-light);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: #1a1a2e;
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: #45C87A;
    border: 1px solid #45C87A;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(69, 200, 122, 0.05);
}

.btn-large {
    padding: 16px 48px;
    font-size: 18px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
    perspective: 1000px;
}

.mock-website {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease-out;
    transform-style: preserve-3d;
    position: relative;
}

.mock-header {
    background: #f8f8f8;
    padding: 14px 18px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mock-dots {
    display: flex;
    gap: 8px;
}

.mock-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
}

.mock-dots span:nth-child(1) { background: #ef4444; }
.mock-dots span:nth-child(2) { background: #f59e0b; }
.mock-dots span:nth-child(3) { background: #10b981; }

.mock-tabs {
    display: flex;
    gap: 8px;
    flex: 1;
    position: relative;
}

.mock-tab {
    min-width: 70px;
    height: 32px;
    background: #ececec;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    border: 1px solid transparent;
}

.mock-tab.active {
    background: #45C87A;
    border: 1px solid #45C87A;
    color: #ffffff;
}

.tab-indicator {
    position: absolute;
    bottom: -14px;
    height: 2px;
    background: #45C87A;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 70px;
    left: 0;
}

.mock-cursor {
    position: absolute;
    width: 20px;
    height: 24px;
    pointer-events: none;
    z-index: 100;
    opacity: 1;
    top: 0;
    left: 0;
    will-change: transform;
}

.mock-cursor::before {
    content: '➤';
    position: absolute;
    font-size: 20px;
    color: #333;
    transform: rotate(-45deg);
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.mock-cursor.clicking::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #45C87A;
    border-radius: 50%;
    top: -5px;
    left: -5px;
    animation: clickRipple 0.5s ease-out;
}

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

@keyframes cursorMove {
    0%, 5% {
        transform: translate(105px, 18px);
        opacity: 1;
    }
    33%, 38% {
        transform: translate(179px, 18px);
        opacity: 1;
    }
    66%, 71% {
        transform: translate(253px, 18px);
        opacity: 1;
    }
    95%, 100% {
        transform: translate(105px, 18px);
        opacity: 1;
    }
}

.mock-content {
    display: flex;
    min-height: 300px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.mock-content::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 120px;
    background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(69, 200, 122, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.mock-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 40px,
        rgba(69, 200, 122, 0.03) 40px,
        rgba(69, 200, 122, 0.03) 41px
    );
    mask-image: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
    pointer-events: none;
}

.mock-decor {
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    color: rgba(69, 200, 122, 0.15);
    font-family: monospace;
    z-index: 1;
}

.mock-decor-tl {
    top: 15px;
    left: 15px;
}

.mock-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.mock-sidebar {
    display: none;
}

.mock-main {
    flex: 1;
    padding: 28px;
    position: relative;
    background: transparent;
    z-index: 2;
}

.mock-page {
    display: none;
    animation: fadeInContent 0.4s ease-in-out;
}

.mock-page.active {
    display: block;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mock-bar {
    height: 12px;
    background: linear-gradient(90deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 6px;
    margin-bottom: 16px;
}

.mock-bar.short {
    width: 60%;
}

.mock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.mock-step {
    text-align: center;
    padding: 20px 10px;
}

.mock-step-number {
    width: 48px;
    height: 48px;
    background: rgba(69, 200, 122, 0.08);
    border: 2px solid #45C87A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}
.mock-step-number svg {
    width: 22px;
    height: 22px;
}

.mock-step-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px 0;
}

.mock-step-desc {
    font-size: 12px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.benefits {
    padding: 100px 40px;
    background: #FFFEFB;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-tabs {
    padding: 80px 40px;
    background: transparent;
    position: relative;
}

.services-tabs-label {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.services-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #45C87A;
    display: inline-block;
}

.services-tab-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.services-tab-btn {
    padding: 12px 22px;
    background: #252527;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab-btn-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.services-tab-btn:hover {
    color: #ffffff;
    background: #2e2e30;
    border-color: #45C87A;
}

.services-tab-btn.active {
    color: #fff;
    font-weight: 600;
    background: #2e2e30;
    border-color: #45C87A;
}

.services-tab-panels {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
}

.services-tab-panel {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.services-tab-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tab-panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-panel-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.tab-panel-text p {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.tab-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-features li {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.tab-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #45C87A;
    font-weight: 700;
}

.services-tab-panel-centered .tab-panel-content {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.services-tab-panel-centered .tab-features {
    display: inline-flex;
    text-align: left;
    margin: 0 auto;
}

.services-tab-panel-centered .tab-panel-text > div:last-child {
    justify-content: center;
}

.tab-visual-mockup {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.tab-social-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 8px;
}

.tab-social-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.tab-social-card:hover {
    border-color: #45C87A;
    box-shadow: 0 4px 16px rgba(69, 200, 122, 0.1);
}

.tab-social-card-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 48px;
}

.tab-social-card img,
.tab-social-card > svg {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

.tab-social-name {
    font-size: 11px;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
}

.tab-social-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 48px;
    flex: 1;
    padding: 0 2px;
}

.tab-chart-bar {
    flex: 1;
    background: #45C87A;
    border-radius: 3px 3px 0 0;
    min-width: 0;
    height: var(--target-h);
    transform: scaleY(0);
    transform-origin: bottom;
    animation: socialBarGrow 1.2s ease forwards;
}

.tab-chart-bar:nth-child(1) { animation-delay: 0.1s;  --target-h: var(--bar-1); }
.tab-chart-bar:nth-child(2) { animation-delay: 0.22s; --target-h: var(--bar-2); }
.tab-chart-bar:nth-child(3) { animation-delay: 0.34s; --target-h: var(--bar-3); }
.tab-chart-bar:nth-child(4) { animation-delay: 0.46s; --target-h: var(--bar-4); }
.tab-chart-bar:nth-child(5) { animation-delay: 0.58s; --target-h: var(--bar-5); }
.tab-chart-bar:nth-child(6) { animation-delay: 0.70s; --target-h: var(--bar-6); }
.tab-chart-bar:nth-child(7) { animation-delay: 0.82s; --target-h: var(--bar-7); }
.tab-chart-bar:nth-child(8) { animation-delay: 0.94s; --target-h: var(--bar-8); }

@keyframes socialBarGrow {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
}

.tab-chart-bar:nth-child(even) {
    background: #f4a261;
}

.tab-social-stat {
    font-size: 13px;
    font-weight: 700;
    color: #45C87A;
}

.mockup-url {
    font-size: 11px;
    color: #666;
    margin-left: auto;
    background: #f5f5f5;
    padding: 3px 12px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

@keyframes mockupSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.anim-item {
    opacity: 0;
    animation: mockupSlideUp 0.5s ease forwards;
}

.services-tab-panel.active .anim-item {
    opacity: 0;
    animation: mockupSlideUp 0.5s ease forwards;
}

@keyframes chatSlideIn {
    from { opacity: 0; transform: translateX(-20px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

.anim-chat {
    opacity: 0;
    animation: chatSlideIn 0.4s ease forwards;
}

.services-tab-panel.active .anim-chat {
    opacity: 0;
    animation: chatSlideIn 0.4s ease forwards;
}

@keyframes barGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.anim-bar {
    height: var(--bar-h);
    transform: scaleY(0);
    transform-origin: bottom;
    animation: barGrow 0.8s ease forwards;
    animation-delay: 0.3s;
}

.services-tab-panel.active .anim-bar {
    height: var(--bar-h);
    transform: scaleY(0);
    transform-origin: bottom;
    animation: barGrow 0.8s ease forwards;
    animation-delay: 0.3s;
}

@keyframes pulseArrow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.anim-pulse {
    animation: pulseArrow 2s ease infinite;
}

@keyframes blinkDot {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.3; }
}

.anim-blink {
    animation: blinkDot 3s ease infinite;
}

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

.anim-spin-slow {
    animation: spinSlow 12s linear infinite;
}

.mockup-code-editor {
    padding: 0 !important;
    gap: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    height: 360px;
    min-height: 360px;
    max-height: 360px;
}

.mockup-code-editor .code-editor-main {
    flex: 1;
    overflow: hidden;
}

.mobile-code-editor {
    display: none !important;
}

.code-editor-sidebar {
    display: flex;
    gap: 2px;
    padding: 8px 12px;
    background: #f5f5f5;
    border-bottom: 1px solid #e5e7eb;
}

.code-file {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    color: #666;
    font-size: 10px;
    border-radius: 4px 4px 0 0;
    cursor: default;
}

.code-file.active {
    background: #ffffff;
    color: #333;
    border: 1px solid #e0e0e0;
    border-bottom: 1px solid #fff;
}

.code-file-icon {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    display: inline-block;
}

.html-icon { background: #e44d26; }
.css-icon { background: #264de4; }
.js-icon { background: #f7df1e; }
.img-icon { background: #10b981; }

.code-editor-main {
    flex: 1;
    padding: 10px 0;
    overflow: hidden;
}

.code-line {
    display: flex;
    align-items: center;
    padding: 1px 12px;
    line-height: 1.7;
    white-space: nowrap;
}

.code-line.highlight-line {
    background: rgba(69, 200, 122, 0.08);
    border-left: 2px solid #45C87A;
}

.code-ln {
    width: 24px;
    color: #b0b0b0;
    text-align: right;
    margin-right: 12px;
    font-size: 9px;
    flex-shrink: 0;
    user-select: none;
}

.code-tag { color: #e44d26; }
.code-attr { color: #0451a5; }
.code-str { color: #a31515; }
.code-text { color: #333; }
.code-comment { color: #6a9955; font-style: italic; }

.code-new-line {
    opacity: 0;
    transform: translateX(-4px);
    animation: codeLineAppear 0.3s ease forwards;
}

@keyframes codeLineAppear {
    to { opacity: 1; transform: translateX(0); }
}

.code-cursor {
    display: inline-block;
    width: 7px;
    height: 14px;
    background: #45C87A;
    margin-left: 36px;
    animation: cursorBlink 0.6s step-end infinite;
    vertical-align: middle;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.code-editor-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 12px;
    background: #f5f5f5;
    border-top: 1px solid #e5e7eb;
    font-size: 9px;
    color: #888;
}

.code-status-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.code-status-right {
    display: flex;
    gap: 12px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.green-dot {
    background: #10b981;
    box-shadow: 0 0 4px #10b981;
}

.mockup-app {
    padding: 20px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Inter', sans-serif;
}

.mock-stats-row {
    display: flex;
    gap: 12px;
}

.mock-stat {
    flex: 1;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.mock-stat-value {
    font-size: 20px;
    font-weight: 800;
    color: #45C87A;
}

.mock-stat-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 8px;
}

.mock-chart-bar {
    flex: 1;
    background: linear-gradient(to top, #45C87A, #f59e0b);
    border-radius: 4px 4px 0 0;
    min-height: 4px;
}

.mock-keywords {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mock-keyword {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 12px;
    color: #444;
}

.mock-kw-rank {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
}

.mockup-map-pack {
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    background: #fff;
    justify-content: flex-start;
}

.mock-google-header {
    padding: 4px 0 0;
}

.mock-google-searchbar {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    padding: 4px 10px;
    font-size: 11px;
    color: #202124;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.mock-google-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 4px;
}

.mock-gtab {
    font-size: 10px;
    color: #70757a;
    padding-bottom: 4px;
    cursor: default;
}

.mock-gtab.active {
    color: #1a73e8;
    border-bottom: 2px solid #1a73e8;
    font-weight: 600;
}

.mock-google-mappack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mock-gmap-label {
    font-size: 11px;
    font-weight: 600;
    color: #202124;
    padding: 2px 0;
}

.mock-gmap-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    overflow: hidden;
}

.mock-gmap-biz {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 4px 8px;
    border-bottom: 1px solid #e8eaed;
    background: #fff;
}

.mock-gmap-biz:last-child {
    border-bottom: none;
}

.mock-gmap-biz.highlight {
    background: #e8f0fe;
}

.mock-gmap-rank {
    font-size: 13px;
    font-weight: 700;
    color: #1a73e8;
    min-width: 16px;
    text-align: center;
    line-height: 1.3;
}

.mock-gmap-rank.dim {
    color: #bbb;
}

.mock-gmap-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.mock-gmap-info.dim {
    opacity: 0.5;
}

.mock-gmap-name {
    font-size: 11px;
    font-weight: 600;
    color: #1a0dab;
}

.mock-gmap-meta {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mock-gmap-stars {
    font-size: 11px;
    color: #fbbc04;
}

.mock-gmap-reviews {
    font-size: 10px;
    color: #70757a;
}

.mock-gmap-addr {
    font-size: 10px;
    color: #70757a;
}

.mockup-gads {
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    background: #fff;
    justify-content: flex-start;
}

.mock-gads-topbar {
    display: flex;
    align-items: center;
    padding: 7px 14px;
    background: #fff;
    border-bottom: 1px solid #e8eaed;
}

.mock-gads-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #202124;
}

.mock-gads-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e8eaed;
    padding: 0 16px;
    background: #fff;
}

.mock-gads-navitem {
    font-size: 10px;
    color: #5f6368;
    padding: 6px 10px;
    cursor: default;
}

.mock-gads-navitem.active {
    color: #1a73e8;
    border-bottom: 2px solid #1a73e8;
    font-weight: 600;
}

.mock-gads-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    padding: 6px 12px;
}

.mock-gads-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 4px;
    border: 1px solid #e8eaed;
    border-radius: 8px;
}

.mock-gads-metric-val {
    font-size: 13px;
    font-weight: 700;
}

.mock-gads-metric-lbl {
    font-size: 8px;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mock-gads-chart {
    padding: 4px 12px;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    margin: 0 12px;
    background: #fafafa;
}

.mock-gads-table {
    padding: 0 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mock-gads-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 5px 6px;
    font-size: 8px;
    font-weight: 600;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 1px solid #e8eaed;
}

.mock-gads-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 5px 6px;
    font-size: 10px;
    color: #202124;
    border-bottom: 1px solid #f1f3f4;
}

.mock-gads-active {
    color: #34A853;
    font-weight: 600;
    font-size: 10px;
}

.mock-agent-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 13px;
    color: #444;
    font-weight: 600;
}

.mock-agent-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
    animation: blinkDot 3s ease infinite;
}

.mock-agent-badge {
    margin-left: auto;
    font-size: 10px;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.mock-chat-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.5;
    max-width: 85%;
}

.mock-chat-bubble.incoming {
    background: #f0f0f0;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.mock-chat-bubble.outgoing {
    background: #45C87A;
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.mock-chat-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 12px;
    color: #555;
}

.voicement-mockup {
    border: 1px solid rgba(69, 200, 122, 0.3);
}
.voicement-bar {
    background: linear-gradient(90deg, rgba(69, 200, 122, 0.15), rgba(255, 140, 50, 0.15));
}
.voicement-url {
    color: #45C87A;
}
.voicement-phone-body {
    background: #ffffff;
    gap: 10px;
}
.voicement-phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f8f8f8;
    border-radius: 10px;
    border: 1px solid #45C87A;
}
.voicement-phone-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #45C87A, #ff8c32);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.voicement-phone-avatar svg {
    width: 18px;
    height: 18px;
    color: #fff;
}
.voicement-phone-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.voicement-phone-label {
    font-size: 13px;
    font-weight: 700;
    color: #f5f7fa;
}
.voicement-phone-status {
    font-size: 11px;
    color: #10b981;
    font-weight: 600;
}
.voicement-phone-timer {
    margin-left: auto;
    font-size: 16px;
    font-weight: 700;
    color: #45C87A;
    font-variant-numeric: tabular-nums;
}
.voicement-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 40px;
    padding: 0 20px;
}
.wave-bar {
    width: 4px;
    height: 30px;
    border-radius: 4px;
    background: linear-gradient(180deg, #45C87A, #ff8c32);
    transform-origin: bottom;
    animation: waveAnim 1.8s ease-in-out infinite alternate;
    animation-delay: var(--delay);
}
@keyframes waveAnim {
    0% { transform: scaleY(0.2); }
    25% { transform: scaleY(0.73); }
    50% { transform: scaleY(0.33); }
    75% { transform: scaleY(0.93); }
    100% { transform: scaleY(0.47); }
}
.voicement-transcript {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 10px;
    flex: 1;
    overflow: hidden;
}
.voicement-transcript-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #45C87A;
    font-weight: 700;
    margin-bottom: 2px;
}
.voicement-transcript-line {
    font-size: 11px;
    line-height: 1.5;
    color: #444;
    padding: 6px 10px;
    border-radius: 8px;
}
.voicement-transcript-line.caller {
    background: rgba(255, 255, 255, 0.04);
}
.voicement-transcript-line.ai {
    background: rgba(69, 200, 122, 0.08);
    border-left: 2px solid #45C87A;
}
.transcript-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1px 6px;
    border-radius: 4px;
    margin-right: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #888;
}
.transcript-tag.ai-tag {
    background: linear-gradient(135deg, rgba(69, 200, 122, 0.2), rgba(255, 140, 50, 0.2));
    color: #45C87A;
}
.voicement-actions {
    display: flex;
    gap: 8px;
}
.voicement-action-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    font-size: 11px;
    color: #10b981;
    font-weight: 600;
}
.action-icon {
    font-size: 13px;
}

.mock-wf-label {
    font-size: 11px;
    color: #45C87A;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-wf-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mock-wf-node {
    padding: 8px 14px;
    background: #f5f5f5;
    border: 1px solid #2a2a35;
    border-radius: 8px;
    font-size: 11px;
    color: #444;
    white-space: nowrap;
}

.mock-wf-node.trigger {
    border-color: #45C87A;
    color: #45C87A;
}

.mock-wf-node.action {
    border-color: #10b981;
    color: #10b981;
}

.mock-wf-arrow {
    color: #555;
    font-size: 14px;
    flex-shrink: 0;
}

.mock-wf-stats {
    display: flex;
    gap: 16px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.mock-platforms {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: flex-start;
    align-items: center;
}

.mock-platform-icon {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.mock-platform-icon:hover {
    border-color: #45C87A;
    transform: translateY(-2px);
}

.mock-platform-icon img,
.mock-platform-icon svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.mock-calendar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mock-cal-post {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 12px;
    color: #444;
}

.mock-cal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mock-metrics {
    display: flex;
    gap: 12px;
}

.mock-metric {
    flex: 1;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mock-monitor-header {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    padding: 8px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.mock-status-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    font-size: 14px;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 8px;
}

.mock-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mock-status-value {
    margin-left: auto;
    color: #10b981;
    font-weight: 600;
    font-size: 13px;
}

.mock-update-log {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
}

.mock-brand-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 8px;
}

.mock-brand-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #45C87A, #f59e0b);
    flex-shrink: 0;
}

.mock-brand-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-brand-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.mock-brand-colors {
    display: flex;
    gap: 8px;
}

.mock-brand-swatch {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    transition: transform 0.2s;
}

.mock-brand-swatch:hover {
    transform: scale(1.15);
}

.mock-brand-type {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 14px;
    background: #f5f5f5;
    border-radius: 8px;
}

.mock-brand-assets {
    display: flex;
    gap: 8px;
}

.mock-brand-asset {
    flex: 1;
    height: 50px;
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-stats-row {
    display: flex;
    gap: 12px;
}

.seo-stat {
    flex: 1;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.seo-stat-value {
    font-size: 20px;
    font-weight: 800;
    color: #45C87A;
}

.seo-stat-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seo-keywords {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.seo-keyword {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 12px;
    color: #444;
}

.kw-rank {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
}

.chat-input-mock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-top: 8px;
    font-size: 12px;
    color: #555;
}

.chat-send-btn {
    width: 28px;
    height: 28px;
    background: #45C87A;
    border-radius: 50%;
}

.wf-label {
    font-size: 11px;
    color: #45C87A;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    margin-top: 8px;
}

.wf-label:first-child {
    margin-top: 0;
}

.workflow-node.wf-trigger {
    border-color: #45C87A;
    color: #45C87A;
}

.workflow-node.wf-action {
    border-color: #10b981;
    color: #10b981;
}

.wf-stats {
    display: flex;
    gap: 16px;
    margin-top: 0;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.wf-stat {
    font-size: 11px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wf-stat-num {
    font-size: 16px;
    font-weight: 800;
    color: #45C87A;
}

.social-platforms {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.platform-badge {
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 11px;
    color: #444;
    border: 1px solid #2a2a35;
}

.social-calendar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cal-post {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 12px;
    color: #444;
}

.cal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cal-post.scheduled .cal-dot {
    background: #10b981;
}

.cal-post.draft .cal-dot {
    background: #f59e0b;
}

.social-metrics {
    display: flex;
    gap: 12px;
}

.social-metric {
    flex: 1;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-num {
    font-size: 18px;
    font-weight: 800;
    color: #45C87A;
}

.metric-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
}

.monitor-header {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    padding: 8px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.15);
    margin-bottom: 8px;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    font-size: 14px;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 8px;
}

.status-value {
    margin-left: auto;
    color: #10b981;
    font-weight: 600;
    font-size: 13px;
}

.monitor-updates {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
}

.update-log {
    font-size: 11px;
    color: #555;
    padding: 4px 8px;
}

.update-log::before {
    content: '>';
    color: #45C87A;
    margin-right: 8px;
    font-weight: 700;
}

.brand-logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 8px;
}

.brand-name-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-section-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.brand-swatch {
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px !important;
    transition: transform 0.2s;
}

.brand-swatch:hover {
    transform: scale(1.15);
}

.brand-type-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 14px;
    background: #f5f5f5;
    border-radius: 8px;
}

.type-heading {
    font-size: 28px;
    font-weight: 800;
    color: #45C87A;
}

.type-body {
    font-size: 13px;
    color: #444;
}

.brand-assets {
    display: flex;
    gap: 8px;
}

.brand-asset {
    flex: 1;
    height: 50px;
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 6px;
    margin-top: 4px;
}

.web-footer-links {
    display: flex;
    gap: 8px;
}

.web-footer-links span {
    width: 28px;
    height: 6px;
    background: #2a2a35;
    border-radius: 3px;
}

.agent-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 4px;
}

.agent-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: blinkDot 2s ease infinite;
}

.agent-badge {
    margin-left: auto;
    background: rgba(16, 185, 129, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    letter-spacing: 0.5px;
}

.platform-badge.active-badge {
    background: rgba(69, 200, 122, 0.15);
    border-color: rgba(69, 200, 122, 0.3);
    color: #45C87A;
}

.brand-type-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.type-body-small {
    font-size: 10px;
    color: #555;
    letter-spacing: 1px;
}

.asset-label {
    font-size: 9px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-mockup-bar {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.tab-mockup-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tab-mockup-bar .dot.red { background: #ef4444; }
.tab-mockup-bar .dot.yellow { background: #f59e0b; }
.tab-mockup-bar .dot.green { background: #10b981; }

.tab-mockup-url-bar {
    background: #e4e4e4;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 10px;
    color: #777;
    margin-left: 10px;
    flex: 1;
    text-align: center;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tab-mockup-body {
    padding: 20px 24px;
    height: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.tab-mockup-body.mockup-map-pack,
.tab-mockup-body.mockup-gads {
    justify-content: flex-start;
}

.mockup-line {
    height: 10px;
    background: #f5f5f5;
    border-radius: 5px;
}

.mockup-line.w80 { width: 80%; }
.mockup-line.w70 { width: 70%; }
.mockup-line.w60 { width: 60%; }
.mockup-line.w50 { width: 50%; }
.mockup-line.w40 { width: 40%; }

.mockup-block-row {
    display: flex;
    gap: 12px;
    margin: 16px 0;
}

.mockup-block {
    flex: 1;
    height: 80px;
    background: #f5f5f5;
    border-radius: 8px;
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 160px;
    padding-bottom: 8px;
}

.chart-bar {
    flex: 1;
    background: #f5f5f5;
    border-radius: 4px 4px 0 0;
    transition: background 0.3s;
}

.chart-bar.highlight {
    background: #45C87A;
}

.mockup-chat {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    max-width: 80%;
    line-height: 1.4;
}

.chat-bubble.incoming {
    background: #f5f5f5;
    color: #444;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-bubble.outgoing {
    background: #45C87A;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.mockup-workflow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.workflow-node {
    padding: 12px 20px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #444;
    font-size: 13px;
    font-weight: 600;
}

.workflow-node.small {
    padding: 8px 14px;
    font-size: 12px;
}

.workflow-arrow {
    color: #45C87A;
    font-size: 20px;
    font-weight: 700;
}

.mockup-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-post {
    width: 100%;
    height: 120px;
    background: #f5f5f5;
    border-radius: 8px;
}

.social-stats {
    display: flex;
    gap: 24px;
    color: #444;
    font-size: 14px;
}

.mockup-status {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.green-dot {
    background: #10b981;
}

.mockup-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.brand-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #45C87A;
}

.brand-colors {
    display: flex;
    gap: 12px;
}

.brand-colors span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.ai-stats {
    background: transparent;
    padding: 100px 40px;
    text-align: center;
    color: #ffffff;
}

.ai-stats .container {
    max-width: 900px;
}

.ai-stats-number {
    font-size: 96px;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
}

.roll-digit {
    display: inline-block;
    height: 1.1em;
    overflow: hidden;
    position: relative;
}

.roll-digit-inner {
    display: flex;
    flex-direction: column;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.roll-digit-inner span {
    display: block;
    height: 1.1em;
    line-height: 1.1em;
    background: linear-gradient(180deg, #ffffff 40%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roll-static {
    display: inline-block;
    height: 1.1em;
    line-height: 1.1em;
    background: linear-gradient(180deg, #ffffff 40%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-stats-subtitle {
    font-size: 18px;
    color: #e07840;
    margin-bottom: 32px;
    font-weight: 500;
}

.ai-stats-chart-full {
    background: #111113;
    border-radius: 16px 16px 0 0;
    padding: 40px 40px 20px;
    margin-bottom: 2px;
}

.stats-chart-svg-full {
    width: 100%;
    display: block;
}

.chart-line {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: drawLine 2.5s ease-out forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.chart-dot {
    opacity: 0;
    animation: dotAppear 0.3s ease-out 1.8s forwards;
}

@keyframes dotAppear {
    to { opacity: 1; }
}

.ai-stats-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.ai-stats-feature {
    background: #111113;
    padding: 36px 30px;
    text-align: left;
}

.ai-stats-feature:nth-child(3) {
    border-radius: 0 0 0 16px;
}

.ai-stats-feature:nth-child(4) {
    border-radius: 0 0 16px 0;
}

.ai-stats-icon {
    display: block;
    font-size: 20px;
    margin-bottom: 16px;
    color: #888;
}

.ai-stats-feature p {
    font-size: 16px;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .ai-stats {
        padding: 60px 20px;
    }
    .ai-stats-number {
        font-size: 56px;
        letter-spacing: -2px;
        gap: 0;
    }
    .ai-stats-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .ai-stats-chart-full {
        padding: 24px 16px 12px;
    }
    .ai-stats-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }
    .ai-stats-feature {
        padding: 20px 16px;
        border-radius: 12px;
    }
    .ai-stats-feature:nth-child(1),
    .ai-stats-feature:nth-child(2),
    .ai-stats-feature:nth-child(3),
    .ai-stats-feature:nth-child(4) {
        border-radius: 12px;
    }
    .ai-stats-feature h4 {
        font-size: 13px;
    }
    .ai-stats-feature p {
        font-size: 13px;
        line-height: 1.4;
    }
}

.custom-software {
    padding: 120px 40px;
    background: transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.custom-software .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.label-icon {
    width: 14px;
    height: 10px;
    background: #45C87A;
    border-radius: 2px;
    display: inline-block;
}

.section-heading-lg {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 20px;
    text-align: center;
}

.section-subtitle-lg {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 auto 16px;
    max-width: 600px;
    text-align: center;
}

.custom-software .section-heading-lg { color: #ffffff; }
.custom-software .section-subtitle-lg { color: rgba(255,255,255,0.7); }
.custom-software .section-label { color: rgba(255,255,255,0.5); }

.software-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    overflow: hidden;
}

.software-card {
    padding: 40px 36px;
    background: #252527;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-right: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s ease;
}

.software-card:nth-child(3n) {
    border-right: none;
}

.software-card:nth-child(n+4) {
    border-bottom: none;
}

.software-card:hover {
    background: #2e2e30;
}

.software-card-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.software-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
}

.software-card p {
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

.software-cta-text {
    margin-top: 40px;
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    font-style: italic;
    text-align: center;
}

.social-media-section {
    padding: 100px 40px 60px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-media-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-media-section .section-heading-lg {
    color: #ffffff;
}

.social-media-section .section-subtitle-lg {
    color: rgba(255,255,255,0.7);
    max-width: 860px;
    font-size: 18px;
}

.social-media-section .section-label {
    color: rgba(255,255,255,0.5);
}

.social-platforms-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 50px auto 0;
    width: 100%;
}

.social-platform-card {
    background: #252527;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.social-platform-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.social-platform-card:hover {
    transform: translateY(-4px);
    border-color: #45C87A;
    box-shadow: 0 12px 40px rgba(69, 200, 122, 0.12);
}

.social-platform-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.social-platform-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.social-platform-icon svg {
    width: 32px;
    height: 32px;
}

.social-platform-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.social-platform-card p {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    margin: 0;
}

.social-card-bottom {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-mini-chart {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding: 0 4px;
    margin-top: 0;
}

.social-chart-bar {
    flex: 1;
    background: #45C87A;
    border-radius: 3px 3px 0 0;
    height: var(--bar-h);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 1.2s ease;
    min-width: 0;
}

.social-chart-bar:nth-child(odd) {
    background: #f4a261;
}

.social-platform-card.visible .social-chart-bar {
    transform: scaleY(1);
}

.social-stat-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.social-stat-fill {
    height: 100%;
    border-radius: 3px;
    width: 0;
    background: #45C87A;
    transition: width 1.5s ease;
}

.social-platform-card.visible .social-stat-fill {
    width: var(--fill-width);
}

.social-stat-label {
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
}

.social-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    padding: 40px 0;
}

.social-result-card {
    text-align: center;
    padding: 20px 12px;
}

.social-result-static {
    font-size: 30px;
    font-weight: 800;
    color: #45C87A;
    line-height: 1;
    display: block;
}

.social-result-suffix {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 4px;
    margin-bottom: 4px;
}

.social-result-card p {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
    font-weight: 400;
    line-height: 1.4;
}

.social-process {
    margin-top: 60px;
}

.social-process-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 40px;
}

.social-process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.social-process-step {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: 0 16px;
}

.social-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.social-process-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.social-process-step p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

.social-process-connector {
    width: 40px;
    height: 2px;
    background: #e5e7eb;
    margin-top: 22px;
    flex-shrink: 0;
}

.social-bottom-cta {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.social-bottom-cta p {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    line-height: 1.6;
}

.how-it-works {
    padding: 120px 40px;
    background: transparent;
    position: relative;
    z-index: 11;
}

.process-gears-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.process-gear {
    position: absolute;
    color: #ffffff;
    opacity: 0.08;
    will-change: transform;
    transform-origin: center;
}

.process-gear-lg {
    width: 420px;
    height: 420px;
    left: -140px;
    bottom: -160px;
}

.process-gear-md {
    width: 260px;
    height: 260px;
    right: -70px;
    top: 30px;
}

.process-gear-sm {
    width: 170px;
    height: 170px;
    right: 170px;
    bottom: -80px;
    opacity: 0.05;
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

.how-it-works .section-label {
    color: rgba(255,255,255,0.5);
}

.how-it-works .section-heading-lg {
    color: #ffffff;
}

.how-it-works .section-subtitle-lg {
    color: rgba(255,255,255,0.6);
}

.how-it-works .software-cta-text {
    color: rgba(255,255,255,0.4);
    margin-top: 48px;
}

/* ══════════════════════════════════════════════════════════════
   LINE BORDER ANIMATION — saved for reuse
   Mouse-follow rainbow gradient reveal on a multi-card grid border.
   Requires: .process-border-wrap > .process-grid > .process-card (×3)
   JS counterpart: attachGridBorder() in script.js
   ══════════════════════════════════════════════════════════════ */
.process-border-wrap {
    position: relative;
    max-width: 1100px;
    margin: 56px auto 0;
    border-radius: 20px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1100px;
    margin: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
}

.process-card {
    padding: 52px 44px;
    background: #08080e;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    transition: background 0.25s ease;
}

.process-card:hover { background: #08080e; }

/* Inner corner radius matches SVG Y-fork arm spread (fr=28) so tile edges follow the animation curves */
.process-card:nth-child(1) { border-radius: 0 28px 28px 0; }
.process-card:nth-child(2) { border-radius: 28px; }
.process-card:nth-child(3) { border-radius: 28px 0 0 28px; }

.process-num {
    font-size: 56px;
    font-weight: 900;
    color: #45C87A;
    line-height: 1;
    letter-spacing: -2px;
    display: block;
}

.process-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.process-card p {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
    flex-grow: 1;
}

.process-checklist {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 16px;
}

.process-checklist li {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 9px;
}

.process-checklist li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #45C87A;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.8;
}

.pricing {
    padding: 80px 0;
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 12px 40px rgba(69, 200, 122, 0.15);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.plan-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.plan-price {
    margin-bottom: 0;
}

.price {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--medium-gray);
    font-weight: 500;
}

.setup-fee {
    font-size: 13px;
    color: var(--medium-gray);
    margin: 0 0 16px;
    padding: 0;
    font-weight: 500;
    line-height: 1.4;
}

.plan-description {
    color: var(--dark-gray);
    margin-top: 0;
    margin-bottom: 20px;
    min-height: 48px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    flex-grow: 1;
}

.plan-features li {
    padding: 8px 0;
    color: var(--dark-gray);
    border-bottom: 1px solid #f3f4f6;
}

.plan-features li:last-child {
    border-bottom: none;
}

.testimonials {
    padding: 80px 0;
    background: var(--bg-dark-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    position: relative;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.quote-icon {
    font-size: 48px;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--dark-gray);
    font-weight: 700;
}

.testimonial-author span {
    color: var(--medium-gray);
    font-size: 14px;
}

.voicement-section {
    padding: 120px 40px;
    background: transparent;
    text-align: center;
}

.voicement-header {
    max-width: 800px;
    margin: 0 auto 0;
}

.voicement-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 8px 20px 8px 8px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
}

.voicement-badge-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: contain;
}

.voicement-gradient-text {
    background: linear-gradient(90deg, #e84393, #a855f7, #45C87A, #e84393); background-size: 200% auto; animation: voicementGradient 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.voicement-cta-btn {
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 16px 40px;
    background: linear-gradient(90deg, #e84393, #a855f7, #45C87A, #e84393); background-size: 200% auto; animation: voicementGradient 3s linear infinite;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.voicement-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.4);
}

.voicement-highlights {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 60px;
}

.voicement-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.voicement-stats-bar {
    max-width: 600px;
    margin: 0 auto 60px;
}

.voicement-stat-highlight {
    background: #FFFEFB;
    border: 1px solid #e5e2db;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.voicement-stat-number {
    font-size: clamp(56px, 6vw, 80px);
    font-weight: 800;
    color: #45C87A;
    display: block;
    line-height: 1;
    margin-bottom: 16px;
}

.voicement-stat-highlight p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.voicement-stat-emphasis {
    font-weight: 700;
    color: #1a1a1a !important;
    margin-top: 8px !important;
}

.voicement-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.voicement-feature-card {
    background: #FFFEFB;
    border: 1px solid #e5e2db;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.voicement-feature-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.voicement-feature-icon {
    width: 44px;
    height: 44px;
    background: #FFF3ED;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.voicement-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.voicement-feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .voicement-section {
        padding: 60px 20px;
    }

    .voicement-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .voicement-feature-card {
        padding: 16px 12px;
    }

    .voicement-feature-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 10px;
    }

    .voicement-feature-card h3 {
        font-size: 13px;
    }

    .voicement-feature-card p {
        font-size: 11px;
    }

    .voicement-highlights {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .voicement-highlight-item {
        font-size: 11px;
    }

    .voicement-stat-highlight {
        padding: 20px 16px;
    }

    .voicement-stat-number {
        font-size: 48px;
    }

    .voicement-stat-highlight p {
        font-size: 13px;
    }

    .voicement-badge {
        font-size: 12px;
        padding: 6px 14px 6px 6px;
    }

    .voicement-cta-btn {
        padding: 12px 28px;
        font-size: 14px;
        margin-top: 24px;
        margin-bottom: 24px;
    }
}

.faq {
    padding: 120px 40px;
    background: transparent;
}

.faq-heading {
    text-align: center;
    color: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    background: #252527;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    -webkit-appearance: none;
}

.faq-question span:first-child {
    color: #ffffff;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    padding: 0 36px;
}

.nav-links a.active {
    color: #45C87A;
}

.contact {
    padding: 120px 40px;
    background: transparent;
    position: relative;
}
.contact .section-heading-lg { color: #ffffff; }
.contact .section-subtitle-lg { color: rgba(255,255,255,0.7); }
.contact .section-label { color: rgba(255,255,255,0.5); }

.contact .section-heading-lg {
    margin-bottom: 48px;
}

.contact-main-heading {
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.contact-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    background: #252527;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 48px 48px;
    position: relative;
    z-index: 1;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group.full-width {
    grid-column: 1 / -1;
    position: relative;
}

.char-counter {
    font-size: 13px;
    color: #9ca3af;
    text-align: right;
    margin-top: 4px;
    font-weight: 500;
}

.form-group label {
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

.form-group label .required {
    color: #ef4444;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: rgba(255,255,255,0.07);
    color: #ffffff;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-group input.pulse-animate,
.form-group textarea.pulse-animate {
    animation: inputPulse 1s ease-out forwards;
}

@keyframes inputPulse {
    0% {
        transform: scale(1);
        box-shadow: none;
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 15px rgba(69, 200, 122, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: none;
    }
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(69, 200, 122, 0.1);
}

.contact-form button {
    grid-column: 1 / -1;
    margin-top: 0;
}

.contact-alternative {
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
}

.contact-alternative a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-alternative a:hover {
    text-decoration: underline;
}

.verified-section {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 24px 0 16px;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-carousel-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: carouselScroll 75s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes carouselScroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

.logo-carousel-item {
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 91px;
    margin-right: 86px;
}

.logo-carousel-item:hover {
    opacity: 0.8;
}

.logo-carousel-item svg {
    width: 28px;
    height: 28px;
}

.logo-carousel-item.logo-icon-size svg {
    width: 36px;
    height: 36px;
}

.logo-carousel-item img {
    height: 43px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transform: translateZ(0);
}

img[src*="hectors-magic-carpet"] {
    filter: grayscale(1) invert(1) brightness(1.4) contrast(0.85) !important;
}

.logo-carousel-item.logo-icon-size img {
    height: 55px;
}

img[src*="evering"] {
    height: 72px !important;
}

.logo-label {
    font-size: 13px;
    color: #9ca3af;
    white-space: nowrap;
    font-weight: 500;
}

.voicement-carousel-item {
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
}

.voicement-carousel-text {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.carousel-heading {
    text-align: center;
    font-size: 23px;
    color: #ffffff;
    margin-bottom: 4px;
    margin-top: auto;
    padding-top: 50px;
    font-weight: 700;
    position: relative;
    width: 100%;
}

.carousel-subheading {
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
    font-weight: 400;
    margin: 0;
}

/* ── NEWSLETTER / TIPS SECTION ── */
.tips-section {
    background: #f5f5f5;
    padding: 80px 0 60px;
}
.tips-heading {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #111111;
    text-align: center;
    margin: 0 0 12px;
    line-height: 1.15;
}
.tips-subtitle {
    font-size: 15px;
    color: #555;
    text-align: center;
    max-width: 460px;
    margin: 0 auto 48px;
    line-height: 1.6;
}
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.tips-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.tips-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #ececec;
}
.tips-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tips-card-img-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #fdf4ff 0%, #ffe8f0 50%, #fff3e0 100%);
}
.tips-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 20px 20px 8px;
    line-height: 1.3;
}
.tips-card-body {
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
    margin: 0 20px 22px;
}
.tips-signup {
    text-align: center;
}
.tips-signup-label {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin-bottom: 14px;
}
.tips-signup-form {
    display: flex;
    gap: 0;
    max-width: 440px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.tips-signup-input {
    flex: 1;
    border: none;
    padding: 14px 18px;
    font-size: 14px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    outline: none;
    background: #fff;
    color: #111;
}
.tips-signup-input::placeholder { color: #aaa; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important; }
.tips-signup-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.18s;
    white-space: nowrap;
}
.tips-signup-btn:hover { background: #E8590C; }
.tips-signup-success {
    margin-top: 12px;
    font-size: 14px;
    color: #22c55e;
    font-weight: 600;
}
@media (max-width: 768px) {
    .tips-grid { grid-template-columns: 1fr; }
    .tips-signup-form { flex-direction: column; border-radius: 8px; overflow: visible; box-shadow: none; }
    .tips-signup-input { border-radius: 8px; border: 1px solid #ddd; margin-bottom: 8px; }
    .tips-signup-btn { border-radius: 8px; padding: 14px; }
}

.footer {
    background: #f0ff6a;
    padding: 0 0 0;
    color: #d31800;
}

/* ── Footer why strip ── */
.stats-strip {
    padding: 56px 0;
    margin: 26px;
}
.footer-why-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 24px;
    text-align: center;
}
.footer-why-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.footer-why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
}
.footer-why-num {
    font-size: 36px;
    font-weight: 800;
    color: #45C87A;
    line-height: 1;
    margin-bottom: 8px;
}
.footer-why-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.45;
    max-width: 160px;
}

/* ── Stats sources button ── */
.stats-sources-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
.stats-sources-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.35);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.stats-sources-btn:hover {
    color: rgba(255,255,255,0.65);
    border-color: rgba(255,255,255,0.35);
}
.stats-sources-popover {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    max-width: 90vw;
    background: #242428;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    z-index: 100;
}
.stats-sources-popover ul {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.stats-sources-popover li {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.55;
}
.stats-sources-popover li strong {
    color: #45C87A;
}
.stats-sources-popover li em {
    font-style: italic;
}

/* ── Footer main grid ── */
.footer-main {
    padding: 36px 0 28px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
    gap: 24px 32px;
    align-items: start;
    padding: 36px 0 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.footer-logo {
    display: flex !important;
    align-items: center;
    width: fit-content;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo .logo-main {
    color: #ffffff !important;
}

.footer-logo .logo-tld {
    color: rgba(255,255,255,0.5) !important;
}

.footer-logo .logo-icon {
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.7;
    max-width: 320px;
}

.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #000000;
}

.footer-trust-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-about {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.15);
}

.footer-about-text {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.6;
    max-width: 300px;
    font-style: italic;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
}

.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-contact-line:hover {
    opacity: 0.7;
}

.footer-links-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    color: rgba(0, 0, 0, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links-col ul li a:hover {
    color: #000000;
}

.footer-cta-text {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-cta-btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

.footer-cta-btn:hover {
    background: #222222 !important;
    border-color: #222222 !important;
}

/* ─── GEORGIA HUB PAGE ──────────────────────────────────────────────────── */
.ga-hub-hero {
    padding: 140px 20px 80px;
    text-align: center;
}

.ga-hub-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #45C87A;
    margin-bottom: 16px;
}

.ga-hub-heading,
.ga-hub-headline {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.ga-hub-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.65);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
    font-weight: 500;
}

.ga-hub-cta {
    display: inline-block;
    background: #45C87A;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: background 0.2s, transform 0.15s;
}

.ga-hub-cta:hover {
    background: #d44e0a;
    transform: translateY(-2px);
}

.ga-hub-cities {
    padding: 60px 20px 80px;
}

.ga-hub-cities-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-align: center;
    margin-bottom: 32px;
}

.ga-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.ga-city-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #252527;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 18px 16px;
    text-decoration: none;
    transition: border-color 0.18s, background 0.18s;
}

.ga-city-card:hover {
    border-color: #45C87A;
    background: rgba(69,200,122,0.06);
}

.ga-city-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.ga-city-county {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.ga-hub-why {
    padding: 80px 20px;
}

.ga-hub-why-heading {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    color: #fff;
    text-align: center;
    letter-spacing: -0.5px;
    margin-bottom: 48px;
}

.ga-hub-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.ga-hub-why-item {
    background: #252527;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 28px 24px;
}

.ga-hub-why-title {
    font-size: 16px;
    font-weight: 800;
    color: #45C87A;
    margin-bottom: 10px;
}

.ga-hub-why-text,
.ga-hub-why-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    font-weight: 500;
}

@media (max-width: 768px) {
    .ga-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ga-hub-why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ga-hub-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ─── CITY SEO SECTION ──────────────────────────────────────────────────── */
.city-seo-section {
    background: transparent;
    padding: 90px 20px;
}

.city-seo-heading {
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
    text-align: center;
}

.city-seo-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.city-seo-paras p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.75;
    margin-bottom: 20px;
}

.city-seo-paras p:last-child {
    margin-bottom: 0;
}

.city-seo-faq-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}

.city-seo-faq-item {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #222;
}

.city-seo-faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.city-seo-faq-q {
    font-size: 15px;
    font-weight: 700;
    color: #45C87A;
    margin-bottom: 8px;
    line-height: 1.4;
}

.city-seo-faq-a {
    font-size: 14px;
    color: #fff;
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 768px) {
    .city-seo-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .city-seo-section {
        padding: 60px 20px;
    }
}

.footer-nap {
    font-size: 11px;
    color: rgba(0,0,0,0.75);
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.5;
    border: 1px solid #000000;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
}

.service-areas-section {
    background: transparent;
    padding: 80px 20px;
}

.service-areas-heading {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-areas-copy {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.service-areas-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #45C87A;
    margin-bottom: 24px;
}

.state-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
}

.state-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #252527;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    padding: 36px 32px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.18s;
    cursor: pointer;
}

.state-card:hover {
    border-color: #45C87A;
    background: rgba(69,200,122,0.07);
    transform: translateY(-3px);
}

.state-card-flag {
    font-size: 44px;
    line-height: 1;
}

.state-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.state-card-name {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.4px;
    margin: 0;
}

.state-card-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

.state-card-count {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #45C87A;
    margin: 4px 0 0 0;
}

.state-card-btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #45C87A;
    letter-spacing: 0.2px;
    transition: letter-spacing 0.15s;
}

.state-card:hover .state-card-btn {
    letter-spacing: 0.6px;
}

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

.footer-logos {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 32px 0 28px;
}
.footer-logos-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.35);
    margin: 0 0 20px;
    text-align: center;
}
.footer-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px 40px;
}
.footer-logos-row img {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity 0.2s, filter 0.2s;
}
.footer-logos-row img:hover {
    opacity: 0.85;
    filter: grayscale(0%);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(0, 0, 0, 0.75);
    font-size: 13px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #000000;
}

.footer-social-link {
    display: flex;
    align-items: center;
    color: #000000;
}

.footer-tagline {
    color: #000000;
}

.success-message {
    display: none;
    background: #f0fdf4;
    border: 2px solid #10b981;
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    margin-top: 32px;
}

.success-message.show {
    display: block;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    .voicement-header {
    max-width: 800px;
    margin: 0 auto 0;
}

.voicement-header .section-subtitle-lg {
    margin-bottom: 24px;
}

.hidden_class_to_not_match_again
}

.success-content h3 {
    color: var(--dark-gray);
    font-size: 24px;
    margin-bottom: 8px;
}

.success-content p {
    color: var(--medium-gray);
}

.tagline-bar {
    background: var(--white);
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
}

.tagline-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tagline-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
}

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFEFB;
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    animation: slideUp 0.3s ease;
    border-top: 1px solid #e5e7eb;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.sticky-cta .btn {
    width: 100%;
    display: block;
}

@media (max-width: 1024px) {
    .hero {
        padding: 140px 30px 0;
    }

    .hero-subheadline {
        font-size: 15px;
    }

    .mock-website {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 0;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .benefits {
        padding: 60px 20px;
    }

    .services-tabs,
    .how-it-works,
    .faq,
    .contact {
        padding: 70px 20px;
    }

    .services-tab-nav {
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: nowrap;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .services-tab-nav::-webkit-scrollbar {
        display: none;
    }

    .services-tab-btn {
        padding: 10px 16px;
        font-size: 13px;
        flex-shrink: 0;
    }

    .tab-panel-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tab-panel-text h3 {
        font-size: 24px;
        line-height: 1.25;
    }

    .tab-panel-text p {
        font-size: 15px;
        font-weight: 600;
        color: rgba(255,255,255,0.9);
        margin-bottom: 16px;
    }

    .tab-features li {
        font-size: 14px;
        font-weight: 600;
        color: rgba(255,255,255,0.92);
        padding-left: 22px;
        gap: 8px;
    }

    .tab-features li::before {
        font-size: 14px;
    }

    .tab-panel-text {
        order: 1;
    }

    .tab-panel-visual {
        order: 2;
    }

    .tab-visual-mockup {
        border-radius: 12px;
        max-width: 100%;
        width: 100%;
        height: auto;
        margin: 0 auto;
        border: 1px solid #e0e0e0;
        position: relative;
        overflow: hidden;
    }

    .tab-visual-mockup::before {
        display: none;
    }

    .tab-mockup-bar {
        display: flex;
    }

    .tab-mockup-url-bar {
        font-size: 9px;
        padding: 3px 10px;
    }

    .tab-mockup-body {
        height: auto;
        min-height: unset;
        padding: 14px 16px;
        overflow: visible;
    }

    .mockup-app {
        height: auto;
        min-height: unset;
        padding: 14px 12px;
        gap: 8px;
        overflow: visible;
    }

    .mock-gads-metrics {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        padding: 8px 10px;
    }

    .mock-gads-metric-val {
        font-size: 13px;
    }

    .mock-gads-metric-lbl {
        font-size: 7px;
    }

    .mock-gads-table-header,
    .mock-gads-table-row {
        font-size: 9px;
    }

    .mock-gads-topbar {
        padding: 6px 10px;
    }

    .mock-gads-logo span {
        font-size: 10px;
    }

    .mock-google-header {
        padding: 2px 0 0;
    }

    .mock-gmap-biz {
        padding: 4px 6px;
        gap: 6px;
    }

    .mock-gmap-name {
        font-size: 10px;
    }

    .mock-gmap-stars {
        font-size: 9px;
    }

    .mock-gmap-reviews,
    .mock-gmap-addr {
        font-size: 9px;
    }

    .mock-gmap-rank {
        font-size: 10px;
        min-width: 16px;
    }

    .voicement-mockup {
        border-color: rgba(69, 200, 122, 0.4);
    }

    .voicement-phone-body {
        padding-top: 32px !important;
    }

    .voicement-phone-header {
        padding: 4px 6px;
        gap: 4px;
    }

    .voicement-phone-avatar {
        width: 20px;
        height: 20px;
    }

    .voicement-phone-avatar svg {
        width: 10px;
        height: 10px;
    }

    .voicement-phone-label {
        font-size: 9px;
    }

    .voicement-phone-status {
        font-size: 8px;
    }

    .voicement-phone-timer {
        font-size: 9px;
    }

    .voicement-waveform {
        height: 18px;
        gap: 1px;
    }

    .wave-bar {
        width: 2px;
    }

    .voicement-transcript {
        padding: 4px;
        gap: 3px;
    }

    .voicement-transcript-label {
        font-size: 7px;
    }

    .voicement-transcript-line {
        font-size: 8px;
        padding: 3px 5px;
    }

    .transcript-tag {
        font-size: 6px;
        padding: 1px 3px;
    }

    .agents-cta-desktop {
        display: none !important;
    }

    .agents-cta-mobile {
        display: flex !important;
    }

    .agents-cta-mobile .btn {
        width: auto;
        padding: 12px 20px;
        font-size: 13px;
        white-space: nowrap;
    }

    .mock-wf-first-group {
        display: none;
    }

    .mock-wf-row {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .mock-wf-arrow {
        display: none;
    }

    .mock-wf-node {
        font-size: 9px;
        padding: 4px 6px;
        text-align: center;
    }

    .mock-wf-label {
        font-size: 8px;
        margin-top: 4px;
    }

    .mock-wf-stats {
        gap: 1px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 2px 0;
    }

    .wf-stat {
        font-size: 5px;
        padding: 1px 3px;
        line-height: 1.1;
    }

    .wf-stat-num {
        font-size: 6px;
    }

    .mock-platforms {
        gap: 6px;
    }

    .mock-platform-icon {
        width: 24px;
        height: 24px;
    }

    .mock-cal-post {
        font-size: 8px;
        padding: 3px 6px;
        gap: 4px;
    }

    .mock-cal-dot {
        width: 5px;
        height: 5px;
    }

    .mock-metrics {
        gap: 4px;
    }

    .mock-metric {
        padding: 4px;
    }

    .metric-num {
        font-size: 11px;
    }

    .metric-label {
        font-size: 7px;
    }

    .mock-monitor-header {
        font-size: 9px;
        padding: 6px;
    }

    .mock-status-row {
        font-size: 9px;
        padding: 4px 6px;
        gap: 4px;
    }

    .mock-status-value {
        font-size: 9px;
    }

    .mock-status-dot {
        width: 5px;
        height: 5px;
    }

    .mock-brand-logo {
        gap: 8px;
        padding: 8px;
    }

    .mock-brand-circle {
        width: 28px;
        height: 28px;
    }

    .brand-name-lines div {
        height: 6px !important;
    }

    .mock-brand-section {
        padding: 6px;
    }

    .mock-brand-label {
        font-size: 7px;
    }

    .mock-brand-colors {
        gap: 4px;
    }

    .mock-brand-swatch {
        width: 16px !important;
        height: 16px !important;
        border-radius: 4px;
    }

    .mock-brand-type {
        padding: 6px;
        gap: 6px;
    }

    .type-heading {
        font-size: 16px;
    }

    .type-body {
        font-size: 8px;
    }

    .mock-brand-type div div {
        font-size: 7px !important;
    }

    .mock-brand-assets {
        gap: 4px;
    }

    .mock-brand-asset {
        height: 22px;
        border-radius: 4px;
    }

    .mock-brand-asset span {
        font-size: 7px !important;
    }

    .mock-stat-value {
        font-size: 12px;
    }

    .mock-stat-label {
        font-size: 8px;
    }

    .mock-stats-row {
        gap: 4px;
    }

    .mock-stat {
        padding: 6px 4px;
        gap: 2px;
        border-radius: 6px;
    }

    .mock-chart {
        height: 50px;
        padding: 4px 6px;
        gap: 4px;
    }

    .mock-keyword,
    .seo-keyword {
        padding: 4px 8px;
        font-size: 10px;
    }

    .mock-kw-rank,
    .kw-rank {
        font-size: 9px;
        padding: 1px 5px;
    }

    .mock-agent-status,
    .agent-status {
        font-size: 10px;
        padding: 5px 8px;
    }

    .mock-agent-badge,
    .agent-badge {
        font-size: 8px;
    }

    .mock-chat-bubble {
        padding: 6px 8px;
        font-size: 10px;
    }

    .mock-chat-input,
    .chat-input-mock {
        padding: 6px 8px;
        font-size: 10px;
    }

    .chat-send-btn {
        width: 20px;
        height: 20px;
    }

    .voicement-phone-header {
        padding: 6px 8px;
        gap: 6px;
    }

    .voicement-phone-avatar {
        width: 24px;
        height: 24px;
    }

    .voicement-phone-avatar svg {
        width: 12px;
        height: 12px;
    }

    .voicement-phone-label {
        font-size: 10px;
    }

    .voicement-phone-status {
        font-size: 9px;
    }

    .voicement-phone-timer {
        font-size: 11px;
    }

    .voicement-waveform {
        height: 24px;
        gap: 2px;
    }

    .wave-bar {
        width: 3px;
    }

    .voicement-transcript {
        padding: 6px;
        gap: 4px;
    }

    .voicement-transcript-label {
        font-size: 8px;
    }

    .voicement-transcript-line {
        font-size: 9px;
        padding: 4px 6px;
    }

    .transcript-tag {
        font-size: 7px;
        padding: 1px 4px;
    }

    .voicement-action-chip {
        padding: 3px 8px;
        font-size: 9px;
    }

    .action-icon {
        font-size: 10px;
    }

    .tab-mockup-bar {
        padding: 6px 10px;
        gap: 4px;
    }

    .tab-mockup-bar .dot {
        width: 7px;
        height: 7px;
    }

    .tab-mockup-body {
        padding: 12px;
        min-height: 200px;
        gap: 8px;
    }

    .mockup-line {
        height: 6px;
    }

    .mockup-block-row {
        gap: 6px;
        margin: 8px 0;
    }

    .mockup-block {
        height: 50px;
    }

    .mockup-chart {
        height: 80px;
        gap: 6px;
    }

    .chat-bubble {
        padding: 6px 10px;
        font-size: 10px;
    }

    .workflow-node {
        padding: 6px 10px;
        font-size: 10px;
    }

    .workflow-arrow {
        font-size: 14px;
    }

    .social-post {
        height: 60px;
    }

    .social-stats {
        font-size: 11px;
        gap: 12px;
    }

    .mock-wf-label,
    .wf-label {
        font-size: 9px;
    }

    .mock-wf-stats,
    .wf-stats {
        gap: 8px;
    }

    .wf-stat {
        font-size: 9px;
    }

    .wf-stat-num {
        font-size: 12px;
    }

    .platform-badge {
        padding: 3px 8px;
        font-size: 9px;
    }

    .social-calendar .cal-post {
        padding: 5px 8px;
        font-size: 10px;
        gap: 6px;
    }

    .social-metric {
        padding: 6px;
    }

    .metric-num {
        font-size: 14px;
    }

    .metric-label {
        font-size: 8px;
    }

    .monitor-header {
        font-size: 11px;
        padding: 5px;
    }

    .status-row {
        font-size: 11px;
        padding: 5px 8px;
        gap: 6px;
    }

    .status-value {
        font-size: 10px;
    }

    .update-log {
        font-size: 9px;
    }

    .brand-logo-area {
        padding: 8px;
        gap: 10px;
    }

    .mock-brand-circle {
        width: 32px;
        height: 32px;
    }

    .brand-section-label,
    .mock-brand-label {
        font-size: 8px;
    }

    .brand-swatch,
    .mock-brand-swatch {
        width: 20px !important;
        height: 20px !important;
    }

    .brand-type-preview,
    .mock-brand-type {
        padding: 6px 8px;
        gap: 8px;
    }

    .type-heading {
        font-size: 18px;
    }

    .type-body {
        font-size: 10px;
    }

    .brand-asset,
    .mock-brand-asset {
        height: 30px;
    }

    .asset-label {
        font-size: 7px;
    }

    .code-editor-sidebar {
        padding: 4px 8px;
    }

    .code-file {
        font-size: 8px;
        padding: 2px 6px;
    }

    .code-line {
        padding: 0 8px;
        font-size: 9px;
    }

    .code-ln {
        width: 16px;
        font-size: 7px;
        margin-right: 6px;
    }

    .code-editor-statusbar {
        padding: 3px 8px;
        font-size: 7px;
    }

    .mockup-url {
        font-size: 9px;
        padding: 2px 8px;
    }

    .seo-stats-row {
        gap: 6px;
    }

    .seo-stat {
        padding: 8px 6px;
        gap: 2px;
    }

    .seo-stat-value {
        font-size: 14px;
    }

    .seo-stat-label {
        font-size: 8px;
    }

    .seo-keywords {
        gap: 4px;
    }

    .voicement-actions {
        flex-wrap: wrap;
    }

    .mockup-workflow {
        flex-wrap: wrap;
        gap: 8px;
    }

    .seo-stats-row,
    .mock-stats-row {
        flex-wrap: wrap;
    }

    .social-metrics,
    .mock-metrics {
        flex-wrap: wrap;
    }

    .brand-type-preview {
        flex-wrap: wrap;
        gap: 8px;
    }

    .type-heading {
        font-size: 22px;
    }

    .voicement-phone-header {
        flex-wrap: wrap;
        gap: 6px;
    }

    .voicement-phone-timer {
        font-size: 14px;
    }

    .demo-modal-url-bar {
        min-width: auto;
    }

    .logo {
        white-space: nowrap;
    }

    .logo-main {
        font-size: 16px;
    }

    .logo-tagline {
        display: none;
    }

    .logo-sub {
        font-size: clamp(12px, 4vw, 20px);
    }

    .hero-container {
        text-align: center;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .hero-cta-container {
        justify-content: center;
        flex-wrap: wrap;
    }

    .logo-carousel {
        padding: 16px 0;
        width: 100%;
        max-width: 100vw;
    }

    .logo-carousel-track {
        gap: 0;
    }

    .logo-carousel-item {
        margin-right: 48px;
    }

    .logo-carousel-item svg {
        width: 24px;
        height: 24px;
    }

    .logo-carousel-item img {
        height: 22px;
        max-width: 110px;
    }

    img[src*="evering"] {
        height: 52px !important;
    }

    .custom-software,
    .how-it-works,
    .faq,
    .contact {
        padding: 60px 20px;
    }

    .section-heading-lg {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .faq-heading {
        font-size: 26px;
        letter-spacing: -0.5px;
    }

    .section-subtitle-lg {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .software-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .software-card {
        padding: 20px 16px;
        gap: 10px;
    }

    .software-card h3 {
        font-size: 14px;
    }

    .software-card p {
        font-size: 12px;
    }

    .software-card-icon {
        width: 24px;
        height: 24px;
    }

    .software-card-icon svg {
        width: 18px;
        height: 18px;
    }

    .social-media-section {
        padding: 60px 20px;
    }

    .social-platforms-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 32px;
    }

    .social-platform-card {
        padding: 24px 16px;
        gap: 10px;
    }

    .social-platform-icon {
        width: 44px;
        height: 44px;
    }

    .social-platform-icon img,
    .social-platform-icon svg {
        width: 28px;
        height: 28px;
    }

    .social-platform-card h3 {
        font-size: 16px;
    }

    .social-platform-card p {
        font-size: 12px;
    }

    .social-stat-label {
        font-size: 10px;
    }

    .social-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 40px;
        padding: 30px 0;
    }

    .social-result-static {
        font-size: 30px;
    }

    .social-result-suffix {
        font-size: 13px;
    }

    .social-process-title {
        font-size: 22px;
    }

    .social-process-steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .social-process-step {
        max-width: 100%;
    }

    .social-process-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }

    .social-bottom-cta p {
        font-size: 14px;
    }

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

    .process-card {
        padding: 36px 32px;
        gap: 14px;
    }
    .process-card:nth-child(1),
    .process-card:nth-child(2),
    .process-card:nth-child(3) { border-radius: 0; }
    .process-border-wrap svg { display: none; }

    .process-num {
        font-size: 44px;
    }

    .process-card h3 {
        font-size: 19px;
    }

    .process-card p {
        font-size: 14px;
    }

    .process-checklist li {
        font-size: 13px;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 24px;
    }

    .contact-content {
        padding: 28px 24px;
    }

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

    .footer {
        padding: 32px 0 0;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 0 20px 24px;
    }

    .footer-why-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }
    .footer-why-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        padding-bottom: 16px;
    }
    .footer-why-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.07);
    }
    .footer-why-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .footer-why-num {
        font-size: 28px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 0 0 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: left;
        max-width: 100%;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-logo-link {
        justify-content: center;
    }

    .footer-description {
        max-width: 100%;
        text-align: center;
        font-size: 13px;
    }

    .footer-links-col {
        text-align: left;
    }

    .footer-links-col h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-links-col ul li a {
        font-size: 13px;
    }

    .footer-links-col ul li {
        margin-bottom: 6px;
    }

    .footer-links-col:last-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-cta-text {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
        gap: 8px;
    }

    .footer-cta-btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .benefits-intro {
        font-size: 14px;
        text-align: center;
    }

    .trust-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .trust-label {
        width: 100%;
        text-align: center;
    }

    .trust-logos {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-question {
        padding: 16px;
        font-size: 14px;
    }

    .faq-answer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .contact-content {
        padding: 24px;
        max-width: 100%;
    }

    .contact-heading {
        font-size: 28px;
    }

    .contact-subheading {
        font-size: 14px;
    }

    .hamburger {
        display: flex;
    }

    .navbar.scrolled {
        left: 16px;
        right: 16px;
        top: 10px;
        border-radius: 28px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: #08080e;
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.5);
        transition: right 0.3s ease;
        gap: 0;
        border-left: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        width: 100%;
        border: none;
        border-radius: 0;
        color: #ffffff;
    }

    .nav-links a:hover,
    .nav-links a:active {
        background: transparent;
        color: var(--primary-color);
        border-color: transparent;
    }

    .nav-links .nav-cta {
        margin-top: 0;
        text-align: center;
        border-radius: var(--border-radius-pill);
        border: 1px solid var(--primary-color);
    }

    .dropdown .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(69, 200, 122, 0.05);
        border-radius: 8px;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: none;
    }

    .dropdown.active > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 8px 0;
        margin-top: 8px;
    }

    .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }

    .dropdown.active > .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 14px 16px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .dropdown-menu a:hover {
        padding-left: 20px;
    }

    .dropdown.nested {
        width: 100%;
    }

    .nested-toggle {
        min-height: 44px;
    }

    .nested-menu a {
        padding: 14px 16px 14px 32px !important;
        min-height: 44px;
    }

    .hero-subheadline {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .hero-subheadline-break {
        display: none;
    }

    .hero-sub-desktop {
        display: none;
    }

    .hero-sub-mobile {
        display: block;
        font-size: clamp(10.5px, 3.1vw, 13px);
        line-height: 1.5;
        margin-bottom: 32px;
    }

    .hero-cta .btn {
        width: auto;
    }

    .section-title {
        font-size: 32px;
    }

    .process-wrapper {
        padding: 40px 24px;
    }

    .steps-container {
        flex-direction: row;
        gap: 12px;
    }

    .steps-container::before {
        display: none;
    }

    .step {
        border-radius: 12px !important;
        padding: 16px 12px;
    }

    .step h3 {
        font-size: 13px;
    }

    .step p {
        font-size: 11px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .step-connector {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .pricing-card {
        padding: 16px;
        border-radius: 12px;
    }

    .plan-name {
        font-size: 16px;
    }

    .price {
        font-size: 28px;
    }

    .period {
        font-size: 12px;
    }

    .setup-fee {
        font-size: 10px;
    }

    .plan-description {
        font-size: 12px;
        min-height: auto;
        margin-bottom: 10px;
    }

    .plan-features li {
        font-size: 12px;
        padding: 4px 0;
    }

    .popular-badge {
        font-size: 10px;
        padding: 4px 12px;
        top: -12px;
    }

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

    .sticky-cta {
        display: none;
    }

    .sticky-cta.visible {
        display: block;
    }

}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .hero-headline {
        font-size: 6.3vw;
        letter-spacing: -0.5px;
    }

    .hero-subheadline {
        font-size: 14px;
    }

    .carousel-heading {
        font-size: 15px;
        font-weight: 800;
        white-space: nowrap;
        padding-top: 24px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .hero-email-cta {
        max-width: 100%;
        margin-top: 48px;
    }

    .hero-email-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 8px;
        box-shadow: none;
    }

    .hero-email-input-wrap {
        width: 100%;
        background: #fff;
        border: 2px solid #e0e0e0;
        border-radius: 60px;
        padding: 0 20px;
        height: 54px;
        min-height: 54px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }

    .hero-email-input {
        padding: 0;
        height: 54px;
        line-height: 54px;
        flex: 1;
    }

    .hero-email-form:focus-within .hero-email-input-wrap {
        border-color: #45C87A;
    }

    .hero-email-btn {
        width: 100%;
        justify-content: center;
        height: auto;
        padding: 14px 16px;
        font-size: 9px !important;
        border-radius: 60px;
        box-sizing: border-box;
        white-space: normal;
        text-align: center;
    }

    .btn {
        width: auto;
        padding: 14px 24px;
        font-size: 15px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }

    .section-heading-lg {
        font-size: 26px;
        letter-spacing: -0.5px;
    }

    .section-subtitle-lg {
        font-size: 14px;
    }

    .services-tab-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .tab-panel-text h3 {
        font-size: 22px;
        line-height: 1.2;
    }

    .tab-panel-text p {
        font-size: 14px;
        font-weight: 600;
        color: rgba(255,255,255,0.9);
    }

    .tab-features li {
        font-size: 13px;
        font-weight: 600;
        color: rgba(255,255,255,0.92);
    }

    .process-card {
        padding: 28px 20px;
    }

    .process-num {
        font-size: 40px;
    }

    .software-card {
        padding: 14px 10px;
    }

    .software-card h3 {
        font-size: 11px;
    }

    .software-card p {
        font-size: 10px;
    }

    .social-platforms-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .social-platform-card {
        padding: 18px 12px;
        gap: 8px;
    }

    .social-platform-icon {
        width: 36px;
        height: 36px;
    }

    .social-platform-icon img,
    .social-platform-icon svg {
        width: 24px;
        height: 24px;
    }

    .social-platform-card h3 {
        font-size: 14px;
    }

    .social-platform-card p {
        font-size: 10px;
    }

    .social-stat-label {
        font-size: 9px;
    }

    .social-bottom-cta {
        margin-top: 32px;
        gap: 16px;
    }

    .social-bottom-cta p {
        font-size: 12px;
    }

    .process-card h3 {
        font-size: 12px;
    }

    .process-card p {
        font-size: 10px;
    }

    .process-step-number {
        font-size: 24px;
    }

    .process-checklist li {
        font-size: 10px;
    }

    .pricing-card {
        padding: 12px 8px;
    }

    .plan-name {
        font-size: 13px;
    }

    .price {
        font-size: 22px;
    }

    .plan-features li {
        font-size: 10px;
    }

    .plan-description {
        font-size: 10px;
    }

    .faq-question {
        font-size: 13px;
        padding: 14px 16px;
    }

    .faq-answer p {
        font-size: 13px;
        padding: 0 16px;
    }

    .contact-content {
        padding: 20px 16px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 15px;
        padding: 10px;
    }

    .footer-top {
        padding: 0 16px 24px;
    }

    .ai-stats-number {
        font-size: 44px;
    }

    .voicement-stat-highlight {
        padding: 20px 16px;
    }

    .computer-mockup {
        max-width: 280px;
    }

    .tab-visual-mockup {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .mockup-app {
        padding: 12px 10px;
        gap: 6px;
    }

    .mock-stats-row {
        gap: 4px;
    }

    .mock-stat-value {
        font-size: 12px;
    }

    .mock-stat-label {
        font-size: 7px;
    }

    .mock-chart {
        height: 50px;
        gap: 3px;
    }

    .mock-keyword {
        font-size: 7px;
        padding: 3px 4px;
    }

    .mock-kw-rank {
        font-size: 7px;
    }
}

@media (max-width: 360px) {
    .hero-headline {
        font-size: 6.3vw;
    }

    .services-tabs,
    .how-it-works,
    .faq,
    .contact {
        padding: 50px 14px;
    }

    .services-tab-nav {
        margin-left: -14px;
        margin-right: -14px;
        padding-left: 14px;
        padding-right: 14px;
        gap: 5px;
    }

    .services-tab-btn {
        padding: 7px 10px;
        font-size: 11px;
    }

    .section-heading-lg {
        font-size: 22px;
    }

    .section-subtitle-lg {
        font-size: 12px;
    }

    .tab-panel-content {
        gap: 12px;
    }

    .tab-panel-text h3 {
        font-size: 13px;
    }

    .tab-panel-text p {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .tab-features li {
        font-size: 9px;
        padding-left: 16px;
    }

    .tab-visual-mockup {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .mockup-app {
        padding: 10px 8px;
        gap: 4px;
    }

    .mock-stat-value {
        font-size: 11px;
    }

    .mock-stat-label {
        font-size: 6px;
    }

    .mock-chart {
        height: 40px;
        gap: 2px;
    }

    .mock-keyword {
        font-size: 6px;
        padding: 2px 3px;
    }

    .mock-kw-rank {
        font-size: 6px;
    }

    .voicement-phone-avatar {
        width: 16px;
        height: 16px;
    }

    .voicement-phone-avatar svg {
        width: 8px;
        height: 8px;
    }

    .voicement-phone-label {
        font-size: 7px;
    }

    .voicement-phone-status {
        font-size: 6px;
    }

    .voicement-phone-timer {
        font-size: 7px;
    }

    .voicement-waveform {
        height: 14px;
    }

    .voicement-transcript-line {
        font-size: 6px;
        padding: 2px 4px;
    }

    .transcript-tag {
        font-size: 5px;
    }

    .mock-wf-node {
        font-size: 7px;
        padding: 3px 4px;
    }

    .mock-wf-label {
        font-size: 6px;
    }

    .wf-stat {
        font-size: 4px;
        padding: 1px 2px;
    }

    .wf-stat-num {
        font-size: 5px;
    }

    .mock-platforms {
        gap: 4px;
    }

    .mock-platform-icon {
        width: 20px;
        height: 20px;
    }

    .mock-cal-post {
        font-size: 6px;
        padding: 2px 4px;
    }

    .mock-cal-dot {
        width: 4px;
        height: 4px;
    }

    .metric-num {
        font-size: 9px;
    }

    .metric-label {
        font-size: 6px;
    }

    .mock-monitor-header {
        font-size: 7px;
        padding: 4px;
    }

    .mock-status-row {
        font-size: 7px;
        padding: 3px 4px;
    }

    .mock-status-value {
        font-size: 7px;
    }

    .hero-headline {
        letter-spacing: -0.5px;
    }

    .hero-subheadline {
        font-size: 13px;
    }

    .software-card h3 {
        font-size: 10px;
    }

    .software-card p {
        font-size: 9px;
    }

    .process-card h3 {
        font-size: 11px;
    }

    .process-card p {
        font-size: 9px;
    }

    .process-checklist li {
        font-size: 9px;
    }

    .agents-cta-mobile .btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .ai-stats-number {
        font-size: 38px;
    }
}

@media (max-width: 320px) {
    .hero-headline {
        font-size: 6.3vw;
    }

    .services-tabs,
    .how-it-works,
    .faq,
    .contact {
        padding: 40px 10px;
    }

    .services-tab-nav {
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
        gap: 4px;
    }

    .services-tab-btn {
        padding: 6px 8px;
        font-size: 10px;
    }

    .section-heading-lg {
        font-size: 20px;
    }

    .section-subtitle-lg {
        font-size: 11px;
    }

    .tab-panel-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tab-panel-text h3 {
        font-size: 14px;
    }

    .tab-panel-text p {
        font-size: 11px;
    }

    .tab-features li {
        font-size: 10px;
    }

    .tab-visual-mockup {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .mockup-app {
        padding: 10px 8px;
        gap: 4px;
    }

    .hero-headline {
        letter-spacing: -0.5px;
    }

    .hero-subheadline {
        font-size: 12px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .ai-stats-number {
        font-size: 34px;
    }

    .pricing-card {
        padding: 10px 6px;
    }

    .plan-name {
        font-size: 12px;
    }

    .price {
        font-size: 20px;
    }

    .plan-features li {
        font-size: 9px;
    }

    .faq-question {
        font-size: 12px;
        padding: 12px 14px;
    }

    .faq-answer p {
        font-size: 12px;
        padding: 0 14px;
    }
}

.demo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.demo-modal.active {
    display: flex;
}

.demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.demo-modal-container {
    position: relative;
    width: 95%;
    max-width: 1400px;
    height: 90vh;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.demo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: linear-gradient(180deg, #dee1e6 0%, #d1d5db 100%);
    border-bottom: 1px solid #b8bcc4;
}

.demo-modal-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.demo-modal-dots {
    display: flex;
    gap: 8px;
}

.demo-modal-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-modal-dots span:nth-child(1) {
    background: #ef4444;
}

.demo-modal-dots span:nth-child(2) {
    background: #eab308;
}

.demo-modal-dots span:nth-child(3) {
    background: #22c55e;
}

.demo-modal-url-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFFEFB;
    padding: 6px 14px;
    border-radius: 20px;
    min-width: 300px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
    border: 1px solid #c4c7cc;
}

.demo-modal-url-bar svg {
    width: 14px;
    height: 14px;
    color: #5f6368;
    flex-shrink: 0;
}

.demo-modal-title {
    font-size: 14px;
    font-weight: 400;
    color: #202124;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.demo-modal-header-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.demo-modal-external {
    color: #5f6368;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.demo-modal-external:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #202124;
}

.demo-modal-close {
    background: transparent;
    border: none;
    color: #5f6368;
    font-size: 22px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.demo-modal-close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #202124;
}

.demo-modal-body {
    flex: 1;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.demo-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.demo-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    z-index: 10;
}

.demo-loader.hidden {
    display: none;
}

.demo-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(69, 200, 122, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.demo-loader p {
    margin-top: 0;
    color: var(--dark-gray);
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .demo-modal {
        padding: 10px;
    }

    .demo-modal-container {
        width: 100%;
        height: 95vh;
        border-radius: 12px;
    }

    .demo-modal-header {
        padding: 10px 14px;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .demo-modal-header-left {
        gap: 8px;
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .demo-modal-dots span {
        width: 10px;
        height: 10px;
    }

    .demo-modal-url-bar {
        min-width: 0;
        flex: 1;
        padding: 5px 10px;
        overflow: hidden;
    }

    .demo-modal-title {
        font-size: 11px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }

    .demo-modal-header-right {
        flex-shrink: 0;
    }

    .demo-modal-close {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero {
        padding-top: 160px;
    }

    .benefits-grid {
        gap: 32px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1480px;
    }

    .step {
        padding: 40px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1680px;
    }

    .section-title {
        font-size: 48px;
    }
}
@keyframes voicementGradient { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

@media (max-width: 768px) {
    .social-media-section .section-subtitle-lg {
        font-size: 13.5px;
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .social-media-section .section-subtitle-lg {
        font-size: 12.5px;
        max-width: 100%;
        line-height: 1.55;
    }
}

.svc-section {
    padding: 100px 40px;
    background: #FFFEFB;
}
.svc-section-alt {
    background: #f7f7f5;
}
.svc-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.svc-section-reverse {
    direction: rtl;
}
.svc-section-reverse > * {
    direction: ltr;
}
.svc-tag {
    display: inline-block;
    background: rgba(69, 200, 122, 0.1);
    color: #45C87A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.svc-section-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a2e;
    margin-bottom: 20px;
}
.svc-section-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 28px;
}
.svc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.svc-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}
.svc-feature-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: #45C87A;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}
.svc-visual-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.06);
}
.svc-visual-card-dark {
    background: #0f1115;
}
.svc-visual-browser {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}
.svc-browser-bar {
    background: #f3f4f6;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e7eb;
}
.svc-browser-dots {
    display: flex;
    gap: 5px;
}
.svc-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}
.svc-browser-dots span:first-child { background: #ef4444; }
.svc-browser-dots span:nth-child(2) { background: #f59e0b; }
.svc-browser-dots span:last-child { background: #10b981; }
.svc-browser-url {
    flex: 1;
    background: #fff;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}
.svc-browser-body {
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.svc-mock-hero {
    height: 90px;
    background: linear-gradient(135deg, #45C87A22 0%, #45C87A11 100%);
    border-radius: 8px;
    border: 2px dashed #45C87A44;
}
.svc-mock-row {
    display: flex;
    gap: 10px;
}
.svc-mock-card {
    flex: 1;
    height: 60px;
    background: #f3f4f6;
    border-radius: 8px;
}
.svc-mock-cta {
    height: 36px;
    width: 140px;
    background: #45C87A;
    border-radius: 50px;
    opacity: 0.85;
}
.svc-seo-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 28px;
}
.svc-seo-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.svc-seo-val {
    font-size: 28px;
    font-weight: 800;
    color: #45C87A;
}
.svc-seo-lbl {
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.svc-seo-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}
.svc-seo-bar {
    flex: 1;
    background: #45C87A;
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
}
.svc-seo-bar:last-child {
    opacity: 1;
}

@media (max-width: 900px) {
    .svc-section-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .svc-section-reverse {
        direction: ltr;
    }
    .svc-section-text h2 {
        font-size: 36px;
    }
    .svc-section {
        padding: 70px 24px;
    }
}

.usa-pride-section {
    background-color: #45C87A;
    background-image: url('blueprint-bg-dark.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 40px;
    text-align: center;
    position: relative;
}

.usa-pride-section::before {
    display: none;
}

.usa-pride-section > .container {
    position: relative;
    z-index: 2;
}

.usa-pride-section .marker-line::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0,5 Q8,2 20,5 Q35,8 50,4 Q65,1 80,5 Q92,8 100,4 L100,8 Q92,10 80,8 Q65,6 50,8 Q35,10 20,8 Q8,7 0,8 Z' fill='%23000000'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
    height: 9px;
    mix-blend-mode: normal;
    opacity: 0.85;
    bottom: 0;
}

.usa-pride-heading {
    font-size: 50px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.marker-line {
    display: inline-block;
    position: relative;
    text-decoration: none;
    background: none;
    padding-bottom: 16px;
}

.marker-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    right: -6px;
    height: 16px;
    background: url('marker-underline.webp') no-repeat center bottom;
    background-size: 100% 100%;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.usa-pride-heading + .usa-pride-heading {
    margin-bottom: 28px;
}

.usa-pride-text {
    font-size: clamp(16px, 1.8vw, 21px);
    font-weight: 900;
    line-height: 1.6;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 1050px;
    margin: 0 auto;
}

.usa-pride-line {
    display: block;
}

.transform-section {
    background-color: transparent;
    padding: 110px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.transform-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at center, transparent 30%, #111111 75%),
        linear-gradient(to right, #111111 0%, transparent 10%, transparent 90%, #111111 100%);
    pointer-events: none;
}

.transform-container {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.transform-eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    color: #45C87A;
    font-weight: 700;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
}

.transform-heading {
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    margin-bottom: 36px;
    font-family: 'Inter', sans-serif;
}

.transform-accent {
    color: #45C87A;
    position: relative;
    display: inline-block;
}

.transform-accent::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #45C87A, #ff7a3c);
    border-radius: 2px;
}

.transform-divider {
    width: 60px;
    height: 3px;
    background: #45C87A;
    margin: 0 auto 32px;
    border-radius: 2px;
}

.transform-text {
    font-size: clamp(26px, 3.8vw, 54px);
    font-weight: 800;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 40px rgba(69, 200, 122, 0.25);
}

@media (max-width: 768px) {
    .usa-pride-section {
        padding: 60px 24px;
    }
    .usa-pride-heading {
        font-size: 32px;
    }
    .usa-pride-text {
        font-size: 20px;
        max-width: 520px;
    }
    .transform-section {
        padding: 80px 24px;
    }
    .transform-text {
        font-size: clamp(22px, 6vw, 32px);
        line-height: 1.25;
        letter-spacing: -0.3px;
    }
}

@media (max-width: 480px) {
    .usa-pride-section {
        padding: 48px 8px;
    }
    .usa-pride-section .container {
        padding-left: 0;
        padding-right: 0;
    }
    .usa-pride-heading {
        font-size: clamp(14px, 5.2vw, 26px);
        white-space: nowrap;
    }
    .usa-pride-text {
        font-size: clamp(8px, 2.8vw, 18px);
        line-height: 1.6;
        overflow-wrap: break-word;
        word-break: break-word;
    }
}

.clients-section {
    background: #FFFEFB;
    padding: 90px 40px;
    text-align: center;
}

.clients-eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    color: #45C87A;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
}

.clients-heading {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.clients-subtext {
    font-size: 17px;
    color: #666;
    max-width: 560px;
    margin: 0 auto 56px;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.client-card {
    background: #fff;
    border: 1.5px solid #ebebeb;
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 220px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    cursor: default;
}

.client-card:hover {
    border-color: #45C87A;
    box-shadow: 0 8px 32px rgba(69, 200, 122, 0.12);
    transform: translateY(-4px);
}

.client-card img {
    width: 100%;
    max-width: 140px;
    height: 80px;
    object-fit: contain;
}

.client-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.client-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #45C87A;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.client-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    text-align: center;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .clients-section {
        padding: 70px 24px;
    }
    .client-card {
        width: calc(50% - 12px);
        min-width: 140px;
        padding: 20px 16px;
    }
    .client-card img {
        max-width: 110px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .clients-section {
        padding: 60px 20px;
    }
    .client-card {
        width: calc(50% - 10px);
        padding: 16px 12px;
    }
}

.seo-geo-section {
    padding: 100px 40px;
    background: transparent;
    position: relative;
}
.seo-geo-section .section-heading-lg {
    color: #ffffff;
}
.seo-geo-section .section-subtitle-lg {
    color: rgba(255,255,255,0.7);
    max-width: 1100px;
}
.seo-geo-section .section-label {
    color: rgba(255,255,255,0.5);
}
.seo-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 760px;
    margin: 50px auto 0;
    width: 100%;
}
.seo-card {
    background: #252527;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 48px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.seo-card:hover {
    transform: translateY(-4px);
    border-color: #45C87A;
    box-shadow: 0 12px 40px rgba(69, 200, 122, 0.12);
}
.seo-card-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    border-radius: inherit;
}
.seo-card > *:not(.seo-card-canvas) {
    position: relative;
    z-index: 1;
}
.seo-card.seo-reveal-active .geo-icon-row svg * {
    stroke: #ffffff;
}
.seo-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.geo-icon-row {
    width: auto !important;
    height: auto !important;
    flex-direction: row !important;
    gap: 12px !important;
    padding: 8px 4px;
    background: none !important;
}

.aio-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.aio-logo-white {
    filter: brightness(0) invert(1);
}

.aio-logo[alt="Claude"] {
    object-fit: cover;
    object-position: 0 50%;
}
.seo-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}
.seo-card-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #45C87A;
    margin: -4px 0 4px;
}
.seo-card > p:last-of-type {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}
.seo-card-metrics {
    display: flex;
    gap: 24px;
    margin-top: 0;
    padding-top: 16px;
    width: 100%;
    justify-content: center;
}
.seo-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.seo-metric-val {
    font-size: 22px;
    font-weight: 800;
    color: #45C87A;
}
.seo-metric-lbl {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.seo-bottom-cta {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .seo-geo-section {
        padding: 70px 0;
    }
    .seo-cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1px;
        padding: 0;
        margin: 24px 0 0;
        max-width: 100%;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 16px;
        overflow: hidden;
    }
    .seo-card {
        min-width: unset;
        flex-shrink: unset;
        scroll-snap-align: unset;
        padding: 32px 28px;
        border-radius: 0;
        border: none;
        background: #08080e;
    }
    .seo-card h3 {
        font-size: 20px;
    }
}

.services-tabs,
.ai-stats,
.custom-software,
.social-media-section,
.voicement-section,
.faq,
.seo-geo-section {
    position: relative;
}

.pricing-main {
    display: flex;
    flex-direction: column;
}
.pricing-hero {
    padding: 120px 0 24px;
    text-align: center;
}
.pricing-hero-search {
    min-height: 72vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0 28px;
}
.pricing-hero .section-heading-lg {
    color: #ffffff;
}
.pricing-hero .section-subtitle-lg {
    color: rgba(255,255,255,0.6);
}
.pricing-industries {
    padding: 20px 0 60px;
}

/* ── Industry Search ── */
.industry-search-wrap {
    position: relative;
    max-width: 620px;
    margin: 36px auto 0;
}
.industry-search-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.14);
    border-radius: 60px;
    padding: 0 20px;
    gap: 12px;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.industry-search-box:focus-within {
    border-color: #45C87A;
    background: rgba(255,255,255,0.09);
    box-shadow: 0 0 0 4px rgba(69,200,122,0.12);
}
.industry-search-icon {
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
}
.industry-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    padding: 16px 0;
    min-width: 0;
}
.industry-search-input::placeholder {
    color: rgba(255,255,255,0.35);
}
.industry-search-clear {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.4);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
    transition: color 0.2s;
    flex-shrink: 0;
}
.industry-search-clear:hover {
    color: rgba(255,255,255,0.8);
}
.industry-suggestions {
    display: none;
    list-style: none;
    margin: 8px 0 0;
    padding: 8px 0;
    background: #1e1e22;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    right: 0;
    z-index: 200;
    overflow: hidden;
}
.industry-suggestions.active {
    display: block;
}
.industry-suggestions li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    cursor: pointer;
    transition: background 0.15s;
    font-size: 15px;
}
.industry-suggestions li:hover,
.industry-suggestions li.active {
    background: rgba(69,200,122,0.1);
}
.suggest-matched {
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    flex-shrink: 0;
}
.suggest-arrow {
    color: rgba(255,255,255,0.25);
    font-size: 13px;
}
.suggest-category {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.industry-no-match {
    display: none;
    margin-top: 16px;
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 15px;
}
.industry-no-match a {
    color: #45C87A;
    text-decoration: none;
    font-weight: 500;
}
.industry-no-match a:hover {
    text-decoration: underline;
}
.industry-browse-hint {
    margin-top: 40px;
    text-align: center;
}
.industry-browse-hint > span {
    display: block;
    color: rgba(255,255,255,0.35);
    font-size: 13px;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.industry-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}
.industry-pill {
    padding: 8px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.industry-pill:hover {
    background: rgba(69,200,122,0.1);
    border-color: #45C87A;
    color: #fff;
}

/* ── Pricing back button ── */
.pricing-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 28px;
    transition: color 0.2s;
}
.pricing-back-btn:hover {
    color: #fff;
}

/* ── Pricing Other page ── */
.pricing-other-notice {
    background: rgba(69,200,122,0.08);
    border: 1px solid rgba(69,200,122,0.25);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 40px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.pricing-other-notice-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}
.pricing-other-notice h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}
.pricing-other-notice p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.pricing-other-notice a {
    color: #45C87A;
    text-decoration: none;
    font-weight: 600;
}
.pricing-other-notice a:hover {
    text-decoration: underline;
}
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.industry-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.industry-card:hover {
    background: rgba(69,200,122,0.08);
    border-color: #45C87A;
    transform: translateY(-2px);
}
.pricing-section {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    scroll-margin-top: 80px;
}
.pricing-section-label {
    font-size: 14px;
    color: #45C87A;
    margin-bottom: 6px;
    font-weight: 500;
}
.pricing-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
}
.pricing-card-popular {
    border-color: #45C87A;
    box-shadow: 0 0 30px rgba(69,200,122,0.12);
}
.pricing-popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(69,200,122,0.15);
    color: #4ade80;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(74,222,128,0.3);
}
.pricing-card-header {
    margin-bottom: 28px;
}
.pricing-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.pricing-card-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin-bottom: 16px;
}
.pricing-card-price {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}
.pricing-starting {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.pricing-currency {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
}
.pricing-card-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.pricing-feature-group h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pricing-feature-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pricing-feature-group li {
    font-size: 14px;
    color: rgba(255,255,255,0.88);
    padding-left: 24px;
    position: relative;
    line-height: 1.45;
}
.pricing-feature-group li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%234ade80'/%3E%3Cpolyline points='4.5,8.5 7,11 11.5,5.5' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}
.pricing-coming-soon {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}
.pricing-coming-soon p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    margin-bottom: 24px;
}
.startup-pricing-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.startup-info {
    padding-top: 20px;
}
.startup-starting {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}
.startup-price {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}
.startup-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.startup-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.startup-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.startup-form label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}
.startup-form input,
.startup-form textarea,
.startup-form select {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}
.startup-form input:focus,
.startup-form textarea:focus,
.startup-form select:focus {
    border-color: #45C87A;
}
.startup-form select option {
    color: #000;
    background: #fff;
}
.btn-full {
    width: 100%;
    text-align: center;
}
@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .industry-card {
        padding: 20px 14px;
        font-size: 13px;
    }
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .startup-pricing-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .pricing-section-title {
        font-size: 26px;
    }
    .startup-price {
        font-size: 32px;
    }
    .industry-search-wrap {
        max-width: 100%;
    }
    .industry-search-input {
        font-size: 15px;
    }
    .industry-pills {
        gap: 8px;
    }
    .industry-pill {
        padding: 7px 14px;
        font-size: 12px;
    }
    .pricing-other-notice {
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 480px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
    .pricing-hero {
        padding: 120px 0 30px;
    }
    .pricing-hero-search {
        min-height: 72vh;
        padding: 40px 0 28px;
        justify-content: center;
    }
    .industry-search-input {
        font-size: 14px;
        padding: 14px 0;
    }
}

.services-tabs::after,
.ai-stats::after,
.custom-software::after,
.social-media-section::after,
.voicement-section::after,
.faq::after,
.contact::after,
.seo-geo-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #08080e 0%,
        transparent 9%,
        transparent 91%,
        #08080e 100%
    );
    pointer-events: none;
    z-index: 10;
}
.pricing-back-btn {
    position: fixed;
    top: 90px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    z-index: 90;
}
.pricing-back-btn:hover {
    background: rgba(69,200,122,0.12);
    color: #fff;
    border-color: #45C87A;
}
.pricing-back-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.industry-explainer {
    max-width: 800px;
    margin: 0 auto 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
}
.industry-explainer-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}
.industry-explainer-toggle h2 {
    font-size: 17px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin: 0;
}
.industry-explainer-toggle svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: rgba(255,255,255,0.5);
    transition: transform 0.3s ease;
}
.industry-explainer.open .industry-explainer-toggle svg {
    transform: rotate(180deg);
}
.industry-explainer-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.industry-explainer.open .industry-explainer-body {
    max-height: 500px;
}
.industry-explainer-content {
    padding: 0 28px 24px;
}
.industry-explainer-content p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 10px;
}
.industry-explainer-content p:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .pricing-back-btn {
        top: 80px;
        left: 12px;
        font-size: 13px;
        padding: 8px 14px;
    }
    .industry-explainer-toggle {
        padding: 16px 20px;
    }
    .industry-explainer-toggle h2 {
        font-size: 15px;
    }
    .industry-explainer-content {
        padding: 0 20px 20px;
    }
    .pricing-hero {
        padding: 100px 0 20px;
    }
}

/* TRANSPARENT PRICING SECTION */
@keyframes tp-border-spin {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}
@keyframes tp-glow-pulse {
    0%, 100% { opacity: 0.18; transform: scale(1); }
    50%       { opacity: 0.32; transform: scale(1.12); }
}
@keyframes tp-item-in {
    from { opacity: 0; transform: translateX(-16px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes tp-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.transparent-pricing-section {
    padding: 60px 0;
}
.tp-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    border-radius: 24px;
    padding: 54px 60px;
    position: relative;
    overflow: hidden;
    background: rgba(18,18,22,0.85);
    isolation: isolate;
}
.tp-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(120deg, #45C87A 0%, rgba(69,200,122,0.15) 40%, rgba(255,255,255,0.08) 60%, #45C87A 100%);
    animation: tp-border-spin 3s ease-in-out infinite;
    will-change: opacity;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}
.tp-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(69,200,122,0.22) 0%, transparent 70%);
    top: -120px;
    right: -80px;
    animation: tp-glow-pulse 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.tp-banner-left,
.tp-banner-right {
    position: relative;
    z-index: 1;
}
.tp-banner-left {
    flex: 1;
}
.tp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #45C87A;
    margin-bottom: 16px;
}
.tp-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #45C87A;
    border-radius: 2px;
}
.tp-banner-left h2 {
    font-size: clamp(30px, 3.8vw, 46px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin: 0 0 30px;
    letter-spacing: -1px;
}
.tp-highlight {
    color: var(--retro-green, #45C87A);
    -webkit-text-fill-color: var(--retro-green, #45C87A);
    background: none;
}
.tp-checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tp-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    opacity: 0;
    transform: translateX(-16px);
}
.tp-check-item.tp-visible {
    animation: tp-item-in 0.45s ease forwards;
}
.tp-check-item:nth-child(1).tp-visible { animation-delay: 0.05s; }
.tp-check-item:nth-child(2).tp-visible { animation-delay: 0.17s; }
.tp-check-item:nth-child(3).tp-visible { animation-delay: 0.29s; }
.tp-check-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.tp-banner-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
    flex-shrink: 0;
    max-width: 260px;
}
.tp-banner-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin: 0;
}
.tp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #45C87A;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    padding: 0;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.3px;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.2s;
    box-shadow: 0 0 0 0 rgba(69,200,122,0);
    white-space: nowrap;
}
.tp-cta span {
    padding: 18px 28px 18px 36px;
    transition: background 0.2s;
}
.tp-cta-arrow {
    width: 54px;
    height: 54px;
    padding: 15px;
    background: rgba(0,0,0,0.18);
    border-radius: 0 100px 100px 0;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.25s;
}
.tp-cta:hover {
    box-shadow: 0 0 28px rgba(69,200,122,0.5);
    transform: translateY(-2px);
}
.tp-cta:hover span {
    background: #d44e0a;
}
.tp-cta:hover .tp-cta-arrow {
    background: rgba(0,0,0,0.28);
    transform: translateX(3px);
}
.tp-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.tp-animate.tp-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 900px) {
    .tp-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 36px;
        gap: 32px;
    }
    .tp-banner-right {
        align-items: flex-start;
        text-align: left;
        max-width: 100%;
    }
    .tp-glow {
        width: 280px;
        height: 280px;
        top: -60px;
        right: -40px;
    }
}
@media (max-width: 600px) {
    .tp-banner {
        padding: 32px 24px;
        background: linear-gradient(135deg, #ffdee9 0%, #f7c5e8 20%, #e8c8f8 45%, #c8dff8 70%, #d4f0e8 100%) !important;
    }
    .tp-grad-container {
        display: none !important;
    }
    .transparent-pricing-section {
        padding: 40px 0;
    }
}

.pricing-card-demos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.pricing-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1px solid rgba(69, 200, 122, 0.3);
    border-radius: 20px;
    color: #45C87A;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(69, 200, 122, 0.05);
    cursor: pointer;
}

.pricing-demo-btn:hover {
    background: rgba(69, 200, 122, 0.12);
    border-color: #45C87A;
    transform: translateY(-1px);
}

.pricing-demo-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    stroke: currentColor;
}

@media (max-width: 768px) {
    .pricing-card-demos {
        justify-content: center;
    }
    .pricing-demo-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ===== SKIP NAVIGATION LINK (Accessibility) ===== */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: #45C87A;
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  font-size: 15px;
}
.skip-nav:focus {
  top: 0;
}

/* ===== REDUCED MOTION & ANIMATION FALLBACKS ===== */
@media (prefers-reduced-motion: reduce) {
  .services-tab-panel,
  .tp-banner.tp-animate,
  .tp-check-item,
  .anim-item,
  .anim-chat,
  .anim-bar,
  [class*="anim-"],
  .benefit-card,
  .testimonial-card,
  .pricing-card,
  .step,
  .software-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* =============================================
   RETRO TERMINAL THEME — GLOBAL OVERRIDES
   v1.0 — Applied site-wide
   ============================================= */

:root {
  --retro-green: #45C87A;
  --retro-green-dim: #2A8A52;
  --retro-bg: #08080e;
  --retro-glow: 0 0 6px rgba(69,200,122,0.55), 0 0 14px rgba(69,200,122,0.2);
  --retro-grid: rgba(0, 255, 65, 0.12);
  --retro-grid-size: 48px;
}

@keyframes retro-flicker {
  0%, 91%, 94%, 97%, 100% { opacity: 1; }
  92%, 95% { opacity: 0.93; }
  93% { opacity: 0.88; }
}

@keyframes retro-grid-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(var(--retro-grid-size)); }
}

@keyframes retro-blink {
  50% { opacity: 0; }
}

@keyframes retro-pulse {
  0%, 100% { text-shadow: var(--retro-glow); }
  50%       { text-shadow: 0 0 4px rgba(69,200,122,0.35), 0 0 8px rgba(69,200,122,0.12); }
}

/* ── BASE ── */
html, body {
  background-color: var(--retro-bg) !important;
  font-family: 'VT323', 'Courier New', monospace !important;
  color: var(--retro-green) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  height: auto !important;
}

/* ── SCROLLING GRID + RGB PHOSPHOR ── */
body::before {
  content: '' !important;
  position: fixed !important;
  inset: -100px !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background-image:
    linear-gradient(var(--retro-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--retro-grid) 1px, transparent 1px) !important;
  background-size:
    var(--retro-grid-size) var(--retro-grid-size),
    var(--retro-grid-size) var(--retro-grid-size) !important;
  animation: retro-grid-scroll 8s linear infinite !important;
  background-color: transparent !important;
}

/* ── CRT SCANLINES ── */
body::after {
  content: '' !important;
  position: fixed !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 9998 !important;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.14) 2px,
    rgba(0, 0, 0, 0.14) 4px
  ) !important;
}

/* Ensure all direct children sit above grid */
body > header, body > section, body > footer,
body > div, body > nav { position: relative; z-index: 1; }

/* main must NOT create a stacking context — lets photo z-index beat scanlines */
body > main { position: relative; z-index: auto; }

/* ── HEADINGS ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Press Start 2P', monospace !important;
  color: var(--retro-green) !important;
  text-shadow: var(--retro-glow) !important;
  line-height: 1.7 !important;
}
h1, h2 { animation: none; }

/* ── BODY TEXT ── */
p, li, span, td, th, label, blockquote {
  font-family: 'VT323', 'Courier New', monospace !important;
}

/* ── LINKS ── */
a { color: var(--retro-green) !important; }
a:hover { text-shadow: var(--retro-glow) !important; }

/* ── NAVIGATION / HEADER ── */
header, .header, .site-header {
  background: rgba(8, 8, 14, 0.92) !important;
  border-bottom: 1px solid var(--retro-green-dim) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

/* Navbar always on top of everything including photo wrap & scanlines */
.navbar {
  z-index: 10001 !important;
  position: fixed !important;
}

/* Pin nav flush to top on scroll — no floating pill */
.navbar.scrolled {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  border-radius: 0 !important;
}

/* Larger nav link text */
.nav-links a,
.navbar.scrolled .nav-links a {
  font-family: 'VT323', monospace !important;
  font-size: 20px !important;
  color: var(--retro-green) !important;
  letter-spacing: 0.04em !important;
  cursor: pointer !important;
}
.nav-links a:hover {
  color: #fff !important;
  text-shadow: var(--retro-glow) !important;
}

.logo, .nav-logo, .brand-name, .site-logo {
  font-family: 'Press Start 2P', monospace !important;
  color: var(--retro-green) !important;
  text-shadow: var(--retro-glow) !important;
  font-size: 13px !important;
}

.nav-link, .header-nav a, .main-nav a {
  font-family: 'VT323', monospace !important;
  font-size: 20px !important;
  letter-spacing: 2px !important;
}

/* ── BUTTONS ── */
.btn, .btn-primary, .btn-outline, .btn-secondary {
  font-family: 'Press Start 2P', monospace !important;
  font-size: 9px !important;
  border-radius: 0 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}

.btn-primary {
  background: var(--retro-green) !important;
  color: #000 !important;
  border: none !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
}
.btn-primary:hover {
  background: #5de893 !important;
  box-shadow: 0 0 18px rgba(69,200,122,0.5) !important;
}

.btn-outline {
  background: transparent !important;
  color: var(--retro-green) !important;
  border: 2px solid var(--retro-green) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)) !important;
}
.btn-outline:hover {
  background: rgba(69,200,122,0.08) !important;
  box-shadow: 0 0 12px rgba(69,200,122,0.3) !important;
}

/* ── SERVICE TAB BUTTONS ── */
.services-tab-btn {
  font-family: 'Press Start 2P', monospace !important;
  font-size: 8px !important;
  border-radius: 0 !important;
  letter-spacing: 1px !important;
  background: transparent !important;
  color: var(--retro-green-dim) !important;
  border: 1px solid var(--retro-green-dim) !important;
}
.services-tab-btn.active {
  background: var(--retro-green) !important;
  color: #000 !important;
  border-color: var(--retro-green) !important;
}
.services-tab-btn:hover:not(.active) {
  background: rgba(69,200,122,0.1) !important;
  color: var(--retro-green) !important;
}
.services-tab-nav {
  background: transparent !important;
  border: none !important;
  gap: 4px !important;
}

/* ── TAB PANEL FEATURES LIST ── */
.tab-features li::before {
  content: '>' !important;
  color: var(--retro-green) !important;
  font-family: 'VT323', monospace !important;
  font-size: 18px !important;
}

/* ── SECTION BACKGROUNDS ── */
section, .section, .hero, .services-tabs, .trusted-by-section,
.seo-geo-section, .contact-section, .faq-section, .how-it-works-section,
.cta-section, .steps-section, .results-section, .industries-section,
.pricing-section, .about-section, .stats-section {
  background: transparent !important;
  background-color: transparent !important;
}

/* ── SECTION LABELS / EYEBROWS ── */
.services-tabs-label, .section-label, .eyebrow, .overline {
  font-family: 'VT323', monospace !important;
  font-size: 18px !important;
  letter-spacing: 4px !important;
  color: var(--retro-green-dim) !important;
}
.services-tabs-label::before { content: '// '; }

/* ── SECTION HEADINGS ── */
.section-heading, .section-heading-lg, .page-heading, .hero-heading {
  font-family: 'Press Start 2P', monospace !important;
  text-shadow: var(--retro-glow) !important;
}


/* ── TAB MOCKUP VISUALS ── */
.tab-visual-mockup {
  background: #050a05 !important;
  border: 1px solid var(--retro-green-dim) !important;
  border-radius: 0 !important;
  box-shadow: 0 0 20px rgba(69,200,122,0.1), inset 0 0 20px rgba(0,0,0,0.5) !important;
}
.tab-mockup-bar {
  background: #0a120a !important;
  border-bottom: 1px solid var(--retro-green-dim) !important;
}
.tab-mockup-url-bar {
  background: transparent !important;
  color: var(--retro-green-dim) !important;
  border: none !important;
  font-family: 'VT323', monospace !important;
  font-size: 16px !important;
}
.tab-mockup-body, .mockup-app {
  background: #050a05 !important;
  color: var(--retro-green) !important;
  font-family: 'VT323', monospace !important;
}
.dot.red   { background: #45C87A !important; }
.dot.yellow{ background: #2A8A52 !important; }
.dot.green { background: #1a5c35 !important; }

/* ── GOOGLE MAP MOCK ── */
.mock-gmap-result, .mock-gmap-pin, .mock-gmap-addr {
  font-family: 'VT323', monospace !important;
  color: var(--retro-green-dim) !important;
}
.mock-gmap-result.top { border-left: 3px solid var(--retro-green) !important; }

/* ── GOOGLE ADS MOCK ── */
.mock-gads-metric-val { font-family: 'VT323', monospace !important; }
.mock-gads-active { color: var(--retro-green) !important; }

/* ── CARDS / PANELS ── */
.card, .feature-card, .service-card, .info-card, .result-card,
.step-card, .industry-card, .pricing-tier, .pricing-card {
  background: rgba(8, 8, 14, 0.85) !important;
  border: 1px solid var(--retro-green-dim) !important;
  border-radius: 0 !important;
}
.pricing-tier.featured, .pricing-card.featured {
  border: 2px solid var(--retro-green) !important;
  box-shadow: 0 0 24px rgba(69,200,122,0.2) !important;
}

/* ── FAQ ── */
.faq-item {
  background: rgba(8,8,14,0.8) !important;
  border: 1px solid var(--retro-green-dim) !important;
  border-radius: 0 !important;
}
.faq-question {
  font-family: 'Press Start 2P', monospace !important;
  font-size: 10px !important;
  color: var(--retro-green) !important;
  line-height: 1.8 !important;
}
.faq-answer {
  font-family: 'VT323', monospace !important;
  font-size: 20px !important;
  color: rgba(69,200,122,0.85) !important;
}

/* ── FORMS / INPUTS ── */
input, textarea, select {
  background: rgba(8,8,14,0.9) !important;
  border: 1px solid var(--retro-green-dim) !important;
  border-radius: 0 !important;
  color: var(--retro-green) !important;
  font-family: 'VT323', monospace !important;
  font-size: 20px !important;
}
input::placeholder, textarea::placeholder {
  color: var(--retro-green-dim) !important;
  font-family: 'VT323', monospace !important;
}
input:focus, textarea:focus, select:focus {
  outline: none !important;
  border-color: var(--retro-green) !important;
  box-shadow: 0 0 10px rgba(69,200,122,0.25) !important;
}

/* ── FOOTER ── */
footer, .site-footer, .footer {
  background: #f0ff6a !important;
  border-top: 1px solid rgba(211, 24, 0, 0.3) !important;
}
footer *, .site-footer *, .footer * {
  color: #d31800 !important;
}
.footer-heading,
.footer-links-col h4 {
  font-family: 'Press Start 2P', monospace !important;
  font-size: 10px !important;
  color: var(--retro-green) !important;
}
/* All black-text footer elements → green */
.footer-description,
.footer-about-text,
.footer-cta-text,
.footer-trust-item,
.footer-contact-line,
.footer-links-col ul li a,
.footer-bottom p,
.footer-bottom-links a,
.footer-social-link,
.footer-tagline,
.footer-nap,
.footer-why-label,
.footer-why-text {
  color: rgba(69,200,122,0.75) !important;
}
.footer-links-col ul li a:hover,
.footer-bottom-links a:hover,
.footer-contact-line:hover {
  color: var(--retro-green) !important;
}
/* Footer bottom border separator */
.footer-top {
  border-bottom-color: rgba(69,200,122,0.15) !important;
}
.footer-about {
  border-top-color: rgba(69,200,122,0.15) !important;
}

/* ── TRUSTED-BY LOGOS ── */
.trusted-by-section, .logo-carousel-wrap {
  border-top: 1px solid rgba(69,200,122,0.12) !important;
  border-bottom: 1px solid rgba(69,200,122,0.12) !important;
}

/* ── STATS / COUNTERS ── */
.stat-number, .counter, .big-number {
  font-family: 'Press Start 2P', monospace !important;
  color: var(--retro-green) !important;
  text-shadow: var(--retro-glow) !important;
}

/* ── BACK BUTTON (pricing pages) ── */
.back-btn, .back-link, .breadcrumb a {
  font-family: 'Press Start 2P', monospace !important;
  font-size: 9px !important;
  border-radius: 0 !important;
}

/* ── BADGES / TAGS ── */
.badge, .tag, .chip, .label-pill {
  background: rgba(69,200,122,0.1) !important;
  color: var(--retro-green) !important;
  border: 1px solid var(--retro-green-dim) !important;
  border-radius: 0 !important;
  font-family: 'VT323', monospace !important;
}

/* ── MOBILE NAV TOGGLE ── */
.menu-toggle, .hamburger-btn {
  color: var(--retro-green) !important;
}
.mobile-nav, .mobile-menu {
  background: rgba(8,8,14,0.98) !important;
  border: 1px solid var(--retro-green-dim) !important;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--retro-bg); }
::-webkit-scrollbar-thumb {
  background: var(--retro-green-dim);
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover { background: var(--retro-green); }

/* ── SELECTION ── */
::selection {
  background: var(--retro-green) !important;
  color: #000 !important;
}

/* ── 404 PAGE ── */
.error-page, .not-found { background: transparent !important; }


/* ── BUTTON BORDER-RADIUS HARD OVERRIDES ── */
.hero-cta, .hero-btn, .cta-btn,
.btn, .btn-primary, .btn-outline, .btn-secondary,
a.btn, a.btn-primary, a.btn-outline,
button.btn, button.btn-primary {
  border-radius: 0 !important;
}

/* ── HERO ROTATING WORD COLOUR ── */
#heroRotatingText span[style*="color"] {
  color: var(--retro-green) !important;
}

/* ── REMAINING SECTION BACKGROUNDS ── */
.hero-section, .hero-wrapper, .hero-container,
.tp-banner, .tp-section, .process-section,
.why-us-section, .team-section, .blog-section {
  background: transparent !important;
  background-color: transparent !important;
}

/* ── PRICING PAGE SPECIFICS ── */
.pricing-back-btn { border-radius: 0 !important; }
.pricing-hero, .pricing-header { background: transparent !important; }


/* ── HERO EMAIL FORM / CTA WRAPPER ── */
.hero-email-form {
  background: rgba(8,8,14,0.95) !important;
  border-radius: 0 !important;
  border: 2px solid var(--retro-green-dim) !important;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)) !important;
}
.hero-email-form:focus-within {
  border-color: var(--retro-green) !important;
  box-shadow: 0 0 14px rgba(69,200,122,0.3) !important;
}
.hero-email-btn {
  font-family: 'Press Start 2P', monospace !important;
  font-size: 13px !important;
  border-radius: 0 !important;
  background: var(--retro-green) !important;
  color: #000 !important;
  padding: 14px 20px !important;
  letter-spacing: 1px !important;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px)) !important;
}
.hero-email-btn:hover {
  background: #5de893 !important;
  box-shadow: 0 0 16px rgba(69,200,122,0.5) !important;
}
.hero-email-input, .hero-input {
  background: transparent !important;
  border: none !important;
  color: var(--retro-green) !important;
  font-family: 'VT323', monospace !important;
  font-size: 18px !important;
}

/* ── HERO SUBHEADLINE ── */
.hero-headline, .hero-subheadline, .hero-sub-desktop, .hero-sub-mobile {
  font-family: 'VT323', monospace !important;
  color: rgba(69,200,122,0.85) !important;
  font-size: clamp(20px, 2.2vw, 26px) !important;
}
.hero-headline {
  font-family: 'Press Start 2P', monospace !important;
  font-size: clamp(28px, 6vw, 90px) !important;
  color: var(--retro-green) !important;
  text-shadow: var(--retro-glow) !important;
  white-space: normal !important;
  line-height: 1.05 !important;
}

/* ── GEAR/GLOBE SVG STROKES ── */
.gear-svg, .globe-svg { color: var(--retro-green) !important; }

/* ── WHITE BACKGROUNDS ── */
.white-bg, .light-bg, .alt-section {
  background: rgba(8,8,14,0.7) !important;
  border: 1px solid rgba(69,200,122,0.15) !important;
}

/* ── TRUSTED BY LOGO BRIGHTNESS ── */
.carousel-logo, .client-logo, .logo-img {
  filter: invert(1) sepia(1) saturate(2) hue-rotate(90deg) brightness(0.7) !important;
  opacity: 0.6 !important;
}


/* ── LOGO IMAGE: tint orange S to retro green #45C87A ── */
.logo-icon {
  filter: hue-rotate(125deg) saturate(0.68) brightness(1.08) !important;
}


/* ══════════════════════════════════════════
   READABILITY UPGRADES — VT323 larger sizes
   ══════════════════════════════════════════ */

/* — Contact / Lead form — */
.form-group label {
  font-family: 'VT323', monospace !important;
  font-size: 22px !important;
  color: var(--retro-green) !important;
  letter-spacing: 1px !important;
}
.form-group label .required { color: #ff6b6b !important; }

.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'VT323', monospace !important;
  font-size: 22px !important;
  color: var(--retro-green) !important;
  background: rgba(8,8,14,0.8) !important;
  border-color: rgba(69,200,122,0.35) !important;
  border-radius: 0 !important;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  font-family: 'VT323', monospace !important;
  font-size: 22px !important;
  color: rgba(69,200,122,0.4) !important;
}

/* — FAQ questions — */
.faq-question,
.faq-question span:first-child {
  font-family: 'VT323', monospace !important;
  font-size: 26px !important;
  color: var(--retro-green) !important;
  letter-spacing: 0.5px !important;
}

/* — Services tab buttons (Local SEO / Google Ads / Web Design / +More) — */
.services-tab-btn {
  font-family: 'VT323', monospace !important;
  font-size: 22px !important;
  color: rgba(69,200,122,0.8) !important;
  letter-spacing: 1px !important;
}
.services-tab-btn.active {
  color: #000 !important;
  border-color: var(--retro-green) !important;
}
.services-tab-btn:hover:not(.active) {
  color: var(--retro-green) !important;
}

/* — Services tab body text & feature dot points — */
.tab-panel-text p {
  font-family: 'VT323', monospace !important;
  font-size: 24px !important;
  color: rgba(69,200,122,0.85) !important;
  line-height: 1.5 !important;
}
.tab-features li {
  font-family: 'VT323', monospace !important;
  font-size: 22px !important;
  color: rgba(69,200,122,0.85) !important;
  line-height: 1.6 !important;
}

/* — Our Process step descriptions — */
.step p, .step-desc, .process-step p,
.step h3, .step-title, .process-step h3,
.step-label {
  font-family: 'VT323', monospace !important;
  font-size: 22px !important;
  color: rgba(69,200,122,0.85) !important;
  line-height: 1.5 !important;
}


/* ══════════════════════════════════════════
   NAVBAR — sticky, full-width, square, no gradient
   ══════════════════════════════════════════ */
.navbar,
.navbar.scrolled {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  border-radius: 0 !important;
  background: rgba(8, 8, 14, 0.96) !important;
  border: none !important;
  border-bottom: 1px solid rgba(69,200,122,0.25) !important;
  box-shadow: none !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

header {
  background: transparent !important;
  border: none !important;
}


/* ── HERO HEADLINE: two distinct lines — locked height so 2nd line never shifts ── */
.hero-rotating-text {
  display: block !important;
  margin-bottom: 0.2em !important;
  height: 1.7em !important;
  overflow: hidden !important;
}

/* Inline blinking cursor that trails the text */
.retro-cursor {
  display: inline-block;
  color: var(--retro-green) !important;
  opacity: 1;
  font-style: normal;
  animation: retro-blink 0.7s step-end infinite !important;
  line-height: 1;
  vertical-align: baseline;
}
.hero-headline br { display: none !important; }


/* ══════════════════════════════════════════
   SHIMMER — button + key text only
   ══════════════════════════════════════════ */

@keyframes btn-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes text-shimmer {
  0%,   78%,  100% { opacity: 1; filter: none; }
  /* glitch burst 1 */
  79%             { opacity: 0.55; filter: brightness(2.2); }
  79.7%           { opacity: 1;   filter: none; }
  /* glitch burst 2 */
  81%             { opacity: 0.65; filter: brightness(1.9); }
  81.7%           { opacity: 1;   filter: none; }
  /* glitch burst 3 */
  83%             { opacity: 0.45; filter: brightness(2.5); }
  83.5%           { opacity: 1;   filter: none; }
}

/* CTA button — plain green */
.hero-email-btn {
  background: var(--retro-green) !important;
  animation: none !important;
}

/* Nav CTA button */
.nav-cta,
.nav-links .nav-cta,
.nav-links .nav-cta.active {
  background: #08080e !important;
  color: var(--retro-green) !important;
  border: 1px solid var(--retro-green) !important;
  border-radius: 0 !important;
  animation: none !important;
  text-shadow: none !important;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px)) !important;
}
.nav-links .nav-cta:hover,
.nav-cta:hover {
  background: rgba(69,200,122,0.1) !important;
  color: var(--retro-green) !important;
  border-color: var(--retro-green) !important;
  box-shadow: 0 0 12px rgba(69,200,122,0.35) !important;
}

/* Key headline words shimmer */
.hero-headline span[style*="color"],
.marker-line {
  animation: text-shimmer 4s ease-in-out infinite !important;
}

/* ── STRAIGHT DIGITIZED GREEN UNDERLINE ── */
.marker-line,
.usa-pride-section .marker-line {
  padding-bottom: 0 !important;
  border-bottom: none !important;
  text-decoration: underline !important;
  text-decoration-color: var(--retro-green) !important;
  text-decoration-thickness: 3px !important;
  text-underline-offset: 4px !important;
  position: relative !important;
  top: -6px !important;
}
.marker-line::after,
.usa-pride-section .marker-line::after {
  display: none !important;
}
.usa-pride-text {
  color: var(--retro-green) !important;
}

/* ── PORTFOLIO SECTION ── */
.portfolio-section {
  padding: 100px 0;
  border-top: 1px solid var(--retro-green-dim);
  position: relative;
  z-index: 9999;
}
.portfolio-card,
.portfolio-browser,
.portfolio-screenshot,
.portfolio-screenshot img {
  position: relative;
  z-index: 9999;
}
.portfolio-label {
  font-family: 'VT323', monospace !important;
  font-size: 18px !important;
  color: var(--retro-green-dim) !important;
  letter-spacing: 0.18em !important;
  text-align: center;
  margin-bottom: 12px;
}
.portfolio-heading {
  font-family: 'Press Start 2P', monospace !important;
  font-size: clamp(18px, 2.4vw, 32px) !important;
  color: var(--retro-green) !important;
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.5 !important;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.portfolio-card:nth-child(-n+3) {
  grid-column: span 2;
}
.portfolio-card:nth-child(4) {
  grid-column: 2 / 4;
}
.portfolio-card:nth-child(5) {
  grid-column: 4 / 6;
}
.portfolio-card:nth-child(6),
.portfolio-card:nth-child(7),
.portfolio-card:nth-child(8) {
  grid-column: span 2;
}
.portfolio-card {
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  border: 1px solid var(--retro-green-dim);
  overflow: hidden;
  transition: border-color 0.18s, transform 0.18s;
}
.portfolio-card:hover {
  border-color: var(--retro-green) !important;
  transform: translateY(-3px);
}
.portfolio-browser {
  background: #111;
  border-bottom: 1px solid var(--retro-green-dim);
}
.portfolio-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(69,200,122,0.12);
}
.portfolio-dots {
  display: flex;
  gap: 4px;
}
.portfolio-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--retro-green-dim);
  opacity: 0.4;
}
.portfolio-url {
  font-family: 'VT323', monospace;
  font-size: 12px;
  color: var(--retro-green-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.portfolio-screenshot {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
  position: relative;
}
.portfolio-screenshot iframe {
  width: 1440px !important;
  height: 900px !important;
  border: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.2) !important;
  transform-origin: top left !important;
  z-index: 1;
  pointer-events: auto;
}
.portfolio-iframe-fallback {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.portfolio-iframe-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(0.9);
}
.portfolio-open-btn {
  font-family: 'VT323', monospace;
  font-size: 16px;
  color: var(--retro-green-dim);
  text-decoration: none;
  margin-left: auto;
  padding: 0 4px;
  transition: color 0.15s;
  flex-shrink: 0;
}
.portfolio-open-btn:hover {
  color: var(--retro-green) !important;
}
.portfolio-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px 16px;
  background: #0a0a10;
}
.portfolio-card-name {
  font-family: 'VT323', monospace;
  font-size: 20px;
  color: var(--retro-green);
  line-height: 1.2;
}
.portfolio-card-type {
  font-family: 'VT323', monospace;
  font-size: 14px;
  color: var(--retro-green-dim);
  line-height: 1.3;
}
.portfolio-card-url {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'VT323', monospace;
  font-size: 13px;
  color: var(--retro-green-dim);
  margin-top: 4px;
  opacity: 0.7;
}
.portfolio-footer-note {
  font-family: 'VT323', monospace !important;
  font-size: 16px !important;
  color: var(--retro-green-dim) !important;
  text-align: center;
  opacity: 0.6;
}
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-card:nth-child(n) {
    grid-column: span 1;
  }
}
@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-heading {
    font-size: 16px !important;
  }
}

/* ── SERVICE TILES ── */

.services-tiles-section {
  padding: 80px 0;
  border-top: 1px solid var(--retro-green-dim);
}
.services-tiles-label {
  font-family: 'VT323', monospace !important;
  font-size: 18px !important;
  color: var(--retro-green-dim) !important;
  letter-spacing: 0.18em !important;
  text-align: center;
  margin-bottom: 40px;
}
.services-tiles-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.stg-row {
  display: flex;
  gap: 16px;
}
.stg-row > .service-tile {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .services-tiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .stg-row {
    display: contents;
  }
  .service-tile-more {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .services-tiles-grid .service-tile {
    grid-column: span 2;
  }
}
.service-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  text-decoration: none !important;
  color: #111111 !important;
  font-family: 'Inter', sans-serif !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  transition: box-shadow 0.25s, background 0.25s, color 0.25s;
  cursor: pointer;
  position: relative;
}
.service-tile-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.service-tile-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.service-tile-logo-group {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-shrink: 0;
}
.service-tile-logo-group svg {
  width: 24px;
  height: 24px;
}
.service-tile:hover {
  background: #E8590C !important;
  box-shadow: none !important;
}
.service-tile:hover .service-tile-name {
  color: #ffffff;
}
.service-tile:hover .service-tile-desc {
  color: #ffffff !important;
}
.service-tile-name {
  color: #111111;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}
.service-tile-desc {
  font-size: 13px;
  color: #555555;
  line-height: 1.55;
  flex: 1;
  margin: 0;
  position: relative;
  z-index: 1;
}
.service-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #111111;
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  margin-top: auto;
}
.service-tile:hover .service-tile-cta {
  background: transparent !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.service-tile-more {
  border: none;
  background: #ffffff;
  animation: none;
  position: relative;
}
.service-tile-more .service-tile-name {
  color: #111111 !important;
  position: relative;
  z-index: 1;
}
.service-tile-more .service-tile-desc {
  color: #555555 !important;
  position: relative;
  z-index: 1;
}
.service-tile-more .service-tile-cta {
  color: #111111 !important;
  border-color: #111111 !important;
  position: relative;
  z-index: 1;
}
.service-tile-more:hover {
  background: #ffffff !important;
  animation: none !important;
}
.service-tile-more:hover .service-tile-name { color: #111111 !important; }
.service-tile-more:hover .service-tile-desc { color: #555555 !important; }
.service-tile-more:hover .service-tile-cta {
  color: #111111 !important;
  border-color: #111111 !important;
  background: transparent !important;
}
@media (max-width: 768px) {
  .hero {
    padding-bottom: 80px !important;
  }
  .carousel-heading {
    margin-top: 60px !important;
    padding-top: 60px !important;
  }
  .usa-pride-heading {
    font-size: 52px !important;
    white-space: normal !important;
  }
  .usa-pride-heading .marker-line {
    font-size: 64px !important;
  }
}
@media (max-width: 480px) {
  .usa-pride-heading {
    font-size: 42px !important;
    white-space: normal !important;
  }
  .usa-pride-heading .marker-line {
    font-size: 54px !important;
  }
}

/* ── MEET THE TEAM SECTION ── */
.meet-team-section {
  padding: 100px 0;
  border-top: 1px solid var(--retro-green-dim);
}
.meet-team-section .section-label {
  font-family: 'VT323', monospace !important;
  font-size: 18px !important;
  color: var(--retro-green-dim) !important;
  letter-spacing: 0.18em !important;
  text-align: center;
  margin-bottom: 10px;
}
.meet-team-section .section-heading-lg {
  text-align: center;
  margin-bottom: 60px;
}
.meet-team-card {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 960px;
  margin: 0 auto;
}
/* Bust out of the body > section z-index:1 stacking context */
.meet-team-section {
  position: static !important;
  z-index: auto !important;
}
.meet-team-photo-wrap {
  position: relative;
  flex-shrink: 0;
  z-index: 9999;
  transform: translateZ(0);
}
.meet-team-photo {
  width: 320px;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 2px solid var(--retro-green-dim);
}
.meet-team-photo-border {
  position: absolute;
  inset: 10px -10px -10px 10px;
  border: 2px solid var(--retro-green-dim);
  pointer-events: none;
  opacity: 0.4;
}
.meet-team-role {
  font-family: 'VT323', monospace !important;
  font-size: 18px !important;
  color: var(--retro-green-dim) !important;
  letter-spacing: 0.12em !important;
  margin-bottom: 8px !important;
}
.meet-team-name {
  font-family: 'Press Start 2P', monospace !important;
  font-size: 28px !important;
  color: var(--retro-green) !important;
  text-shadow: var(--retro-glow) !important;
  margin-bottom: 24px !important;
  line-height: 1.4 !important;
}
.meet-team-bio {
  font-family: 'VT323', monospace !important;
  font-size: 21px !important;
  color: rgba(69,200,122,0.8) !important;
  line-height: 1.55 !important;
  margin-bottom: 24px !important;
}
.meet-team-points {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 32px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.meet-team-points li {
  font-family: 'VT323', monospace !important;
  font-size: 19px !important;
  color: rgba(69,200,122,0.75) !important;
  padding-left: 20px;
  position: relative;
}
.meet-team-points li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--retro-green);
}
@media (max-width: 768px) {
  .meet-team-card {
    flex-direction: column;
    gap: 40px;
  }
  .meet-team-photo {
    width: 100%;
    height: 340px;
  }
  .meet-team-name {
    font-size: 20px !important;
  }
}


/* ── WEB DESIGN TILE HOVER ICON ── */
a[href="/custom-website-design"]:hover .service-tile-logo {
  content: url('/carousel-logos/pixel-computer-hover.png?v=1') !important;
  width: 28px !important;
  height: 28px !important;
}

/* ── PROCESS SECTION TEXT SIZE ── */
.process-card p {
  font-size: 20px !important;
  line-height: 1.5 !important;
  color: rgba(69,200,122,0.75) !important;
}
.process-checklist li {
  font-size: 18px !important;
  color: rgba(69,200,122,0.7) !important;
}
.tp-check-item {
  font-size: 20px !important;
}

/* ── MEET TEAM PRICING BUTTON ── */
.meet-team-pricing-btn {
  display: inline-block;
  font-family: 'VT323', monospace !important;
  font-size: 20px !important;
  color: var(--retro-bg) !important;
  background: var(--retro-green) !important;
  border: 2px solid var(--retro-green) !important;
  border-radius: 0 !important;
  padding: 10px 28px !important;
  text-decoration: none !important;
  letter-spacing: 0.08em !important;
  transition: background 0.15s, color 0.15s !important;
}
.meet-team-pricing-btn:hover {
  background: var(--retro-green-dim) !important;
  border-color: var(--retro-green-dim) !important;
  color: var(--retro-bg) !important;
  text-shadow: none !important;
}

/* ── MOBILE HERO TWEAKS ── */
@media (max-width: 768px) {
  .hero-sub-mobile,
  .hero-sub-desktop {
    display: none !important;
  }
  .hero-headline {
    font-size: 7.5vw !important;
    line-height: 1.15 !important;
  }
}
@media (max-width: 480px) {
  .hero-headline {
    font-size: 8.5vw !important;
  }
}

/* ── TRANSPARENT PRICING CHECKLIST TEXT ── */
.tp-check-item {
  font-family: 'VT323', monospace !important;
  font-size: 24px !important;
  color: rgba(69,200,122,0.85) !important;
}

/* ── SEO / GEO / AIO CARD TEXT SIZE ── */
.seo-card > p:last-of-type {
  font-family: 'VT323', monospace !important;
  font-size: 22px !important;
  line-height: 1.4 !important;
  color: rgba(69,200,122,0.8) !important;
}
.seo-card-label {
  font-family: 'VT323', monospace !important;
  font-size: 20px !important;
  letter-spacing: 2px !important;
  color: var(--retro-green) !important;
}
.seo-metric-val {
  font-family: 'Press Start 2P', monospace !important;
  font-size: 18px !important;
  color: var(--retro-green) !important;
}
.seo-metric-lbl {
  font-family: 'VT323', monospace !important;
  font-size: 18px !important;
  color: rgba(69,200,122,0.65) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

/* ── PRICING MODAL ── */
.pricing-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.pricing-modal-overlay.active {
  display: flex;
}
.pricing-modal-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 40px 40px;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  text-align: center;
}
.pricing-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #999;
  line-height: 1;
  padding: 4px 8px;
}
.pricing-modal-close:hover { color: #111; }
.pricing-modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #E8590C;
  margin: 0 0 10px;
}
.pricing-modal-title {
  font-family: 'Figtree','Inter',sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #111111;
  margin: 0 0 32px;
  line-height: 1.2;
}
.pricing-modal-options {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.pricing-modal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 14px;
  text-decoration: none !important;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  background: #fafafa;
}
.pricing-modal-card:hover {
  border-color: #E8590C;
  box-shadow: 0 6px 24px rgba(232,89,12,0.12);
  transform: translateY(-2px);
  background: #fff;
}
.pricing-modal-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: background 0.2s;
}
.pricing-modal-card-icon--logo {
  background: transparent;
  width: auto;
  height: 44px;
}
.pricing-modal-card:hover .pricing-modal-card-icon--logo {
  background: transparent;
}
.pricing-modal-card:hover .pricing-modal-card-icon {
  background: #fde8dc;
  color: #E8590C;
}
.pricing-modal-card-name {
  font-family: 'Figtree','Inter',sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #111;
}
.pricing-modal-card-sub {
  font-size: 12px;
  color: #888;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .pricing-modal-options { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .pricing-modal-options { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .pricing-modal-box { padding: 36px 24px 28px; }
}

/* ═══════════════════════════════════════════════
   GLOBAL PRESENCE — Homepage Teaser Section
═══════════════════════════════════════════════ */
.global-presence-section {
  padding: 100px 0;
  text-align: center;
  background: #06060b;
  position: relative;
  overflow: hidden;
}
.global-presence-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 0%, rgba(232,89,12,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.global-locations-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 36px 0 48px;
}
.global-loc-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  padding: 11px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  cursor: default;
}
.global-loc-chip:hover {
  background: rgba(232,89,12,0.10);
  border-color: rgba(232,89,12,0.35);
  color: #fff;
  transform: translateY(-2px);
}
.global-loc-chip .chip-flag {
  font-size: 22px;
  line-height: 1;
}

/* ═══════════════════════════════════════════════
   GLOBAL PAGE — /global
═══════════════════════════════════════════════ */
.global-hero {
  padding: 130px 0 60px;
  text-align: center;
}
.globe-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 72px;
  position: relative;
}
.globe-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(232,89,12,0.25) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
#sitement-globe {
  display: block;
  border-radius: 50%;
}
.global-locs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 80px;
}
.global-loc-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 36px 32px;
  text-align: left;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.global-loc-card:hover {
  border-color: rgba(232,89,12,0.3);
  background: rgba(232,89,12,0.04);
  transform: translateY(-3px);
}
.global-loc-card .card-flag {
  font-size: 42px;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}
.global-loc-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.global-loc-card .card-city {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #E8590C;
  margin: 0 0 18px;
}
.global-loc-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
  margin: 0 0 26px;
}
.global-loc-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #E8590C;
  text-decoration: none;
  transition: gap 0.2s;
}
.global-loc-card .card-link:hover { gap: 10px; }
.global-loc-card .card-link svg { transition: transform 0.2s; }
.global-loc-card .card-link:hover svg { transform: translateX(3px); }

@media (max-width: 768px) {
  .global-locs-grid { grid-template-columns: 1fr; }
  .global-hero { padding: 90px 0 40px; }
  .global-loc-card { padding: 28px 24px 24px; }
  .global-presence-section { padding: 72px 0; }
}

/* ══════════════════════════════════════════════════════
   TRANSPARENT PRICING — Background Gradient Animation
   (Aceternity BackgroundGradientAnimation port, vanilla)
══════════════════════════════════════════════════════ */
@keyframes tpMoveVertical {
  0%   { transform: translateY(-50%); }
  50%  { transform: translateY(50%);  }
  100% { transform: translateY(-50%); }
}
@keyframes tpMoveInCircle {
  0%   { transform: rotate(0deg);   }
  50%  { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}
@keyframes tpMoveHorizontal {
  0%   { transform: translateX(-50%) translateY(-10%); }
  50%  { transform: translateX(50%)  translateY(10%);  }
  100% { transform: translateX(-50%) translateY(-10%); }
}
/* Light base for the banner */
.tp-banner {
  background: linear-gradient(40deg, #faf0ff, #fff5fb) !important;
}
/* No border on the banner */
.tp-banner::before {
  display: none !important;
}
/* Hide the old static glow — replaced by blobs */
.tp-glow { display: none !important; }
/* Container gets the gooey filter */
.tp-grad-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  filter: url(#tpBlurFilter) blur(40px);
  pointer-events: none;
}
/* Shared blob base */
.tp-grad-blob {
  position: absolute;
  width: 80%;
  height: 80%;
  top:  calc(50% - 40%);
  left: calc(50% - 40%);
  mix-blend-mode: hard-light;
  opacity: 1;
}
/* Individual blobs — summer palette: pink, sky-blue, yellow, lavender, mint */
.tp-grad-1 {
  background: radial-gradient(circle at center, rgba(255,140,200,1) 0, rgba(255,140,200,1) 50%) no-repeat;
  transform-origin: center center;
  animation: tpMoveVertical 30s ease infinite;
}
.tp-grad-2 {
  background: radial-gradient(circle at center, rgba(100,200,255,0.8) 0, rgba(100,200,255,0) 50%) no-repeat;
  transform-origin: calc(50% - 400px);
  animation: tpMoveInCircle 20s reverse infinite;
}
.tp-grad-3 {
  background: radial-gradient(circle at center, rgba(190,130,255,0.8) 0, rgba(190,130,255,0) 50%) no-repeat;
  transform-origin: calc(50% + 400px);
  animation: tpMoveInCircle 40s linear infinite;
}
.tp-grad-4 {
  background: radial-gradient(circle at center, rgba(255,235,100,0.8) 0, rgba(255,235,100,0) 50%) no-repeat;
  transform-origin: calc(50% - 200px);
  animation: tpMoveHorizontal 40s ease infinite;
  opacity: 0.7;
}
.tp-grad-5 {
  background: radial-gradient(circle at center, rgba(120,240,190,0.8) 0, rgba(120,240,190,0) 50%) no-repeat;
  transform-origin: calc(50% - 800px) calc(50% + 800px);
  animation: tpMoveInCircle 20s ease infinite;
}
/* Interactive pointer blob */
.tp-grad-interactive {
  position: absolute;
  background: radial-gradient(circle at center, rgba(220,160,255,0.8) 0, rgba(220,160,255,0) 50%) no-repeat;
  mix-blend-mode: hard-light;
  width: 100%;
  height: 100%;
  top:  -50%;
  left: -50%;
  opacity: 0.7;
  pointer-events: none;
  will-change: transform;
}

/* ── TRANSPARENT PRICING: black text on light background ── */
.tp-banner-left h2 {
    color: #111111 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    text-shadow: none !important;
    line-height: 1.12 !important;
}
.tp-banner .tp-check-item {
    color: #222222 !important;
    text-shadow: none !important;
}
.tp-banner .tp-banner-sub {
    color: #555555 !important;
}

/* ── TP-BANNER: eyebrow dark on light gradient background ── */
.tp-banner .tp-eyebrow {
    color: #444444 !important;
}
.tp-banner .tp-eyebrow::before {
    background: #444444 !important;
}

/* ── TP-BANNER: View Pricing button — white bg, black text, no hover effect ── */
.tp-cta {
    background: #ffffff !important;
    color: #111111 !important;
    box-shadow: none !important;
    border: none !important;
    transition: none !important;
}
.tp-cta span {
    transition: none !important;
    background: transparent !important;
}
.tp-cta-arrow {
    background: rgba(0,0,0,0.08) !important;
    transition: none !important;
}
.tp-cta:hover {
    box-shadow: none !important;
    transform: none !important;
}
.tp-cta:hover span {
    background: transparent !important;
}
.tp-cta:hover .tp-cta-arrow {
    background: rgba(0,0,0,0.08) !important;
    transform: none !important;
}

/* ── TP-BANNER: View Pricing button — white, black text, no hover effect ── */
.tp-banner-right .meet-team-pricing-btn,
.tp-banner-right .meet-team-pricing-btn:hover {
    background: #ffffff !important;
    color: #111111 !important;
    border-color: transparent !important;
    border-radius: 100px !important;
    font-family: 'Inter', -apple-system, sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transition: none !important;
    transform: none !important;
}

/* ── MEET TEAM: View Pricing button — white, black text, rounded, no hover effect ── */
.meet-team-content .meet-team-pricing-btn,
.meet-team-content .meet-team-pricing-btn:hover {
    background: #ffffff !important;
    color: #111111 !important;
    border: none !important;
    border-radius: 100px !important;
    font-family: 'Inter', -apple-system, sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transition: none !important;
    transform: none !important;
}

/* ── Typewriter cursor ── */
.typewriter-cursor {
    display: inline-block;
    font-weight: 300;
    opacity: 1;
    margin-left: 1px;
}
.typewriter-cursor.blinking {
    animation: twCursorBlink 0.7s step-end infinite;
}
@keyframes twCursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ══════════════════════════════════════════
   SIMPLE CONTACT FORM (SCF)
   Red background, yellow text, in-theme
   ══════════════════════════════════════════ */
.contact {
    background: #d31800;
    padding: 80px 24px;
}
.contact .contact-main-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #f0ff6a;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.contact .contact-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 40px;
}
.scf {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.scf-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.scf-row { display: flex; flex-direction: column; gap: 6px; }
.scf-full { width: 100%; }
.scf-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f0ff6a;
}
.scf-req { color: #f0ff6a; margin-left: 2px; }
.scf-opt {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.72rem;
    margin-left: 4px;
}
.scf-input {
    width: 100%;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 1rem;
    color: #d31800;
    font-family: inherit;
    outline: none;
    transition: border-color 0.18s, background 0.18s;
}
.scf-input::placeholder { color: rgba(255,255,255,0.35); }
.scf-input:focus {
    border-color: #f0ff6a;
    background: rgba(255,255,255,0.18);
}
.scf-textarea { resize: vertical; min-height: 110px; }
.scf-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 4px;
}
.scf-method { cursor: pointer; }
.scf-method input { display: none; }
.scf-method-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 12px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 600;
    transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.scf-method input:checked ~ .scf-method-inner {
    border-color: #f0ff6a;
    background: rgba(240,255,106,0.12);
    color: #f0ff6a;
}
.scf-method:hover .scf-method-inner {
    border-color: rgba(240,255,106,0.5);
    color: #f0ff6a;
}
.scf-foot { margin-top: 8px; }
.scf-submit {
    background: #f0ff6a;
    color: #d31800 !important;
    border: none;
    border-radius: 100px;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
    font-family: inherit;
    letter-spacing: -0.01em;
}
.scf-submit:hover { background: #ffffff; transform: translateY(-1px); }
.scf-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.scf-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 0;
    color: #f0ff6a;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}
.scf-success-check {
    width: 52px; height: 52px;
    background: #f0ff6a;
    color: #d31800;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
}
@media (max-width: 600px) {
    .scf-two-col { grid-template-columns: 1fr; }
    .scf-methods { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════
   SERVICES BUTTON ROW
   ══════════════════════════════════════════ */
.services-tiles-section {
    padding: 36px 0 !important;
    background: #d31800 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.services-tiles-section::before { display: none !important; }
.svc-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #f0ff6a !important;
    letter-spacing: 0.04em;
    text-align: center;
    margin: 0 0 20px;
}
.svc-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    align-items: center;
    justify-content: center;
}
.svc-btn {
    display: inline-block;
    padding: 0;
    border: none;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #f0ff6a !important;
    text-decoration: none;
    letter-spacing: 0.04em;
    background: transparent !important;
    transition: none !important;
}
.svc-btn:hover {
    color: #f0ff6a !important;
    background: transparent !important;
    border: none !important;
    text-decoration: none !important;
}

/* ══════════════════════════════════════════
   ARKIE / STRATEGIST SECTION
   ══════════════════════════════════════════ */
.mobile-red-top {
    display: none;
}
@media (max-width: 768px) {
    .mobile-red-top {
        display: block;
        background: #d31800;
        height: 48px;
    }
}
.arkie-wrap {
    background: #d31800;
    padding: 24px;
    padding-top: 80px;
}
.arkie-tagline {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding: 48px 48px 72px 40px;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    color: #f0ff6a;
    letter-spacing: -0.04em;
    line-height: 0.95;
}
.arkie-tagline span {
    display: block;
}
@media (max-width: 768px) {
    .arkie-tagline {
        font-size: clamp(2.5rem, 12vw, 5rem);
        padding: 36px 20px 56px 20px;
    }
}
.arkie-intro {
    text-align: center;
    padding: 40px 40px 36px;
    font-size: clamp(1.4rem, 2.8vw, 2.6rem);
    font-weight: 800;
    color: #f0ff6a;
    letter-spacing: -0.02em;
    line-height: 1.5;
    max-width: 900px;
    margin: 180px auto 0;
    min-height: calc(clamp(1.4rem, 2.8vw, 2.6rem) * 1.5 * 9);
}
.arkie-intro-cursor {
    display: inline-block;
    color: #f0ff6a;
    animation: arkie-blink 0.75s step-end infinite;
    margin-left: 2px;
}
@keyframes arkie-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
@media (max-width: 768px) {
    .arkie-wrap {
        padding-top: 48px;
        display: flex;
        flex-direction: column;
    }
    .arkie-section  { order: 3; }
    .arkie-tagline  { order: 1; }
    .arkie-intro    { order: 2; }
    .arkie-intro {
        padding: 32px 16px 24px;
        font-size: clamp(1.25rem, 5vw, 1.8rem);
        min-height: calc(1.8rem * 1.5 * 9);
        margin-top: 100px;
        margin-bottom: 60px;
    }
}
.arkie-section {
    display: grid;
    grid-template-columns: 40% 1fr;
    min-height: 600px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}
.arkie-grain-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.2;
}
.arkie-photo {
    position: relative;
    z-index: 2;
    padding: 5%;
}
.arkie-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    isolation: isolate; /* scope stacking context so ::after can beat img z-index:9999 */
}
.arkie-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 10000;
    border-radius: 20px;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 3px,
        rgba(0, 0, 0, 0.2) 3px,
        rgba(0, 0, 0, 0.2) 4px
    );
}
.arkie-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
.arkie-content {
    position: relative;
    z-index: 2;
    padding: 56px 52px 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}
.arkie-item {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.arkie-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.arkie-item-title {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 700;
    color: #f0ff6a;
    margin: 0 0 10px;
}
.arkie-item-body {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 768px) {
    .arkie-section {
        grid-template-columns: 1fr;
        grid-template-rows: 360px auto;
    }
    .arkie-content {
        padding: 36px 24px;
    }
    .arkie-item-title {
        font-size: 1.5rem;
    }
    .arkie-item-body {
        font-size: 1rem;
    }
}

/* ── FOOTER COLOUR OVERRIDES — yellow bg, all red ── */
.footer,
.footer-description,
.footer-trust-item,
.footer-contact-line,
.footer-nap,
.footer-tagline,
.footer-bottom p,
.footer-about-text,
.footer-why-label,
.footer-why-num,
.footer-why-text {
    color: #d31800 !important;
}
.footer-links-col h4,
.footer-links-col h3 {
    color: #d31800 !important;
}
.footer-links-col ul li a {
    color: #d31800 !important;
}
.footer-links-col ul li a:hover {
    color: #a01000 !important;
}
.footer-bottom-links a {
    color: #d31800 !important;
}
.footer-bottom-links a:hover {
    color: #a01000 !important;
}
.footer-social-link {
    color: #d31800 !important;
}
.footer-bottom {
    border-top-color: rgba(211, 24, 0, 0.3) !important;
}
.footer-about {
    border-top-color: rgba(211, 24, 0, 0.25) !important;
}
.footer-nap {
    border-color: #d31800 !important;
}
/* SVG icons inside footer — stroke/fill to red */
.footer svg {
    color: #d31800;
    stroke: #d31800;
}
.footer-trust-icon circle,
.footer-trust-icon polyline {
    stroke: #d31800;
    fill: rgba(211, 24, 0, 0.15);
}
/* address text */
.footer address {
    color: rgba(211, 24, 0, 0.7) !important;
}

/* ── SERVICES COMPUTER SECTION ── */
.srv-computer-section {
    padding: 80px 0 60px;
    background: #d31800;
}
.srv-computer-wrap {
    position: relative;
    max-width: 620px;
    margin: 0 auto;
    user-select: none;
}
.srv-computer-img {
    width: 100%;
    display: block;
}
/* Screen text overlay — positioned over the CRT screen area of the SVG */
.srv-screen-overlay {
    position: absolute;
    top: 8.5%;
    left: 25%;
    width: 41%;
    height: 34%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    padding: 4% 5%;
    box-sizing: border-box;
    pointer-events: none;
}
.srv-screen-panel {
    display: none;
    flex-direction: column;
    gap: 6px;
}
.srv-screen-panel.active {
    display: flex;
}
.srv-screen-title {
    font-family: inherit;
    font-size: clamp(0.6rem, 2vw, 1rem);
    font-weight: 900;
    color: #d31800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0 0 4px;
    line-height: 1.1;
}
.srv-screen-body {
    font-size: clamp(0.45rem, 1.3vw, 0.68rem);
    color: #3a2200;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}
/* Transparent clickable buttons placed over keyboard keys + mouse */
.srv-key-btn {
    position: absolute;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 6px;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.srv-key-btn:hover {
    background: rgba(240, 255, 106, 0.15);
}
.srv-key-btn.active {
    background: rgba(240, 255, 106, 0.25);
    box-shadow: inset 0 0 0 2px rgba(240, 255, 106, 0.5);
}
@media (max-width: 600px) {
    .srv-computer-section { padding: 48px 0 40px; }
    .srv-computer-wrap { max-width: 100%; }
    .srv-screen-title { font-size: clamp(0.5rem, 3.5vw, 0.75rem); }
    .srv-screen-body  { font-size: clamp(0.38rem, 2.2vw, 0.55rem); }
}
