/* ============================================================================
   Padoori — Shared Landing Page Styles
   Extracted from get-started.html so niche landing pages (junk removal,
   personal injury, etc.) share one stylesheet. Loaded after styles.css,
   which supplies the design tokens (CSS variables) these rules reference.
   ============================================================================ */

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

        body {
            font-family: var(--font-sans);
            background-color: var(--bg-base);
            color: var(--text-primary);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            letter-spacing: -0.01em;
            -webkit-font-smoothing: antialiased;
        }

        /* ── Containers & Main layout ── */
        .gs-container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
            width: 100%;
        }

        main {
            flex: 1;
            padding-top: calc(var(--spacing-xl) + 4.5rem);
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

        /* â”€â”€ Hero Section â”€â”€ */
        .gs-hero-section {
            width: 100%;
            padding: 2rem 0;
        }

        .gs-hero-grid {
            display: grid;
            grid-template-columns: 1.25fr 0.75fr;
            gap: 4rem;
            align-items: center;
        }

        .gs-hero-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .gs-hero-title {
            font-size: clamp(2rem, 4.2vw, 2.8rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.03em;
            color: var(--text-primary);
        }

        .gs-highlight-italic {
            font-family: "Georgia", "Playfair Display", serif;
            font-style: italic;
            font-weight: 500;
            color: var(--accent-blue);
        }

        .gs-hero-desc {
            font-size: 1.05rem;
            line-height: 1.6;
            color: var(--text-secondary);
        }

        .gs-hero-desc strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .gs-hero-cta-group {
            display: flex;
            gap: 1rem;
            width: 100%;
            margin-top: 0.5rem;
        }

        /* CTA buttons */
        .btn-gs-scroll {
            padding: 0.85rem 1.75rem;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        /* â”€â”€ Right Column: structured video mockup â”€â”€ */
        .gs-hero-right {
            width: 100%;
        }

        .gs-video-card {
            width: 100%;
            max-width: 320px;
            aspect-ratio: 9 / 16;
            background: #000;
            border-radius: 36px;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border-strong);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        .gs-video-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 1;
            display: block;
            cursor: pointer;
        }

        .gs-video-overlay-gradient {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 100%);
            z-index: 1;
        }

        .gs-play-button {
            position: absolute;
            z-index: 3;
            width: 68px;
            height: 68px;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(12px);
            border: 1.5px solid rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .gs-play-button:hover {
            transform: scale(1.08);
            background: rgba(255, 255, 255, 0.45);
            border-color: #ffffff;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
        }

        .gs-play-icon {
            width: 20px;
            height: 20px;
            margin-left: 4px;
        }

        .gs-video-badge-top {
            position: absolute;
            top: 1.25rem;
            left: 1.25rem;
            background: rgba(29, 29, 31, 0.8);
            backdrop-filter: blur(8px);
            color: #ffffff;
            padding: 0.35rem 0.75rem;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 2;
        }

        .gs-video-badge-bottom {
            position: absolute;
            bottom: 1.25rem;
            right: 1.25rem;
            background: rgba(29, 29, 31, 0.85);
            backdrop-filter: blur(8px);
            color: var(--accent-emerald);
            padding: 0.4rem 0.85rem;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            border: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 2;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        /* macOS/iOS style clean notification card overlays */
        .gs-video-notifications {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            z-index: 2;
            max-width: 220px;
        }

        .gs-notification-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 12px;
            padding: 0.6rem 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .gs-notification-card:hover {
            transform: translateX(-4px);
        }

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

        .gs-notif-dot.red {
            background-color: var(--accent-rose);
            box-shadow: 0 0 8px rgba(255, 59, 48, 0.4);
        }

        .gs-notif-dot.green {
            background-color: var(--accent-emerald);
            box-shadow: 0 0 8px rgba(52, 199, 89, 0.4);
        }

        .gs-notif-content {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }

        .gs-notif-title {
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .gs-notif-sub {
            font-size: 0.65rem;
            color: var(--text-secondary);
        }

        /* â”€â”€ Comparison Table Section â”€â”€ */
        .gs-stats-section {
            width: 100%;
            padding: 2rem 0 1rem;
        }

        .gs-stats-header {
            text-align: center;
            margin-bottom: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .gs-stats-header h2 {
            font-size: 2.25rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--text-primary);
        }

        .gs-stats-header p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .gs-table-wrapper {
            width: 100%;
            overflow-x: auto;
            border-radius: 20px;
            border: 1px solid var(--border-strong);
            background: var(--bg-surface);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02);
            position: relative;
        }

        .gs-comparison-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            font-size: 0.92rem;
        }

        .gs-comparison-table th, 
        .gs-comparison-table td {
            padding: 1.1rem 1.5rem;
            border-bottom: 1px solid var(--border-subtle);
            vertical-align: middle;
        }

        .gs-comparison-table tr:last-child td {
            border-bottom: none;
        }

        /* Column Specific Rules */
        .gs-col-feature { width: 25%; }
        .gs-col-human { width: 18%; }
        .gs-col-ai { width: 18%; }
        .gs-col-impact { width: 21%; }
        .gs-col-estimate { width: 18%; }

        .gs-agent-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.85rem;
            letter-spacing: -0.01em;
        }

        .gs-agent-header .gs-icon {
            width: 16px;
            height: 16px;
            color: var(--text-tertiary);
            flex-shrink: 0;
        }

        .gs-feature-name {
            font-weight: 600;
            color: var(--text-primary);
        }

        .gs-value-human {
            color: var(--text-primary);
            font-weight: 600;
        }

        .gs-value-ai {
            color: var(--accent-blue);
            font-weight: 700;
            font-size: 0.95rem;
        }

        .gs-value-estimate {
            font-weight: 600;
            color: var(--text-secondary);
        }

        /* Highlights: Revenue Impact Highlighted Column (Apple Blue Outline style) */
        .gs-comparison-table th.highlighted-header {
            background-color: rgba(0, 102, 204, 0.015);
            border-left: 1px solid rgba(0, 102, 204, 0.08);
            border-right: 1px solid rgba(0, 102, 204, 0.08);
            font-weight: 700;
        }

        .gs-comparison-table td.highlighted-cell {
            background-color: rgba(0, 102, 204, 0.015);
            border-left: 1px solid rgba(0, 102, 204, 0.08);
            border-right: 1px solid rgba(0, 102, 204, 0.08);
        }

        /* Status tags inside table */
        .gs-badge-status {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.25rem 0.6rem;
            border-radius: 6px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

        .gs-badge-status.green {
            background-color: rgba(52, 199, 89, 0.1);
            color: #248a3d;
        }

        .gs-badge-status.orange {
            background-color: rgba(255, 149, 0, 0.1);
            color: #b25900;
        }

        .gs-badge-status.neutral {
            background-color: rgba(142, 142, 147, 0.1);
            color: #6e6e73;
        }

        /* â”€â”€ Section 3: Smartphone & Reviews Marquee â”€â”€ */
        .gs-terminal-reviews-section {
            width: 100%;
            padding: 4.5rem 0;
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .gs-terminal-reviews-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
            gap: 5.5rem;
            align-items: center;
        }

        /* Smartphone Mockup Frame */
        .gs-phone-container-wrap {
            position: relative;
            width: 100%;
            max-width: 380px;
            margin: 0 auto;
            padding: 1.5rem 0;
        }

        .gs-phone-mockup {
            width: 100%;
            max-width: 320px;
            background: #000000;
            border-radius: 44px;
            padding: 10px;
            border: 4px solid #2d2d30;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            position: relative;
            margin: 0 auto;
        }

        .gs-phone-screen {
            background: #0c0e12;
            border-radius: 36px;
            height: 480px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Dynamic Island */
        .gs-phone-island {
            width: 90px;
            height: 20px;
            background: #000000;
            border-radius: 999px;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        /* Status Bar */
        .gs-phone-statusbar {
            height: 32px;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
            background: #0c0e12;
            z-index: 5;
            padding-top: 4px;
        }

        .gs-statusbar-icons {
            display: flex;
            gap: 4px;
            align-items: center;
        }

        .gs-statusbar-battery {
            width: 16px;
            height: 8px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 2px;
            position: relative;
            padding: 1px;
        }

        .gs-statusbar-battery::after {
            content: '';
            width: 2px;
            height: 20%;
            background: rgba(255, 255, 255, 0.8);
            position: absolute;
            right: -2px;
            top: 35%;
        }

        .gs-statusbar-battery-fill {
            background: rgba(255, 255, 255, 0.8);
            height: 100%;
            width: 80%;
            border-radius: 1px;
        }

        /* Phone Screen Header */
        .gs-phone-header {
            padding: 0.75rem 1rem;
            background: #0f1217;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .gs-phone-caller-info {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
        }

        .gs-phone-caller-label {
            font-size: 0.58rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .gs-phone-caller-number {
            font-size: 0.78rem;
            font-weight: 700;
            color: #ffffff;
        }

        .gs-phone-badge {
            background: rgba(52, 199, 89, 0.15);
            border: 1px solid rgba(52, 199, 89, 0.25);
            color: var(--accent-emerald);
            font-size: 0.58rem;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .gs-phone-badge-dot {
            width: 4px;
            height: 4px;
            background: var(--accent-emerald);
            border-radius: 50%;
            display: inline-block;
            animation: pulse-green 1.5s infinite;
        }

        @keyframes pulse-green {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 1; }
        }

        /* Dynamic Chat Messages */
        .gs-phone-chat {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            background: #0c0e12;
            scrollbar-width: none;
        }
        .gs-phone-chat::-webkit-scrollbar {
            display: none;
        }

        .gs-chat-bubble {
            display: flex;
            gap: 0.5rem;
            max-width: 85%;
            animation: bubble-fade-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
            transform: translateY(10px);
        }
        
        @keyframes bubble-fade-in {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .gs-chat-bubble.caller {
            align-self: flex-start;
        }

        .gs-chat-bubble.agent {
            align-self: flex-end;
            flex-direction: row-reverse;
        }

        .gs-chat-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        .gs-chat-content {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 0.5rem 0.75rem;
            font-size: 0.78rem;
            line-height: 1.4;
            color: #ffffff;
        }

        .gs-chat-bubble.agent .gs-chat-content {
            background: var(--accent-blue);
            color: #ffffff;
        }

        /* Log window in Smartphone */
        .gs-phone-logs {
            height: 100px;
            background: #080a0d;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 0.65rem 1rem;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            font-family: monospace;
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.4);
            scrollbar-width: none;
        }
        .gs-phone-logs::-webkit-scrollbar {
            display: none;
        }

        .gs-log-entry {
            line-height: 1.3;
        }

        .gs-log-entry.success {
            color: var(--accent-emerald);
        }

        /* Floating glass cards overlapping the phone */
        .gs-phone-overlay-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-strong);
            border-radius: 16px;
            padding: 1rem 1.25rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
            z-index: 10;
            transition: all 0.3s ease;
        }

        .gs-phone-overlay-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
        }

        .gs-overlay-latency {
            top: 2.5rem;
            right: -2.5rem;
            width: 160px;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .gs-overlay-latency .card-label {
            font-size: 0.58rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--text-tertiary);
            letter-spacing: 0.05em;
        }

        .gs-overlay-latency .card-value {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--accent-blue);
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .gs-overlay-latency .card-subtext {
            font-size: 0.68rem;
            color: var(--text-secondary);
        }

        .gs-overlay-crm {
            bottom: 2.5rem;
            right: -3rem;
            width: 220px;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .gs-crm-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-subtle);
            padding-bottom: 0.35rem;
            margin-bottom: 0.15rem;
        }

        .gs-crm-logo {
            font-size: 0.65rem;
            font-weight: 700;
            color: var(--accent-blue);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .gs-crm-status-dot {
            width: 6px;
            height: 6px;
            background: var(--accent-emerald);
            border-radius: 50%;
        }

        .gs-crm-title {
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--text-primary);
        }

        .gs-crm-info {
            font-size: 0.72rem;
            color: var(--text-secondary);
        }

        .gs-crm-rating {
            font-size: 0.68rem;
            font-weight: 700;
            color: #d97706;
        }

        .gs-reviews-column {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            min-width: 0;
        }

        .gs-reviews-column h3 {
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--text-primary);
        }

        .gs-reviews-column p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-top: -1.25rem;
            margin-bottom: 1rem;
        }

        .gs-reviews-scroller-wrap {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 1rem 0;
            mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
        }

        .gs-reviews-track {
            display: flex;
            gap: 1.5rem;
            width: max-content;
            animation: scroll-marquee 30s linear infinite;
        }

        .gs-reviews-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll-marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .gs-review-card {
            width: 290px;
            background: var(--bg-base);
            border: 1px solid var(--border-strong);
            border-radius: 18px;
            padding: 1.5rem;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.01);
            transition: border-color var(--transition-fast);
        }

        .gs-review-card:hover {
            border-color: rgba(0, 102, 204, 0.2);
        }

        .gs-review-stars {
            color: #d97706;
            font-size: 0.85rem;
            letter-spacing: 2px;
        }

        .gs-review-text {
            font-size: 0.82rem;
            line-height: 1.55;
            color: var(--text-secondary);
            flex: 1;
        }

        .gs-review-author {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
            margin-top: 0.25rem;
        }

        .gs-author-name {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .gs-author-title {
            font-size: 0.68rem;
            color: var(--text-tertiary);
        }

        /* â”€â”€ Section 4: Interactive Call & Booking Section â”€â”€ */
        .gs-interactive-section {
            width: 100%;
            background: rgba(245, 247, 252, 0.5);
            padding: 5rem 0;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .gs-interactive-grid {
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: 3.5rem;
            align-items: start;
        }

        .gs-interactive-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-strong);
            border-radius: 24px;
            padding: 3rem 2.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.015);
        }

        .gs-card-header {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1.25rem;
        }

        .gs-card-label {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-tertiary);
        }

        .gs-card-header h2 {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .gs-card-desc {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        /* Demo Call Box */
        .gs-phone-box {
            display: flex;
            justify-content: center;
            margin: 2rem 0;
        }

        .gs-phone-number-link {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: -0.03em;
            padding: 0.85rem 2.2rem;
            border: 2px solid var(--text-primary);
            border-radius: 16px;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            background: transparent;
        }

        .gs-phone-number-link:hover {
            background: var(--text-primary);
            color: #ffffff;
            box-shadow: 0 8px 24px rgba(29, 29, 31, 0.15);
            transform: translateY(-2px);
        }

        .gs-phone-icon {
            font-size: 1.5rem;
            transition: transform 0.2s ease;
        }

        .gs-phone-number-link:hover .gs-phone-icon {
            transform: rotate(15deg);
        }

        .gs-demo-note {
            font-size: 0.75rem;
            color: var(--text-tertiary);
            text-align: center;
            margin-top: 1.5rem;
        }

        /* Onboarding Form Fields */
        .gs-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
        }

        .gs-form-group {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .gs-form-group.full {
            grid-column: span 2;
        }

        .gs-form-group label {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .gs-form-group input,
        .gs-form-group select,
        .gs-form-group textarea {
            padding: 0.75rem 1rem;
            border: 1px solid var(--border-strong);
            border-radius: 10px;
            font-family: inherit;
            font-size: 0.9rem;
            color: var(--text-primary);
            background: #fafafa;
            transition: all 0.2s;
            outline: none;
            width: 100%;
        }

        .gs-form-group input:focus,
        .gs-form-group select:focus,
        .gs-form-group textarea:focus {
            border-color: var(--accent-blue);
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }

        .gs-form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .gs-hidden {
            display: none;
        }

        .gs-opt-in {
            grid-column: span 2;
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            font-size: 0.75rem;
            color: var(--text-secondary);
            line-height: 1.5;
            cursor: pointer;
            user-select: none;
            margin-top: 0.25rem;
        }

        .gs-opt-in input[type="checkbox"] {
            margin-top: 2px;
            min-width: 14px;
            height: 14px;
        }

        .gs-submit {
            grid-column: span 2;
            padding: 0.95rem;
            background: var(--text-primary);
            color: #ffffff;
            border: none;
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 12px rgba(29, 29, 31, 0.15);
        }

        .gs-submit:hover {
            background: #2d2d2f;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(29, 29, 31, 0.2);
        }

        .gs-submit:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        /* Success & Calendly Widget */
        .gs-success {
            display: none;
            text-align: center;
            padding: 1rem 0;
        }

        .gs-success-icon {
            width: 56px;
            height: 56px;
            background: rgba(52, 199, 89, 0.1);
            color: #248a3d;
            border-radius: 50%;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
        }

        .gs-success h3 {
            font-size: 1.25rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .gs-success p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* â”€â”€ Slim Corporate Footer â”€â”€ */
        .gs-footer {
            background: var(--bg-surface);
            border-top: 1px solid var(--border-strong);
            padding: 2.5rem 0;
            font-size: 0.8rem;
            color: var(--text-tertiary);
        }

        .gs-footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .gs-footer-links {
            display: flex;
            gap: 1.5rem;
        }

        .gs-footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.15s;
        }

        .gs-footer-links a:hover {
            color: var(--accent-blue);
        }

        /* â”€â”€ Skip Link â”€â”€ */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 20px;
            background: var(--text-primary);
            color: #ffffff;
            padding: 0.75rem 1.5rem;
            z-index: 9999;
            font-weight: 700;
            transition: top 0.2s ease;
            border-radius: 0 0 8px 8px;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .skip-link:focus {
            top: 0;
            outline: 3px solid var(--accent-blue);
            outline-offset: -3px;
        }

        /* Keyboard Focus States */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 3px solid var(--accent-blue) !important;
            outline-offset: 3px !important;
        }

        /* â”€â”€ Responsiveness â”€â”€ */
        @media (max-width: 900px) {
            .gs-hero-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .gs-terminal-reviews-grid {
                grid-template-columns: 1fr;
                gap: 4.5rem;
            }

            .gs-reviews-column {
                text-align: center;
            }

            .gs-interactive-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .gs-overlay-latency {
                right: 0.5rem;
            }
            .gs-overlay-crm {
                right: -0.5rem;
            }

            main {
                padding-top: calc(var(--spacing-xl) + 2.5rem);
                gap: 4rem;
            }
        }

        @media (max-width: 600px) {
            .gs-hero-title {
                font-size: 1.8rem;
            }

            .gs-hero-cta-group {
                flex-direction: column;
            }

            .gs-phone-container-wrap {
                max-width: 290px;
                padding: 1rem 0;
            }
            
            .gs-phone-overlay-card {
                display: none;
            }

            .gs-form-grid {
                grid-template-columns: 1fr;
            }

            .gs-form-group.full,
            .gs-opt-in,
            .gs-submit {
                grid-column: span 1;
            }

            .gs-footer-inner {
                flex-direction: column-reverse;
                gap: 1.5rem;
                text-align: center;
            }

            .gs-footer-links {
                flex-direction: column;
                gap: 0.75rem;
            }

            .main-nav {
                display: none; /* simple mobile fallback for conversion page */
            }
        }
