:root {
    --primary: #059669;
    --primary-dark: #047857;
    --primary-light: #10B981;
    --accent: #10B981;
    --accent-light: #818cf8;
    --shopify: #95bf47;
    --cyan: #22d3ee;
    --orange: #f59e0b;
    --red: #ef4444;
    --purple: #8b5cf6;
    
    --bg: #0a0f1a;
    --bg-alt: #0f1629;
    --bg-card: rgba(255,255,255,0.03);
    --bg-elevated: rgba(255,255,255,0.06);
    
    --text: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --border: rgba(255,255,255,0.08);
    --border-light: rgba(255,255,255,0.04);
    
    --radius: 16px;
    --radius-sm: 12px;
    --radius-xs: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes floatSubtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

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

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.animate.visible { opacity: 1; transform: translateY(0); }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    overflow-x: hidden;
}

.header .container {
    min-width: 0;
    width: 100%;
}

.header.scrolled {
    background: rgba(10, 15, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) 64px auto auto !important;
    align-items: center;
    gap: 0 0;
    height: 72px;
    min-width: 0;
}

.header-inner .logo { grid-column: 1 !important; }
.header-inner .nav { grid-column: 2 !important; }
.header-inner .header-nav-sep { grid-column: 3 !important; }
.header-inner .nav-actions { grid-column: 4 !important; }
.header-inner .mobile-menu-btn { grid-column: 5 !important; }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--shopify));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-icon i { width: 22px; height: 22px; }

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid var(--border);
    min-width: 0;
    justify-content: flex-start;
    overflow: hidden;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

/* Zorunlu boşluk: Fiyatlandırma ile dil butonları arası her zaman 64px (inline style + grid yedek) */
.header-nav-sep {
    display: block !important;
    width: 64px !important;
    min-width: 64px !important;
    flex-shrink: 0 !important;
    box-sizing: border-box;
    border-left: 1px solid var(--border);
    margin-left: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding-left: 24px;
    border-left: 1px solid var(--border);
}

.lang-switcher {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 6px;
    gap: 4px;
}

.lang-btn {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 36px;
}

.lang-btn:hover, .lang-btn.active {
    background: var(--primary);
    color: white;
}

/* Header: compact buttons so they don't overflow */
.header .nav-actions .btn {
    padding: 10px 16px;
    font-size: 14px;
}

.header .nav-actions .btn i { width: 16px; height: 16px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.btn i { width: 18px; height: 18px; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 20px rgba(0, 128, 96, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 128, 96, 0.5);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

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

.btn-shopify {
    background: linear-gradient(135deg, var(--shopify), #7ab53e);
    color: white;
    box-shadow: 0 4px 20px rgba(149, 191, 71, 0.4);
}

.btn-shopify:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(149, 191, 71, 0.5);
}

.btn-large { padding: 16px 32px; font-size: 16px; border-radius: var(--radius); }

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn i { width: 24px; height: 24px; }

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 999;
    padding: 24px;
    flex-direction: column;
    gap: 16px;
}

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

.mobile-menu .nav-link {
    display: block;
    padding: 16px;
    font-size: 18px;
    border-bottom: 1px solid var(--border);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 128, 96, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(149, 191, 71, 0.08) 0%, transparent 40%);
    z-index: -1;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text { max-width: 600px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 128, 96, 0.2), rgba(149, 191, 71, 0.1));
    border: 1px solid rgba(0, 128, 96, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--shopify);
    margin-bottom: 24px;
    animation: fadeIn 0.6s ease 0.1s both;
}

.hero-badge i { width: 16px; height: 16px; }

.hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    animation: fadeIn 0.6s ease 0.2s both;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--shopify), var(--cyan));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 4s ease infinite;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
    animation: fadeIn 0.6s ease 0.3s both;
}

.hero-roi {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
    animation: fadeIn 0.6s ease 0.35s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeIn 0.6s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeIn 0.6s ease 0.5s both;
}

.hero-stat-value {
    font-size: 36px;
    font-weight: 800;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.hero-stat-value span { font-size: 20px; color: var(--primary); }

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeIn 0.8s ease 0.4s both;
    padding: 16px 32px 24px;
}

.hero-mockup {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green { background: #28c840; }

.mockup-content {
    display: grid;
    gap: 14px;
}

.mockup-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.mockup-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mockup-icon i { width: 20px; height: 20px; color: white; }
.mockup-icon.green { background: linear-gradient(135deg, var(--primary), var(--shopify)); }
.mockup-icon.purple { background: linear-gradient(135deg, var(--accent), var(--purple)); }
.mockup-icon.cyan { background: linear-gradient(135deg, var(--cyan), #0891b2); }
.mockup-icon.orange { background: linear-gradient(135deg, var(--orange), #ea580c); }

.mockup-info h4 { font-size: 14px; font-weight: 600; }
.mockup-info p { font-size: 12px; color: var(--text-muted); }

.mockup-value {
    margin-left: auto;
    font-size: 14px;
    font-weight: 700;
    color: var(--cyan);
}

/* Floating badges: sit beside the mockup, not over the cards */
.floating-badge {
    position: absolute;
    padding: 12px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    animation: floatSubtle 5s ease-in-out infinite;
}

.floating-badge-1 {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.floating-badge-2 {
    bottom: 0;
    left: 0;
    animation-delay: 1.5s;
}

.floating-badge-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-icon i { width: 16px; height: 16px; color: white; }
.floating-badge-icon.ai { background: linear-gradient(135deg, var(--accent), var(--purple)); }
.floating-badge-icon.shopify { background: linear-gradient(135deg, var(--shopify), #7ab53e); }

.floating-badge-text { font-size: 12px; font-weight: 600; }
.floating-badge-text span { display: block; font-size: 11px; color: var(--text-muted); font-weight: 400; }

/* AI Providers */
.ai-providers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 32px;
    animation: fadeIn 0.6s ease 0.6s both;
}

.ai-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.ai-badge:hover { border-color: var(--primary); transform: translateY(-2px); }
.ai-badge i { width: 14px; height: 14px; }
.ai-badge.free { border-color: rgba(16, 185, 129, 0.3); }
.ai-badge.free::after { content: 'FREE'; margin-left: 4px; font-size: 9px; color: #10b981; font-weight: 700; }

/* Section */
.section {
    padding: 120px 0;
    position: relative;
}

.section-alt { background: var(--bg-alt); }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(0, 128, 96, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 128, 96, 0.15), rgba(0, 128, 96, 0.05));
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon i { width: 26px; height: 26px; }

.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

.feature-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 16px;
}

.feature-tag.new { background: rgba(34, 211, 238, 0.15); color: var(--cyan); }
.feature-tag.ai { background: rgba(139, 92, 246, 0.15); color: var(--purple); }
.feature-tag.pro { background: rgba(99, 102, 241, 0.15); color: var(--accent); }
.feature-tag.free { background: rgba(16, 185, 129, 0.15); color: #10b981; }

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.step-card:last-child::after { display: none; }

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--shopify));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 128, 96, 0.3);
}

.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-secondary); }

/* Analysis Showcase */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.showcase-grid-four {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
    .showcase-grid-four { grid-template-columns: repeat(4, 1fr); }
}

.showcase-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.showcase-card:hover {
    border-color: rgba(0, 128, 96, 0.3);
    transform: translateY(-4px);
}

.showcase-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.showcase-icon i { width: 28px; height: 28px; color: white; }
.showcase-icon.seo { background: linear-gradient(135deg, #10b981, #34d399); }
.showcase-icon.pricing { background: linear-gradient(135deg, var(--accent), var(--purple)); }
.showcase-icon.market { background: linear-gradient(135deg, var(--orange), #ea580c); }
.showcase-icon.orders { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.showcase-icon.discounts { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.showcase-icon.customers { background: linear-gradient(135deg, #06b6d4, #0ea5e9); }
.showcase-icon.analytics { background: linear-gradient(135deg, #ec4899, #a855f7); }

.showcase-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.showcase-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }

.showcase-features { list-style: none; }

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.showcase-features li i { width: 18px; height: 18px; color: #10b981; flex-shrink: 0; }

/* Pricing */
.pricing-page .pricing-hero {
    animation: pricingCardIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.pricing-toggle button {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-family: inherit;
}
.pricing-toggle button:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.pricing-toggle button:active { transform: scale(0.98); }

.pricing-toggle button.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.save-badge {
    display: inline-block;
    padding: 4px 8px;
    background: #10b981;
    color: white;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    min-height: 200px;
}
.pricing-grid .pricing-loading {
    color: var(--text-muted);
}

/* Pricing trust strip (14 gün deneme, ödeme yöntemleri, iptal) */
.pricing-trust-strip {
    padding: 28px 0;
    margin-top: 8px;
}
.pricing-trust-strip .trust-strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2rem;
    font-size: 0.9rem;
    color: var(--text-muted, #64748b);
}
.pricing-trust-strip .trust-strip-inner span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s ease;
}
.pricing-trust-strip .trust-strip-inner span:hover { color: var(--text-secondary, #94a3b8); }
.pricing-trust-strip .trust-strip-inner i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary);
}

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

.pricing-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s ease;
    position: relative;
    opacity: 1;
    animation: pricingCardIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.pricing-grid .pricing-card:nth-child(1) { animation-delay: 0.05s; }
.pricing-grid .pricing-card:nth-child(2) { animation-delay: 0.12s; }
.pricing-grid .pricing-card:nth-child(3) { animation-delay: 0.19s; }
.pricing-grid .pricing-card:nth-child(4) { animation-delay: 0.26s; }
.pricing-grid .pricing-card:nth-child(n+5) { animation-delay: 0.33s; }

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(0, 128, 96, 0.1) 0%, transparent 50%);
}

.pricing-card.featured::before {
    content: attr(data-badge);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--shopify));
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.plan-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--shopify));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.plan-icon i { width: 26px; height: 26px; color: white; }

.plan-name { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.plan-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }

.plan-price { margin-bottom: 20px; }
.plan-price .currency { font-size: 20px; vertical-align: top; }
.plan-price .amount { font-size: 44px; font-weight: 800; }
.plan-price .period { font-size: 14px; color: var(--text-muted); }

.plan-cta { width: 100%; margin-bottom: 20px; }

.plan-features { list-style: none; }
.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.plan-features li i { width: 18px; height: 18px; color: #10b981; flex-shrink: 0; }
.plan-features li.disabled { opacity: 0.4; }
.plan-features li.disabled i { color: var(--text-muted); }

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--shopify));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }

.footer-address {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
.footer-address strong { color: var(--text); }
.footer-address .footer-phone { color: var(--text-muted); font-size: 14px; }
.footer-address .footer-phone:hover { color: var(--primary); }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p { font-size: 14px; color: var(--text-muted); }

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.footer-social a:hover { border-color: var(--primary); color: var(--primary); }
.footer-social a i { width: 18px; height: 18px; }

/* Responsive */
@media (max-width: 1100px) {
    .header .container { padding: 0 16px; }
    .nav { gap: 14px; padding-left: 12px; }
    .header .nav-actions .btn { padding: 8px 14px; font-size: 13px; }
}

@media (max-width: 1200px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-visual { display: none; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .ai-providers { justify-content: center; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .header-inner { grid-template-columns: 1fr auto auto !important; }
    .nav { display: none; }
    .header-nav-sep { display: none !important; }
    .mobile-menu-btn { display: flex; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step-card::after { display: none; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .section { padding: 80px 0; }
    .hero { padding: 120px 0 80px; min-height: auto; }
    .hero h1 { font-size: 36px; }
    .hero-desc { font-size: 16px; }
    .hero-stats { flex-direction: column; gap: 24px; align-items: center; }
    .hero-stat-value { font-size: 28px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .ai-providers { flex-direction: column; align-items: center; }
    .pricing-toggle { flex-direction: column; width: 100%; }
    .pricing-toggle button { width: 100%; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .lang-switcher { display: none; }
    .nav-actions .btn-secondary { display: none; }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    html { -webkit-text-size-adjust: 100%; }
    .btn, .nav-link, .mobile-menu-btn {
        min-height: 44px;
        min-width: 44px;
    }
    input, textarea, select {
        font-size: 16px !important;
    }
    .header {
        padding-top: env(safe-area-inset-top);
    }
    .mobile-menu {
        padding-top: calc(72px + env(safe-area-inset-top));
        padding-bottom: env(safe-area-inset-bottom);
    }
    body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
    }
}

@media (display-mode: standalone) {
    .header { padding-top: env(safe-area-inset-top); }
    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

body {
    overscroll-behavior-y: none;
}

*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Sub-pages content area (About, Contact, Blog, etc.) */
.page-content {
    padding: 120px 0 80px;
    min-height: 60vh;
}
.page-content .container {
    max-width: 800px;
    margin: 0 auto;
}
.page-content h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.page-content .subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}
.page-content .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 500;
    transition: color 0.2s;
}
.page-content .back-link:hover {
    color: var(--primary-light);
}
.page-content .prose {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}
.page-content .prose p {
    margin-bottom: 1.25rem;
}
.page-content .prose p:last-child {
    margin-bottom: 0;
}
.page-content .prose a {
    color: var(--primary);
}
.page-content .prose a:hover {
    text-decoration: underline;
}

.page-content .contact-block {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    background: var(--bg-card);
}
.page-content .contact-block h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.page-content .contact-block h2 i { width: 20px; height: 20px; }
.page-content .contact-block p { margin-bottom: 12px; color: var(--text-secondary); font-size: 15px; }
.page-content .contact-block p:last-child { margin-bottom: 0; }
.page-content .contact-block .contact-address { line-height: 1.7; }
.page-content .contact-block .contact-address strong { color: var(--text); }
.page-content .contact-block .contact-phone { margin-top: 12px; font-size: 15px; }
.page-content .contact-block .contact-phone a { color: var(--primary); }
.page-content .contact-block .contact-phone a:hover { text-decoration: underline; }
.page-content .contact-block .contact-phone i { width: 18px; height: 18px; vertical-align: middle; margin-right: 6px; }
.page-content .contact-form-block { margin-bottom: 2rem; padding: 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.page-content .contact-form .form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.page-content .contact-form .form-group { margin-bottom: 1rem; flex: 1; min-width: 200px; }
.page-content .contact-form .form-label { display: block; font-weight: 600; margin-bottom: 0.35rem; font-size: 0.9rem; }
.page-content .contact-form .form-input { width: 100%; padding: 0.5rem 0.75rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem; }
.page-content .contact-form .form-feedback.success { color: var(--primary); }
.page-content .contact-form .form-feedback.error { color: var(--danger, #dc2626); }

.page-content .faq-item {
    display: block;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, border-color 0.2s;
}
.page-content .faq-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); border-color: var(--border); }
.page-content .faq-q {
    width: 100%;
    min-height: 56px;
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border: none;
    background: transparent;
    color: inherit;
    font-family: inherit;
    transition: background 0.2s;
    box-sizing: border-box;
}
.page-content .faq-q span { flex: 1; }
.page-content .faq-q:hover { background: var(--bg-elevated); }
.page-content .faq-q i { transition: transform 0.2s; flex-shrink: 0; margin-left: auto; }
.page-content .faq-item.open .faq-q i { transform: rotate(180deg); }
.page-content .faq-a { padding: 0 24px 20px; color: var(--text-secondary); display: none; }
.page-content .faq-item.open .faq-a { display: block; }
.page-content .faq-a p { margin-bottom: 0.5rem; }
.page-content .faq-a p:last-child { margin-bottom: 0; }

.page-content .doc-section {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    background: var(--bg-card);
}
.page-content .doc-section h2 { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.page-content .doc-section p { color: var(--text-secondary); font-size: 15px; margin-bottom: 12px; }
.page-content .doc-section p:last-child { margin-bottom: 0; }

.page-content .changelog-entry {
    border-left: 3px solid var(--primary);
    padding: 0 0 1.5rem 1.5rem;
    margin-bottom: 2rem;
}
.page-content .changelog-entry h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.page-content .changelog-entry .date { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.75rem; }
.page-content .changelog-entry ul { list-style: none; }
.page-content .changelog-entry li { margin-bottom: 0.4rem; padding-left: 1.2rem; position: relative; color: var(--text-secondary); }
.page-content .changelog-entry li:before { content: '•'; position: absolute; left: 0; color: var(--primary); }
.page-content .changelog-entry .badge { display: inline-block; padding: 2px 8px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; margin-right: 6px; }
.page-content .changelog-entry .badge-feat { background: rgba(5,150,105,0.2); color: #34d399; }
.page-content .changelog-entry .badge-fix { background: rgba(16,185,129,0.2); color: #6ee7b7; }
.page-content .changelog-entry .badge-improve { background: rgba(34,211,238,0.2); color: #67e8f9; }

.page-content .post-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    background: var(--bg-card);
    transition: border-color 0.2s;
}
.page-content .post-card:hover { border-color: rgba(5,150,105,0.3); }
.page-content .post-card a { text-decoration: none; color: inherit; display: block; }
.page-content .post-card .post-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.page-content .post-card .post-meta { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 12px; }
.page-content .post-card .post-excerpt { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }
.page-content .post-card .post-read { font-size: 0.8rem; color: var(--primary); margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; }
.page-content .post-card .post-card-image { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; margin: -24px -24px 16px -24px; }
.page-content .post-single .post-featured-image { width: 100%; max-height: 400px; object-fit: cover; border-radius: var(--radius); margin-bottom: 1.5rem; }

.page-content .post-single { padding: 0; border: none; background: transparent; }
.page-content .post-single .post-title { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 12px; }
.page-content .post-single .post-meta { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 0.9rem; }
.page-content .post-body { color: var(--text-secondary); line-height: 1.75; }
.page-content .post-body h3 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; color: var(--text); }
.page-content .post-body p { margin-bottom: 1rem; }
.page-content .post-body ul { margin: 0 0 1rem 1.5rem; }
.page-content .post-body li { margin-bottom: 0.5rem; }
.page-content .post-body a { color: var(--primary); }
.page-content .post-body strong { color: var(--text); }

.page-content .updated { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }
.page-content h2 { font-size: 1.25rem; font-weight: 600; margin: 2rem 0 0.75rem; color: var(--text); }
.page-content .status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    background: var(--bg-card);
}
.page-content .status-row .name { font-weight: 500; }
.page-content .status-row .badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.875rem; color: #10b981; }
.page-content .status-row .badge i { width: 14px; height: 14px; }

/* Pricing page specific (same design system) */
.main { padding: 120px 0 80px; }
main.section.pricing-page { padding-top: 56px; padding-bottom: 80px; }
.pricing-hero { text-align: center; margin-bottom: 2rem; }
.pricing-hero h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; margin-bottom: 1rem; }
.pricing-hero p { font-size: 1.25rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.billing-toggle { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.billing-toggle button { padding: 12px 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-secondary); font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.billing-toggle button.active { background: var(--primary); border-color: var(--primary); color: white; }
.fair-use { margin-top: 4rem; }
.fair-use h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.fair-use-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.fair-use-item { padding: 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.fair-use-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 8px; }
.fair-use-item p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.6; }
.payment-methods { margin-top: 3rem; text-align: center; }
.payment-methods h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.payment-logos { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.payment-logo { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-muted); font-size: 14px; }
.faq { margin-top: 3rem; }
.faq h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.faq .faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, border-color 0.2s;
}
.faq .faq-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.faq-question { width: 100%; padding: 20px 24px; text-align: left; font-weight: 600; font-size: 1rem; background: var(--bg-card); border: none; border-radius: 0; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: inherit; margin-bottom: 0; }
.faq-question i { transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 20px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin: 0; color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

/* Pricing page card class aliases (JS uses plan-description, price-*) */
.plan-description { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.plan-price .price-currency { font-size: 20px; vertical-align: top; }
.plan-price .price-amount { font-size: 44px; font-weight: 800; }
.plan-price .price-period { font-size: 14px; color: var(--text-muted); }
.pricing-card.featured[data-badge]::before { content: attr(data-badge); }
