/* ============================================================
   Vie Stay 2.0 Landing Page — Modern Clean Orange SaaS Design System
   Primary Color: Pure Vibrant Orange (#FF6500 / #FF7A00 / #FF5500)
   Accents: Warm Amber (#F59E0B) / Slate Dark (#0F172A) / Warm White (#FFFBF7)
   100% No Green Gradient — Dedicated Orange Palette
   Typography: Plus Jakarta Sans & Inter (Google Fonts)
   ============================================================ */

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

:root {
    --white: #FFFFFF;
    --bg-page: #FFFBF7;
    --surface: #FFFFFF;
    
    --gray-50: #FAFAF9;
    --gray-100: #F5F5F4;
    --gray-200: #E7E5E4;
    --gray-300: #D6D3D1;
    --gray-400: #A8A29E;
    --gray-500: #78716C;
    --gray-600: #57534E;
    --gray-700: #44403C;
    --gray-800: #292524;
    --gray-900: #1C1917;

    /* Vie Stay Radiant Orange Palette */
    --orange-50: #FFF7ED;
    --orange-100: #FFEDD5;
    --orange-200: #FED7AA;
    --orange-300: #FDBA74;
    --orange-400: #FB923C;
    --orange-500: #FF6500;
    --orange-600: #EA580C;
    --orange-700: #C2410C;
    --orange-800: #9A3412;

    --amber-50: #FFFBEB;
    --amber-100: #FEF3C7;
    --amber-500: #F59E0B;
    --amber-600: #D97706;

    /* Warm Orange Gradients */
    --gradient-primary: linear-gradient(135deg, #FF7A00 0%, #FF5500 50%, #E04D01 100%);
    --gradient-warm: linear-gradient(135deg, #FF6500 0%, #FFA000 100%);
    --gradient-cta: linear-gradient(135deg, #FF6500 0%, #FF7A00 50%, #FF9000 100%);
    --gradient-hero-bg: radial-gradient(circle at 12% 18%, rgba(255, 101, 0, 0.12) 0%, transparent 45%),
                        radial-gradient(circle at 88% 82%, rgba(255, 160, 0, 0.10) 0%, transparent 45%),
                        linear-gradient(180deg, #FFFFFF 0%, #FFFBF7 100%);

    --shadow-sm: 0 1px 3px rgba(255, 101, 0, 0.05);
    --shadow-md: 0 4px 14px rgba(255, 101, 0, 0.08);
    --shadow-lg: 0 14px 28px -4px rgba(255, 101, 0, 0.12);
    --shadow-xl: 0 20px 40px -8px rgba(255, 101, 0, 0.18);
    --shadow-phone: 0 25px 50px -12px rgba(28, 25, 23, 0.25);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-phone: 36px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--bg-page);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 101, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(255, 101, 0, 0.45);
    color: var(--white);
}

.btn-outline {
    background: var(--white);
    color: var(--orange-600);
    border: 1.5px solid var(--orange-200);
}

.btn-outline:hover {
    background: var(--orange-50);
    border-color: var(--orange-400);
    transform: translateY(-2px);
    color: var(--orange-700);
}

.btn-white {
    background: var(--white);
    color: var(--orange-600);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    color: var(--orange-700);
}

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

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 101, 0, 0.12);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: 38px !important;
    height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(255, 101, 0, 0.25);
    display: inline-block;
    flex-shrink: 0;
}

.logo-text {
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-text .accent {
    color: var(--orange-500);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover {
    color: var(--orange-500);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-500);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(255, 101, 0, 0.35);
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 101, 0, 0.45);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    margin: 5px 0;
    transition: var(--transition);
}

/* ===================== HERO SECTION ===================== */
.hero {
    position: relative;
    padding: 140px 0 90px;
    background: var(--gradient-hero-bg);
    overflow: hidden;
}

.hero-bg .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.5;
}

.blob-1 {
    top: 5%;
    left: -5%;
    width: 420px;
    height: 420px;
    background: rgba(255, 101, 0, 0.18);
}

.blob-2 {
    bottom: 10%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: rgba(255, 160, 0, 0.16);
}

.blob-3 {
    top: 40%;
    left: 45%;
    width: 320px;
    height: 320px;
    background: rgba(255, 122, 0, 0.12);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-100);
    border: 1px solid var(--orange-300);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--orange-700);
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange-500);
    box-shadow: 0 0 0 0 rgba(255, 101, 0, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 101, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 101, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 101, 0, 0); }
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

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

.hero-desc {
    font-size: 17px;
    line-height: 1.65;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--orange-100);
    box-shadow: var(--shadow-sm);
    width: fit-content;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--orange-600);
    line-height: 1.1;
}

.metric-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
}

.metric-sep {
    width: 1px;
    height: 28px;
    background: var(--gray-200);
}

/* ===================== HERO PHONES ===================== */
.hero-phones {
    position: relative;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-wrapper {
    position: absolute;
    border-radius: var(--radius-phone);
    box-shadow: var(--shadow-phone);
    transition: var(--transition);
}

.phone-back {
    width: 250px;
    right: 20px;
    top: 30px;
    transform: rotate(6deg);
    z-index: 1;
    opacity: 0.85;
}

.phone-front {
    width: 270px;
    left: 20px;
    top: 10px;
    transform: rotate(-3deg);
    z-index: 2;
}

.phone-front:hover, .phone-back:hover {
    transform: translateY(-8px) scale(1.02);
    z-index: 3;
    opacity: 1;
}

.phone-bezel {
    background: #0F172A;
    padding: 8px;
    border-radius: var(--radius-phone);
    border: 3px solid #334155;
    overflow: hidden;
}

.phone-bezel img {
    border-radius: calc(var(--radius-phone) - 10px);
    width: 100%;
}

/* ===================== SECTION COMMON ===================== */
.sec-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.sec-tag {
    display: inline-block;
    background: var(--orange-100);
    color: var(--orange-700);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--orange-200);
}

.tag-orange {
    background: var(--orange-100);
    color: var(--orange-700);
    border-color: var(--orange-200);
}

.tag-amber {
    background: var(--amber-100);
    color: var(--amber-700);
    border-color: var(--amber-200);
}

.sec-header h2 {
    font-size: 36px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.sec-desc {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================== FEATURES GRID ===================== */
.features {
    padding: 90px 0;
    background: var(--white);
}

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

.feat-card {
    background: var(--bg-page);
    border: 1px solid var(--orange-100);
    padding: 32px 26px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-300);
    background: var(--white);
}

.feat-card:hover::before {
    opacity: 1;
}

.feat-ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.ico-orange {
    background: var(--orange-100);
    color: var(--orange-600);
    border: 1px solid var(--orange-200);
}

.ico-amber {
    background: var(--amber-100);
    color: var(--amber-600);
    border: 1px solid var(--amber-200);
}

.feat-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.feat-card p {
    font-size: 14.5px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================== SCREENSHOTS SHOWCASE ===================== */
.screenshots {
    padding: 100px 0;
    background: var(--bg-page);
}

.showcase-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.showcase-block.reverse {
    direction: rtl;
}

.showcase-block.reverse .showcase-info,
.showcase-block.reverse .showcase-phones {
    direction: ltr;
}

.showcase-info {
    max-width: 500px;
}

.showcase-tag {
    display: inline-block;
    background: var(--orange-100);
    color: var(--orange-700);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 16px;
    margin-bottom: 14px;
    border: 1px solid var(--orange-200);
}

.showcase-info h3 {
    font-size: 30px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.3;
}

.showcase-info p {
    font-size: 15.5px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 20px;
}

.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.showcase-list li {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--gray-700);
}

.showcase-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.sp-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sp-bezel {
    width: 250px;
    background: #0F172A;
    padding: 7px;
    border-radius: 32px;
    border: 3px solid #334155;
    box-shadow: var(--shadow-phone);
    transition: var(--transition);
}

.sp-bezel:hover {
    transform: translateY(-6px);
}

.sp-bezel img {
    border-radius: 24px;
    width: 100%;
}

.sp-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-500);
}

.two-phones .sp-bezel {
    width: 220px;
}

.three-phones .sp-bezel {
    width: 175px;
}

/* ===================== GOOGLE SECURITY & DISCLOSURE ===================== */
.security-section {
    padding: 80px 0;
    background: var(--white);
}

.security-card {
    background: linear-gradient(180deg, #FFF7ED 0%, #FFFFFF 100%);
    border: 1.5px solid var(--orange-200);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.security-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.security-icon {
    width: 64px;
    height: 64px;
    background: var(--orange-100);
    border: 1px solid var(--orange-300);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
}

.security-lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 32px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.sec-item {
    background: var(--white);
    border: 1px solid var(--orange-100);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.sec-item-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.sec-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.sec-item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.sec-item code {
    background: var(--orange-50);
    color: var(--orange-700);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    font-family: monospace;
    font-weight: 600;
}

.security-compliance-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FFF7ED;
    border: 1.5px solid #FED7AA;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 14.5px;
    color: #C2410C;
    line-height: 1.5;
    font-weight: 500;
}

/* ===================== WORKFLOW ===================== */
.workflow {
    padding: 90px 0;
    background: var(--bg-page);
}

.wf-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.wf-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
}

.wf-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(255, 101, 0, 0.35);
}

.wf-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.wf-body p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.wf-line {
    flex: 0.5;
    height: 2px;
    background: var(--orange-200);
    margin-top: 28px;
}

/* ===================== PRIVACY & TERMS ===================== */
.privacy-section {
    padding: 80px 0;
    background: var(--white);
}

.privacy-content-card {
    background: var(--bg-page);
    border: 1px solid var(--orange-100);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-sm);
}

.privacy-content-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--gray-900);
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy-content-card h3:first-child {
    margin-top: 0;
}

.privacy-content-card p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 14px;
}

.privacy-content-card ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.privacy-content-card li {
    font-size: 14.5px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 6px;
}

.contact-box {
    background: var(--white);
    border: 1px solid var(--orange-200);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 14px;
}

.contact-box p {
    margin-bottom: 8px;
    font-size: 14.5px;
}

.contact-box a {
    color: var(--orange-600);
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* ===================== FAQ ===================== */
.faq {
    padding: 90px 0;
    background: var(--bg-page);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--orange-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--orange-400);
    box-shadow: var(--shadow-md);
}

.faq-q {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 20px;
    font-weight: bold;
    color: var(--orange-500);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
}

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

/* ===================== CTA BANNER ===================== */
.cta {
    padding: 80px 0;
    background: var(--white);
}

.cta-card {
    background: var(--gradient-cta);
    border-radius: var(--radius-xl);
    padding: 64px 32px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 45px rgba(255, 101, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.cta-icon-wrapper {
    margin-bottom: 20px;
}

.cta-logo-img {
    width: 68px !important;
    height: 68px !important;
    max-width: 68px !important;
    max-height: 68px !important;
    border-radius: 18px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    object-fit: contain;
    display: inline-block;
}

.cta-card h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-card p {
    font-size: 17px;
    opacity: 0.95;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    display: block;
    margin-top: 18px;
    font-size: 13px;
    opacity: 0.85;
}

/* ===================== FOOTER ===================== */
.footer {
    background: #181411;
    color: var(--gray-400);
    padding: 70px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    text-decoration: none;
}

.footer-logo-img {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    border-radius: 8px;
    object-fit: contain;
    display: inline-block;
    flex-shrink: 0;
}

.footer-logo .accent {
    color: var(--orange-500);
}

.footer-brand p {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-contact-info p {
    font-size: 13.5px;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.footer-contact-info a {
    color: var(--orange-400);
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--orange-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    text-align: center;
    font-size: 13.5px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-metrics {
        margin-left: auto;
        margin-right: auto;
    }

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

    .showcase-block {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .showcase-info {
        max-width: 100%;
    }

    .showcase-list {
        align-items: center;
    }

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

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

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .navbar.nav-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        border-bottom: 1px solid var(--orange-100);
        box-shadow: var(--shadow-lg);
    }

    .hero-text h1 {
        font-size: 34px;
    }

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

    .wf-steps {
        flex-direction: column;
        gap: 24px;
    }

    .wf-line {
        display: none;
    }

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

    .cta-card {
        padding: 44px 20px;
    }

    .cta-card h2 {
        font-size: 28px;
    }
}
