/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #f97316;
    --bg: #020617;
    --bg-alt: #02091f;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --border: #1f2937;
    --radius-lg: 16px;
    --radius-md: 10px;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #0b1120, #020617 55%);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

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

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

ul { 
    list-style: none; 
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { 
    flex: 1; 
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
header {
    border-bottom: 1px solid rgba(15,23,42,0.85);
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(2,6,23,0.96), rgba(2,6,23,0.86));
}

.nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.7rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #38bdf8, #2563eb 45%, #0f172a 75%);
    box-shadow: 0 0 18px rgba(59,130,246,0.7);
    position: relative;
}

.logo-mark::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 2px solid rgba(248,250,252,0.65);
    border-top-color: transparent;
    border-radius: inherit;
    transform: rotate(30deg);
}

.logo-text-main {
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.logo-text-sub {
    font-size: 0.7rem;
    color: var(--muted);
}

.nav-main { 
    flex: 1; 
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.4rem;
    font-size: 1rem;
    color: var(--muted);
}

.nav-links > li {
    position: relative;
    padding-bottom: 10px;
}

.nav-links a {
    padding: 0.25rem 0.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links > li > a:hover { 
    color: #e5e7eb; 
}

.nav-links .has-dropdown > a::after {
    content: "▾";
    font-size: 0.65rem;
    opacity: 0.7;
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    min-width: 220px;
    border-radius: 0.65rem;
    background: radial-gradient(circle at top left, rgba(15,23,42,0.97), rgba(15,23,42,0.98));
    border: 1px solid rgba(31,41,55,0.95);
    box-shadow: 0 18px 45px rgba(15,23,42,0.9);
    padding: 0.4rem 0.35rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 50;
}

.nav-links li.has-dropdown:hover > .dropdown,
.nav-links li.has-dropdown:focus-within > .dropdown {
    opacity: 1;
    pointer-events: auto;
}

.dropdown li a {
    padding: 0.4rem 0.65rem;
    border-radius: 0.45rem;
    font-size: 0.9rem;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
}

.dropdown li a span.label { 
    flex: 1; 
}

.dropdown li a:hover {
    background: rgba(37,99,235,0.12);
    color: #e5e7eb;
}

.nav-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #f9fafb;
    font-weight: 500;
    font-size: 0.86rem;
    box-shadow: 0 9px 25px rgba(37,99,235,0.55);
}

.nav-cta a span.arrow {
    font-size: 1rem;
    transform: translateY(1px);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2.6rem 1.25rem 2.2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 2.2rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.18rem 0.7rem;
    border-radius: 999px;
    background: radial-gradient(circle at 0 0, rgba(56,189,248,0.25), transparent 55%);
    border: 1px solid rgba(55,65,81,0.9);
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 1.1rem;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34,197,94,0.7);
}

.eyebrow-label {
    font-weight: 500;
    color: #e5e7eb;
}

.hero-title {
    font-size: clamp(2.2rem, 3.3vw, 3rem);
    line-height: 1.05;
    margin-bottom: 0.8rem;
    letter-spacing: -0.035em;
}

.hero-title span.highlight {
    background: linear-gradient(135deg, #38bdf8, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    font-size: 1rem;
    color: var(--muted);
    max-width: 36rem;
    margin-bottom: 1.2rem;
}

.hero-desc b { 
    color: #e5e7eb; 
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-meta span.badge {
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(55,65,81,0.95);
    background: rgba(15,23,42,0.9);
    color: #e5e7eb;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #f9fafb;
    font-weight: 600;
    font-size: 0.94rem;
    box-shadow: 0 13px 40px rgba(37,99,235,0.85);
}

.btn-main span.icon {
    font-size: 1.1rem;
    transform: translateY(1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(55,65,81,0.9);
    background: linear-gradient(135deg, rgba(15,23,42,0.9), rgba(15,23,42,0.7));
    color: var(--muted);
    font-size: 0.85rem;
}

.hero-footnote {
    font-size: 0.76rem;
    color: var(--muted);
}

.hero-footnote strong { 
    color: #e5e7eb; 
    font-weight: 500; 
}

/* Hero Aside Card */
.hero-aside {
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 15% 0, rgba(56,189,248,0.2), transparent 60%),
                radial-gradient(circle at 100% 100%, rgba(168,85,247,0.22), transparent 50%),
                linear-gradient(to bottom right, #020617, #02091f);
    padding: 1rem;
    border: 1px solid rgba(31,41,55,0.95);
    box-shadow: 0 25px 80px rgba(15,23,42,0.9);
    position: relative;
    overflow: hidden;
}

.hero-aside-inner {
    border-radius: calc(var(--radius-lg) - 5px);
    border: 1px solid rgba(148,163,184,0.16);
    padding: 1.2rem 1.1rem;
    background: radial-gradient(circle at 0 0, rgba(15,23,42,0.2), transparent 55%);
}

.aside-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.aside-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.aside-sub {
    font-size: 0.78rem;
    color: var(--muted);
}

.status-pill {
    padding: 0.12rem 0.6rem;
    border-radius: 999px;
    font-size: 0.72rem;
    background: rgba(21,128,61,0.18);
    color: #bbf7d0;
    border: 1px solid rgba(34,197,94,0.7);
}

.aside-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
}

.chip {
    border-radius: var(--radius-md);
    border: 1px solid rgba(51,65,85,0.9);
    background: radial-gradient(circle at top left, rgba(15,23,42,0.85), rgba(15,23,42,0.98));
    padding: 0.55rem 0.7rem;
    font-size: 0.8rem;
}

.chip-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-size: 0.7rem;
    margin-bottom: 0.1rem;
}

.chip-value {
    font-size: 0.92rem;
    font-weight: 600;
}

.chip-sub {
    font-size: 0.72rem;
    color: var(--muted);
}

.progress-card {
    border-radius: var(--radius-md);
    border: 1px solid rgba(55,65,81,0.9);
    background: linear-gradient(145deg, rgba(15,23,42,0.9), rgba(15,23,42,0.98));
    padding: 0.55rem 0.7rem 0.6rem;
    margin-bottom: 0.78rem;
}

.progress-title {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.bar {
    position: relative;
    height: 6px;
    border-radius: 999px;
    background: rgba(15,23,42,1);
    overflow: hidden;
}

.bar-fill {
    position: absolute;
    inset: 0;
    width: 62%;
    border-radius: inherit;
    background: linear-gradient(90deg, #22c55e, #facc15);
    box-shadow: 0 0 12px rgba(34,197,94,0.7);
}

.aside-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--muted);
}

.aside-footer span strong {
    color: #e5e7eb;
    font-weight: 600;
}

.aside-cta {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(55,65,81,0.9);
    background: linear-gradient(135deg, rgba(15,23,42,0.9), rgba(15,23,42,0.85));
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* ===========================
   LOCATION CARD
   =========================== */
.location-card {
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 15% 0, rgba(56,189,248,0.2), transparent 60%),
                radial-gradient(circle at 100% 100%, rgba(168,85,247,0.22), transparent 50%),
                linear-gradient(to bottom right, #020617, #02091f);
    padding: 1rem;
    border: 1px solid rgba(31,41,55,0.95);
    box-shadow: 0 25px 80px rgba(15,23,42,0.9);
    position: relative;
    overflow: hidden;
}

.location-inner {
    border-radius: calc(var(--radius-lg) - 5px);
    border: 1px solid rgba(148,163,184,0.16);
    padding: 1.2rem 1.1rem;
    background: radial-gradient(circle at 0 0, rgba(15,23,42,0.2), transparent 55%);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
}

.flag-icon {
    font-size: 2rem;
}

.location-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.location-sub {
    font-size: 0.78rem;
    color: var(--muted);
}

.location-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.location-feature {
    border-radius: var(--radius-md);
    border: 1px solid rgba(51,65,85,0.9);
    background: radial-gradient(circle at top left, rgba(15,23,42,0.85), rgba(15,23,42,0.98));
    padding: 0.5rem 0.65rem;
    font-size: 0.8rem;
}

.location-feature-label {
    color: var(--muted);
    font-size: 0.7rem;
    margin-bottom: 0.1rem;
}

.location-feature-value {
    font-weight: 600;
    font-size: 0.88rem;
}

/* ===========================
   SECTIONS
   =========================== */
.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.3rem 1.25rem 2.8rem;
}

.section-title {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 36rem;
}

/* ===========================
   PRICING PLANS
   =========================== */
.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.6rem;
}

.plan {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(31,41,55,0.95);
    background: linear-gradient(145deg, #020617, #02091f);
    padding: 1.1rem 1rem;
    position: relative;
    overflow: hidden;
}

.plan.highlighted {
    border: 1px solid rgba(56,189,248,0.8);
    box-shadow: 0 20px 60px rgba(56,189,248,0.32);
}

.plan-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.plan-name {
    font-size: 1.05rem;
    font-weight: 600;
}

.plan-price {
    margin: 0.55rem 0 0.6rem;
}

.plan-price-main {
    font-size: 1.5rem;
    font-weight: 700;
}

.plan-price-main span.small {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
}

.plan-note {
    font-size: 0.85rem;
    color: var(--muted);
}

.plan-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0.55rem;
    font-size: 0.84rem;
}

.plan-list li {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.22rem;
    color: var(--muted);
}

.plan-list li span.check { 
    color: #22c55e; 
}

.plan-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.7rem;
    background: rgba(37,99,235,0.18);
    border: 1px solid rgba(37,99,235,0.8);
    color: #bfdbfe;
}

.plan-cta {
    margin-top: 0.6rem;
}

.plan-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(55,65,81,0.9);
    font-size: 0.82rem;
    color: #e5e7eb;
    width: 100%;
}

.plan.highlighted .plan-cta a {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    box-shadow: 0 12px 35px rgba(59,130,246,0.65);
}

/* ===========================
   FEATURES
   =========================== */
.features-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.6rem;
    margin-top: 1.7rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
    margin-top: 0.35rem;
}

.feature {
    border-radius: var(--radius-md);
    border: 1px solid rgba(31,41,55,0.95);
    background: radial-gradient(circle at top left, rgba(15,23,42,0.88), rgba(15,23,42,0.98));
    padding: 0.8rem 0.9rem;
}

.feature-title {
    font-size: 0.88rem;
    margin-bottom: 0.18rem;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Feature Tabs */
.features-tabs {
    margin-top: 1.5rem;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.tab-btn {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: #e5e7eb;
    background: rgba(15,23,42,0.5);
}

.tab-btn.active {
    color: #e5e7eb;
    background: linear-gradient(145deg, rgba(37,99,235,0.12), rgba(37,99,235,0.18));
    border-bottom: 2px solid var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-panel {
    border-radius: var(--radius-md);
    border: 1px solid rgba(31,41,55,0.95);
    background: linear-gradient(145deg, #020617, #02091f);
    padding: 1.2rem;
}

.tab-panel h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.tab-panel p {
    color: var(--muted);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(31,41,55,0.95);
    background: radial-gradient(circle at top left, rgba(15,23,42,0.88), rgba(15,23,42,0.98));
    padding: 0.9rem;
}

.feature-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
}

/* ===========================
   STEPS
   =========================== */
.steps {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(31,41,55,0.95);
    background: linear-gradient(145deg, #020617, #02091f);
    padding: 0.95rem 1rem;
    font-size: 0.82rem;
}

.steps-title {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.steps ol {
    padding-left: 1.1rem;
    margin: 0.3rem 0 0.45rem;
}

.steps li {
    margin-bottom: 0.25rem;
    color: var(--muted);
}

.steps-footer {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.why-card {
    border-radius: var(--radius-md);
    border: 1px solid rgba(31,41,55,0.95);
    background: linear-gradient(145deg, #020617, #02091f);
    padding: 0.95rem 1rem;
    display: flex;
    gap: 0.8rem;
}

.why-icon {
    font-size: 1.25rem;
    padding-top: 0.1rem;
}

.why-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.why-desc {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ===========================
   EXPECTATIONS
   =========================== */
.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.expect-card {
    border-radius: var(--radius-md);
    border: 1px solid rgba(31,41,55,0.95);
    background: radial-gradient(circle at top left, rgba(15,23,42,0.86), rgba(15,23,42,0.98));
    padding: 0.95rem 1rem;
}

.expect-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.expect-bullet {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
}

.expect-title {
    font-size: 0.88rem;
    font-weight: 500;
}

.expect-desc {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ===========================
   SERVICES
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.service-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(31,41,55,0.95);
    background: linear-gradient(145deg, #020617, #02091f);
    padding: 1.1rem 1rem;
    text-align: center;
}

.service-icon {
    font-size: 1.7rem;
    margin-bottom: 0.6rem;
}

.service-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.service-specs {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.7rem;
}

.service-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(55,65,81,0.9);
    font-size: 0.8rem;
}

/* ===========================
   GUIDE / ARTICLE
   =========================== */
.guide {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(31,41,55,0.95);
    background: linear-gradient(145deg, #020617, #02091f);
    padding: 1.1rem 1.15rem 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.86rem;
}

.guide h3 {
    font-size: 0.98rem;
    margin: 0.4rem 0 0.25rem;
    color: #e5e7eb;
}

.guide p {
    margin-bottom: 0.6rem;
    color: var(--muted);
}

.guide ul, .guide ol {
    padding-left: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--muted);
}

.guide li { 
    margin-bottom: 0.25rem; 
}

/* ===========================
   FAQ
   =========================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.1rem;
    margin-top: 1.4rem;
}

.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(31,41,55,0.95);
    background: linear-gradient(145deg, #020617, #02091f);
    overflow: hidden;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0.9rem;
    cursor: pointer;
}

.faq-q {
    font-weight: 600;
    font-size: 0.9rem;
}

.faq-toggle {
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-a {
    padding: 0 0.9rem 0.75rem;
    font-size: 0.85rem;
    color: var(--muted);
    display: none;
}

.faq-item.active .faq-a { 
    display: block; 
}

/* ===========================
   FOOTER
   =========================== */
footer {
    border-top: 1px solid rgba(15,23,42,0.95);
    margin-top: 1.4rem;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.85rem 1.25rem 1.2rem;
    font-size: 0.75rem;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.footer-links {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

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

.footer-links a:hover { 
    color: #e5e7eb; 
}

/* ===========================
   RESPONSIVE BREAKPOINTS
   =========================== */

/* Large tablets and small desktops */
@media (max-width: 960px) {
    .nav {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .nav-main {
        width: 100%;
        order: 3;
    }
    .nav-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.9rem 1.5rem;
        padding-top: 0.45rem;
    }
    .plans { 
        grid-template-columns: minmax(0, 1fr); 
    }
}

/* Tablets */
@media (max-width: 880px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 2.1rem;
    }
    .features-grid { 
        grid-template-columns: minmax(0, 1fr); 
    }
    .faq-grid { 
        grid-template-columns: minmax(0, 1fr); 
    }
}

/* Mobile landscape */
@media (max-width: 720px) {
    .nav-links { 
        display: none; 
    }
}

/* Mobile portrait */
@media (max-width: 640px) {
    .features-list { 
        grid-template-columns: minmax(0, 1fr); 
    }
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.text-center { 
    text-align: center; 
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }


/* ========================================
   FOOTER STYLES
   ======================================== */

footer {
    background: linear-gradient(180deg, #0a0e17 0%, #060911 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    color: #94a3b8;
    margin-top: 4rem;
}

.footer-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
}

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

/* Footer Column */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 1rem;
}

.footer-brand img {
    max-width: 150px;
    height: auto;
}

.logo-mark-footer {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* Footer Title */
.footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #3b82f6;
    padding-left: 4px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.2s ease;
}

.footer-links a:hover::before {
    width: 4px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #3b82f6;
}

.footer-divider {
    color: rgba(148, 163, 184, 0.4);
    font-size: 0.75rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

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

    .footer-col:first-child {
        grid-column: 1 / -1;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 2.5rem 1rem 1.5rem;
    }

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

    .footer-col:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col:first-child {
        grid-column: 1;
    }

    .footer-bottom-inner {
        padding: 1.25rem 1rem;
    }

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

    .footer-divider {
        display: none;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

/* Optional: Dark mode enhancement */
@media (prefers-color-scheme: dark) {
    footer {
        background: linear-gradient(180deg, #0a0e17 0%, #050810 100%);
    }
}

/* Optional: Print styles */
@media print {
    footer {
        display: none;
    }
}