/* ============================================
   whotookmy.com - Main Stylesheet
   ============================================ */

/* CSS Custom Properties */
:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-primary-50: #eff6ff;
    --color-primary-100: #dbeafe;

    --color-secondary: #059669;
    --color-secondary-dark: #047857;

    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-text-lighter: #9ca3af;

    --color-bg: #ffffff;
    --color-bg-alt: #f9fafb;
    --color-bg-dark: #111827;

    --color-border: #e5e7eb;
    --color-border-dark: #d1d5db;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    --transition: 150ms ease;
    --transition-slow: 300ms ease;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

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

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

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
}

.logo span {
    color: var(--color-primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.nav a:hover {
    color: var(--color-text);
}

.nav .btn {
    margin-left: 0.5rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition);
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(180deg, var(--color-primary-50) 0%, var(--color-bg) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.hero-subtitle-secondary {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.trust-item .icon {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
}

/* Browser Mockup */
.browser-mockup {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.browser-header {
    display: flex;
    gap: 8px;
    padding: 1rem;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border-dark);
}

.browser-dot:first-child { background: #ef4444; }
.browser-dot:nth-child(2) { background: #eab308; }
.browser-dot:nth-child(3) { background: #22c55e; }

.browser-content {
    padding: 2rem;
}

.mockup-hero {
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.mockup-text {
    height: 12px;
    width: 70%;
    background: var(--color-border);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mockup-card {
    height: 60px;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

/* Problem Section */
.problem-section {
    background: var(--color-bg-dark);
    color: white;
}

.problem-section h2 {
    color: white;
}

.problem-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.stats-footnote {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-top: 2rem;
    font-weight: 500;
}

/* How It Works */
.how-it-works {
    background: var(--color-bg-alt);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
}

.step p {
    color: var(--color-text-light);
}

/* Google Sheets Feature */
.sheets-feature {
    overflow: hidden;
}

.sheets-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--color-primary-100);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.sheets-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.sheets-text > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-list .icon {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.sheets-note {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    font-style: italic;
}

/* Spreadsheet Mockup */
.sheets-visual {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.spreadsheet-mockup {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    flex: 1;
}

.spreadsheet-header {
    background: #1a73e8;
    padding: 0.75rem 1rem;
}

.spreadsheet-tabs {
    display: flex;
    gap: 0.25rem;
}

.spreadsheet-tabs .tab {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.spreadsheet-tabs .tab.active {
    background: white;
    color: var(--color-text);
}

.spreadsheet-grid {
    font-size: 0.875rem;
}

.spreadsheet-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 0.5fr;
    border-bottom: 1px solid var(--color-border);
}

.spreadsheet-row.header {
    background: var(--color-bg-alt);
    font-weight: 600;
}

.spreadsheet-row span {
    padding: 0.75rem 1rem;
    border-right: 1px solid var(--color-border);
}

.spreadsheet-row span:last-child {
    border-right: none;
}

.spreadsheet-row.editing {
    background: #fff9e6;
}

.cell-editing {
    background: #fef3c7 !important;
    outline: 2px solid #f59e0b;
}

.arrow-connector {
    flex-shrink: 0;
}

.arrow-connector svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.website-preview-small {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
}

.preview-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-service strong {
    color: var(--color-text);
}

.preview-service span {
    color: var(--color-primary);
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: var(--color-primary-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* Business Types */
.business-types {
    background: var(--color-bg-alt);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.type-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.type-card:hover {
    box-shadow: var(--shadow-lg);
}

.type-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.type-card h3 {
    margin-bottom: 0.5rem;
}

.type-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.types-note {
    text-align: center;
    color: var(--color-text-light);
    margin-top: 2rem;
    font-style: italic;
}

/* Pricing */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 500;
    color: var(--color-text-light);
    cursor: pointer;
    transition: color var(--transition);
}

.toggle-label[data-period="monthly"].active,
.toggle-label[data-period="annual"].active {
    color: var(--color-text);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--color-border-dark);
    border-radius: 9999px;
    transition: background var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform var(--transition);
    box-shadow: var(--shadow);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--color-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(28px);
}

.toggle-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: var(--color-secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-left: 0.25rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
}

.pricing-tagline {
    color: var(--color-text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.125rem;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-text);
}

.price .period {
    font-size: 1rem;
    color: var(--color-text-light);
    align-self: flex-end;
    margin-bottom: 0.5rem;
}

.pricing-setup {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9375rem;
}

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

.pricing-limits {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.pricing-annual-note {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

/* Pricing Overages */
.pricing-overages {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-overages h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.pricing-overages > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.overage-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.overage-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.overage-item strong {
    font-size: 0.9375rem;
}

.overage-item span {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.overage-note {
    font-size: 0.875rem;
    color: var(--color-text-lighter);
    font-style: italic;
    margin: 0;
}

/* Two-tier pricing grid */
.pricing-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.pricing-grid-two .pricing-card {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
}

.pricing-grid-two .pricing-card.featured {
    transform: none;
    border-width: 2px;
}

.pricing-grid-two .pricing-features {
    flex: 1;
}

.pricing-domain {
    text-align: center;
    padding: 0.625rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.pricing-domain code {
    font-size: 0.875rem;
    color: var(--color-text);
    background: transparent;
}

.pricing-domain .domain-included {
    display: block;
    font-size: 0.75rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: 0.25rem;
}

.pricing-equivalent {
    font-size: 0.875rem;
    color: var(--color-secondary);
    font-weight: 500;
    margin-top: 0.25rem;
}

.pricing-details-link {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--color-text-lighter);
}

.pricing-details-link:hover {
    color: var(--color-primary);
}

/* Inline Domain Checker */
.domain-checker-inline {
    max-width: 500px;
    margin: 0 auto 2rem;
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.domain-checker-header h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.domain-checker-header p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.domain-checker-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.domain-checker-form input {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1rem;
    border: none;
    font-size: 1rem;
    outline: none;
    text-align: right;
}

.domain-checker-form .domain-suffix {
    color: var(--color-text-light);
    font-size: 1rem;
    padding-right: 0.5rem;
}

.domain-checker-form button {
    padding: 0.75rem 1.25rem;
    background: var(--color-primary);
    color: white;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}

.domain-checker-form button:hover {
    background: var(--color-primary-dark);
}

.domain-result {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    display: none;
}

.domain-result.show {
    display: block;
}

.domain-result.available {
    background: #dcfce7;
    color: #166534;
}

.domain-result.taken {
    background: #fee2e2;
    color: #991b1b;
}

.domain-result.error {
    background: #fef3c7;
    color: #92400e;
}

.pricing-notes {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.pricing-notes p {
    margin: 0;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.pricing-guarantee .icon {
    width: 40px;
    height: 40px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.pricing-guarantee strong {
    display: block;
    margin-bottom: 0.25rem;
}

.pricing-guarantee p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Hosting Benefits */
.hosting-benefits {
    background: var(--color-bg-alt);
}

.hosting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hosting-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.hosting-text > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.hosting-features {
    display: grid;
    gap: 1rem;
}

.hosting-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.hosting-feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-secondary);
}

.hosting-feature-icon svg {
    width: 100%;
    height: 100%;
}

.hosting-feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.hosting-feature-text strong {
    font-size: 1rem;
}

.hosting-feature-text span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.hosting-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.globe-graphic {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-ring {
    position: absolute;
    border: 2px solid var(--color-primary-100);
    border-radius: 50%;
    animation: pulse-ring 3s ease-in-out infinite;
}

.globe-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.globe-ring:nth-child(2) {
    width: 75%;
    height: 75%;
    animation-delay: 0.5s;
}

.globe-ring:nth-child(3) {
    width: 50%;
    height: 50%;
    animation-delay: 1s;
}

@keyframes pulse-ring {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.globe-center {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.globe-center svg {
    width: 48px;
    height: 48px;
    color: white;
}

.hosting-tagline {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
}

/* Demo Sites - Featured */
.demo-sites-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.demo-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
}

.demo-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.demo-preview {
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.demo-card:hover .demo-overlay {
    opacity: 1;
}

.demo-info {
    padding: 1.5rem;
}

.demo-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.demo-type {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.demo-description {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin: 0;
}

.samples-more-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    font-size: 1.25rem;
}

/* Samples */
.samples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.sample-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.sample-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.sample-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sample-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.sample-card:hover .sample-overlay {
    opacity: 1;
}

.sample-overlay .btn {
    background: white;
    color: var(--color-text);
}

.sample-overlay .btn:hover {
    background: var(--color-primary);
    color: white;
}

.sample-info {
    padding: 1.25rem;
    background: white;
}

.sample-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.sample-info p {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.samples-note {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9375rem;
    font-style: italic;
}

/* Testimonials */
.testimonials {
    background: var(--color-bg-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.125rem;
}

.testimonial-author span {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--color-text-light);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--color-bg-dark);
    color: white;
}

.cta-section h2 {
    color: white;
}

.cta-section > .container > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.cta-options {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
}

.cta-option {
    text-align: center;
}

.cta-option h3 {
    color: white;
    margin-bottom: 0.75rem;
}

.cta-option > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.cta-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    text-transform: uppercase;
    padding-top: 2rem;
}

/* Contact Form */
.contact-form {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-sans);
    transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--color-bg-dark);
    color: white;
}

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

/* Footer */
.footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9375rem;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
}

/* Icon utility */
.icon {
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

/* ============================================
   Responsive Styles
   ============================================ */

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

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        display: flex;
    }

    .nav .btn {
        margin: 0;
        width: 100%;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .stats-grid,
    .steps-grid,
    .types-grid,
    .pricing-grid,
    .pricing-grid-two,
    .samples-grid,
    .testimonials-grid,
    .demo-sites-featured {
        grid-template-columns: 1fr;
    }

    .sheets-content,
    .hosting-content {
        grid-template-columns: 1fr;
    }

    .hosting-text h2 {
        text-align: center;
    }

    .hosting-visual {
        order: -1;
    }

    .globe-graphic {
        width: 150px;
        height: 150px;
    }

    .sheets-text h2 {
        text-align: center;
    }

    .sheets-visual {
        flex-direction: column;
    }

    .arrow-connector {
        transform: rotate(90deg);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-options {
        grid-template-columns: 1fr;
    }

    .cta-divider {
        padding-top: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .domain-checker-form {
        flex-wrap: wrap;
    }

    .domain-checker-form input {
        text-align: left;
        width: 100%;
    }

    .domain-checker-form .domain-suffix {
        display: none;
    }

    .domain-checker-form button {
        width: 100%;
        margin-top: 0.5rem;
    }
}

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

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

    .hero-cta .btn {
        width: 100%;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .price .amount {
        font-size: 2.5rem;
    }
}
