/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    /* Color Palette */
    --bg-main: #0b0f19;
    --bg-darker: #050811;
    --card-bg: rgba(17, 24, 39, 0.6);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    /* Branding */
    --brand-violet: #8b5cf6;
    --brand-indigo: #6366f1;
    --brand-cyan: #06b6d4;
    --brand-emerald: #10b981;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--brand-indigo) 0%, var(--brand-violet) 100%);
    --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    --gradient-text: linear-gradient(135deg, #c084fc 0%, #818cf8 100%);

    /* Glows */
    --glow-violet: 0 0 30px rgba(139, 92, 246, 0.25);
    --glow-cyan: 0 0 30px rgba(6, 182, 212, 0.25);
    --glow-emerald: 0 0 30px rgba(16, 185, 129, 0.25);

    /* Layout */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
    --nav-height: 80px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background elements */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: 800px;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Typography & Global Layout */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    color: var(--text-secondary);
}

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

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

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, #5046e5 0%, #7c3aed 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    border-color: var(--brand-violet);
    color: var(--brand-violet);
    background: rgba(139, 92, 246, 0.05);
}

.btn-full {
    width: 100%;
}

/* Glassmorphism Card base */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 98px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.03);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    color: white;
    font-size: 20px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: white;
}

.logo-text .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn {
    padding: 10px 20px;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 54px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-lead {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.badge-new {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--brand-emerald);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-trust {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.trust-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.trust-icons {
    display: flex;
    gap: 12px;
}

.trust-tag {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4px 12px;
    border-radius: 6px;
    color: var(--text-secondary);
}

/* Hero Visual & Interactive Mockup */
.hero-visual {
    position: relative;
}

.hero-preview-card {
    border-radius: 16px;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(3, 7, 18, 0.9) 100%);
    overflow: hidden;
}

.preview-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 16px;
}

.preview-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.preview-dots span:nth-child(1) {
    background: #ef4444;
}

.preview-dots span:nth-child(2) {
    background: #fbbf24;
}

.preview-dots span:nth-child(3) {
    background: #10b981;
}

.preview-title {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 500;
}

.preview-body {
    padding: 24px;
}

.preview-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-mini-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.stat-trend {
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
}

.trend-up {
    color: var(--brand-emerald);
}

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

.stat-progress-bar span {
    display: block;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.preview-chart-mock {
    height: 120px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.chart-bar {
    width: calc(100% / 7);
    background: rgba(99, 102, 241, 0.15);
    border-radius: 4px 4px 0 0;
    transition: all 0.6s ease;
}

.chart-bar:hover {
    background: var(--gradient-primary);
}

.preview-footer-info {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.status-indicator {
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.dot-active {
    background: var(--brand-emerald);
    box-shadow: 0 0 10px var(--brand-emerald);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-darker);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.25);
    background: rgba(17, 24, 39, 0.8);
    box-shadow: var(--glow-violet);
}

.feature-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.tab-wrapper {
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    width: fit-content;
    margin: 0 auto 50px;
    padding: 4px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-grid.api-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(17, 24, 39, 0.6);
}

.pricing-card.popular {
    border-color: var(--brand-violet);
    background: rgba(139, 92, 246, 0.04);
    box-shadow: var(--glow-violet);
}

.pricing-card.popular:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: #a78bfa;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 14px;
    border-radius: 99px;
}

.card-header {
    margin-bottom: 24px;
}

.plan-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.pricing-card.popular .plan-label {
    color: #c084fc;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.price-box {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.currency {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-right: 4px;
}

.price-value {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-heading);
}

.period {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 4px;
}

.aws-info {
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-cyan);
    margin-bottom: 4px;
}

.setup-info {
    font-size: 11px;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.features-list li {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.features-list li .icon-check {
    color: var(--brand-emerald);
    font-weight: bold;
}

.features-list li .icon-cross {
    color: var(--text-muted);
}

.features-list li.disabled {
    color: var(--text-muted);
}

.addon-info {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.addon-info.highlighted {
    border-color: rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.05);
}

.limits-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
    margin-bottom: 24px;
}

.limit-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin-bottom: 6px;
}

.limit-row span {
    color: var(--text-muted);
}

.limit-row strong {
    color: var(--text-secondary);
}

.plan-cta {
    margin-top: auto;
}

.addons-brief {
    margin-top: 50px;
    font-size: 14px;
}

.addons-brief strong {
    color: white;
}

/* Cost Calculator Section */
.calculator-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.calculator-card {
    padding: 48px;
    border-color: rgba(139, 92, 246, 0.15);
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.calculator-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: stretch;
}

.calculator-controls {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.control-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.control-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.selector-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 4px;
}

.selector-tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.selector-tab.active {
    background: var(--brand-violet);
    color: white;
}

.plan-select-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

#calc-plans-api-grid {
    grid-template-columns: repeat(2, 1fr);
}

.plan-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-secondary);
    padding: 14px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.plan-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.plan-btn.active {
    background: rgba(139, 92, 246, 0.12);
    border-color: var(--brand-violet);
    color: #c084fc;
}

.counter-control {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 18px;
    border-radius: 12px;
    width: fit-content;
}

.counter-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.counter-btn:hover {
    background: var(--brand-violet);
    border-color: var(--brand-violet);
}

.counter-value {
    font-size: 18px;
    font-weight: 700;
    width: 24px;
    text-align: center;
}

.counter-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 12px;
}

/* Calculator Results */
.calculator-results {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.result-box {
    margin-bottom: 24px;
}

.result-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-price-main {
    display: flex;
    align-items: baseline;
    margin: 8px 0;
}

.res-currency {
    font-size: 20px;
    font-weight: 700;
    color: #c084fc;
    margin-right: 6px;
}

.res-val {
    font-size: 44px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #c084fc;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.result-label-sub {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
}

.result-sub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    margin-bottom: 28px;
}

.sub-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.sub-val {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

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

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item div strong {
    font-size: 15px;
    display: block;
    color: white;
}

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

.contact-form-wrapper {
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-violet);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.form-success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    color: var(--brand-emerald);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.form-success-message h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    max-width: 320px;
}

.footer-links h4 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: white;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

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

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Security Section */
.security-section {
    padding: 80px 0;
}

.security-card {
    padding: 48px;
    border-color: rgba(16, 185, 129, 0.15);
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(3, 7, 18, 0.9) 100%);
}

.security-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: center;
}

.badge-security {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--brand-emerald);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.security-list {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.security-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.security-icon-bullet {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.security-list li div strong {
    font-size: 16px;
    color: white;
    display: block;
    margin-bottom: 4px;
}

.security-list li div p {
    font-size: 14px;
    line-height: 1.5;
}

.security-badge-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: var(--glow-emerald);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.shield-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: pulse 2s infinite ease-in-out;
}

.shield-label {
    font-family: var(--font-heading);
    font-weight: 800;
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shield-sublabel {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    }

    100% {
        transform: scale(1);
    }
}

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

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

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 40px;
    }

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

    .hero-trust {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

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

    .calculator-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

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

    .nav-menu {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--bg-darker);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

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

    .nav-actions {
        gap: 8px;
    }
}