/* ===================================================
   TamirciPRO – Design System
   Vanilla CSS | Light & Dark Theme | Blue Primary
=================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
    /* Brand */
    --blue-50: #EFF6FF;
    --blue-100: #DBEAFE;
    --blue-500: #3B82F6;
    --blue-600: #2563EB;
    --blue-700: #1D4ED8;
    --blue-900: #1E3A8A;

    /* Light Theme (default) */
    --bg: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --surface: #FFFFFF;
    --surface-raised: #F8FAFC;
    --border: #E2E8F0;
    --border-subtle: #F1F5F9;
    --text: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --primary: var(--blue-600);
    --primary-hover: var(--blue-700);
    --primary-subtle: var(--blue-50);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .12);

    /* Spacing */
    --section-py: 96px;
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition: 200ms ease;
}

/* Dark Theme */
[data-theme="dark"],
.dark {
    --bg: #0A0F1E;
    --bg-secondary: #0F172A;
    --bg-tertiary: #1E293B;
    --surface: #111827;
    --surface-raised: #1E293B;
    --border: #1E293B;
    --border-subtle: #0F172A;
    --text: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #475569;
    --primary: var(--blue-500);
    --primary-hover: var(--blue-600);
    --primary-subtle: rgba(59, 130, 246, .12);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .5);
}

/* System preference: dark */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --bg: #0A0F1E;
        --bg-secondary: #0F172A;
        --bg-tertiary: #1E293B;
        --surface: #111827;
        --surface-raised: #1E293B;
        --border: #1E293B;
        --border-subtle: #0F172A;
        --text: #F8FAFC;
        --text-secondary: #94A3B8;
        --text-muted: #475569;
        --primary: var(--blue-500);
        --primary-hover: var(--blue-600);
        --primary-subtle: rgba(59, 130, 246, .12);
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, .3);
        --shadow-md: 0 4px 16px rgba(0, 0, 0, .4);
        --shadow-lg: 0 10px 40px rgba(0, 0, 0, .5);
    }
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    transition: background-color var(--transition), color var(--transition);
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ── Section ── */
.section {
    padding: var(--section-py) 0;
}

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

/* ── Typography ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-subtle);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--text);
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
    margin-top: 16px;
}

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

.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, .3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, .4);
}

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

.btn-outline:hover {
    background: var(--primary-subtle);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-ghost:hover {
    background: var(--bg-tertiary);
}

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

/* ── Nav ── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background-color var(--transition), border-color var(--transition);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    margin-right: auto;
    flex-shrink: 0;
}

.nav-logo img {
    height: 38px;
    width: auto;
    display: block;
}

/* Theme-based logo visibility */
.nav-logo .logo-dark {
    display: none;
}

.nav-logo .logo-light {
    display: block;
}

[data-theme="dark"] .nav-logo .logo-dark {
    display: block;
}

[data-theme="dark"] .nav-logo .logo-light {
    display: none;
}

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

.nav-links a {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    background: var(--bg-tertiary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
}

/* Theme toggle button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    background: transparent;
    border: 1.5px solid var(--border);
    transition: all var(--transition);
    flex-shrink: 0;
    font-size: 16px;
}

.theme-toggle:hover {
    color: var(--text);
    background: var(--bg-tertiary);
}

/* Mobile hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav-drawer {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px 20px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.nav-drawer a {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all var(--transition);
}

.nav-drawer a:hover {
    background: var(--bg-tertiary);
    color: var(--text);
}

.nav-drawer .nav-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.nav-drawer.open {
    display: flex;
}

/* ── Hero ── */
.hero {
    padding: 80px 0 96px;
    background: var(--bg);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    max-width: 540px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--text);
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
}

.hero-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.02em;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.hero-visual {
    position: relative;
    width: 110%;
}

@media (max-width: 1024px) {
    .hero-visual {
        width: 100%;
    }
}

.hero-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.hero-img-wrap img {
    width: 100%;
    display: block;
}

/* ── Feature Cards ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary);
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── Sector Cards (Ana sayfa CTA) ── */
.sector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sector-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--surface);
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}

.sector-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.sector-card .sector-emoji {
    font-size: 40px;
    margin-bottom: 20px;
}

.sector-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.sector-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
    flex: 1;
}

.sector-card .sector-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.sector-card .sector-link::after {
    content: '→';
    transition: transform var(--transition);
}

.sector-card:hover .sector-link::after {
    transform: translateX(4px);
}

/* ── Why Grid (6-up) ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    transition: all var(--transition);
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.why-card .why-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Two Column ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse>* {
    direction: ltr;
}

.two-col-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.two-col-img img {
    width: 100%;
}

.checklist {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checklist li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 15px;
}

/* ── Pricing Card ── */
.pricing-wrap {
    max-width: 620px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-700));
}

.pricing-badge {
    display: inline-flex;
    padding: 4px 14px;
    background: var(--primary-subtle);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 24px;
}

.pricing-price {
    font-size: 56px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-price sup {
    font-size: 24px;
    vertical-align: super;
    font-weight: 700;
}

.pricing-period {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pricing-annual {
    font-size: 14px;
    color: #22C55E;
    font-weight: 600;
    margin-bottom: 32px;
}

.pricing-cta {
    margin-bottom: 32px;
}

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

.pricing-note {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

.pricing-divider {
    height: 1px;
    background: var(--border);
    margin: 32px 0;
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-feature-item::before {
    content: '✓';
    color: #22C55E;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Screenshots Carousel ── */
.screenshots {
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
    background: var(--bg-secondary);
}

.slides-track {
    display: flex;
    transition: transform 500ms cubic-bezier(.4, 0, .2, 1);
}

.slide {
    flex-shrink: 0;
    width: 100%;
}

.slide img {
    width: 100%;
    display: block;
}

.slides-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.slide-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition);
    cursor: pointer;
}

.slide-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.slide-dots {
    display: flex;
    gap: 6px;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all var(--transition);
    cursor: pointer;
}

.slide-dot.active {
    width: 20px;
    border-radius: 4px;
    background: var(--primary);
}

/* ── Accordion / FAQ ── */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface);
    transition: border-color var(--transition);
}

.accordion-item.open {
    border-color: var(--primary);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color var(--transition);
}

.accordion-trigger:hover {
    background: var(--bg-tertiary);
}

.accordion-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.accordion-item.open .accordion-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.accordion-body {
    display: none;
    padding: 0 20px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.accordion-item.open .accordion-body {
    display: block;
}

/* Two column FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 40px;
    align-items: start;
}

/* ── Contact Form ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--primary-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

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

/* ── Legal Pages ── */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 40px 0 12px;
}

.legal-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin: 24px 0 8px;
}

.legal-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 14px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 14px;
}

.legal-content ul li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 4px;
}

.legal-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* ── Comparison Table ── */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.comparison-table th {
    padding: 12px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

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

.comparison-table .yes {
    color: #22C55E;
    font-size: 18px;
}

.comparison-table .no {
    color: var(--text-muted);
    font-size: 18px;
}

.comparison-table th.highlight {
    color: var(--primary);
    background: var(--primary-subtle);
}

.comparison-table td.highlight {
    background: var(--primary-subtle);
    color: var(--text);
    font-weight: 600;
}

/* ── Page Banner (inner pages) ── */
.page-banner {
    padding: 64px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.page-banner-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-banner h1 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--text);
    margin-bottom: 12px;
}

.page-banner p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.65;
}

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-900) 100%);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    text-align: center;
    color: #fff;
}

.cta-banner h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

.cta-banner p {
    font-size: 17px;
    opacity: .85;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    background: rgba(255, 255, 255, .15);
    border: 1.5px solid rgba(255, 255, 255, .4);
    color: #fff;
    backdrop-filter: blur(8px);
}

.cta-banner .btn-primary:hover {
    background: rgba(255, 255, 255, .25);
}

.cta-banner .btn-outline {
    color: rgba(255, 255, 255, .8);
    border-color: rgba(255, 255, 255, .3);
}

.cta-banner .btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.cta-banner-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 56px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.03em;
    margin-bottom: 12px;
    display: block;
}

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

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

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

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--text-muted);
    transition: all var(--transition);
}

.footer-social:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

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

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

/* ── Scroll to top ── */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(12px);
    transition: all var(--transition);
    pointer-events: none;
    z-index: 90;
    border: none;
    cursor: pointer;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top:hover {
    background: var(--primary-hover);
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}

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

.reveal-delay-1 {
    transition-delay: 100ms;
}

.reveal-delay-2 {
    transition-delay: 200ms;
}

.reveal-delay-3 {
    transition-delay: 300ms;
}

.reveal-delay-4 {
    transition-delay: 400ms;
}

/* ── Utility ── */
.mt-8 {
    margin-top: 8px;
}

.mt-12 {
    margin-top: 12px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

.mt-64 {
    margin-top: 64px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-48 {
    margin-bottom: 48px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-py: 64px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero {
        padding: 48px 0 64px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

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

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

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

    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .two-col.reverse {
        direction: ltr;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-features-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 48px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .section-title {
        font-size: 26px;
    }

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

/* ── Lucide Icons ── */
.feature-icon svg,
.why-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.75;
    fill: none;
}

.sector-emoji svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.contact-info-icon svg,
.contact-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.75;
    fill: none;
}

.footer-social svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    fill: none;
}

/* ── Pricing – Annual ── */
.pricing-original-line {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.pricing-original-line s {
    color: var(--text-muted);
}

.pricing-save-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.12);
    color: #22C55E;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 28px;
}

/* ── Contact Cards ── */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--surface);
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}

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

.contact-card.primary {
    border-color: var(--primary);
    background: var(--primary-subtle);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--primary);
}

.contact-card.primary .contact-card-icon {
    background: var(--primary);
    color: #fff;
}

.contact-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-card-action {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.contact-support-note {
    max-width: 560px;
    margin: 40px auto 0;
    text-align: center;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.contact-support-note h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.contact-support-note p {
    font-size: 14px;
    color: var(--text-secondary);
}

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