/* =========================================
   SMART SECURITY — Landing Page
   ========================================= */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --clr-primary: #6A11CB;
    --clr-secondary: #2575FC;
    --clr-dark: #0B0B1A;
    --clr-dark-2: #12122A;
    --clr-dark-3: #1A1A3E;
    --clr-text: #C5C5D8;
    --clr-text-light: #9999B3;
    --clr-white: #FFFFFF;
    --clr-glass: rgba(255, 255, 255, 0.04);
    --clr-glass-border: rgba(255, 255, 255, 0.08);
    --clr-glass-hover: rgba(255, 255, 255, 0.08);
    --clr-success: #00D68F;
    --gradient-primary: linear-gradient(135deg, #6A11CB 0%, #2575FC 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    --ff-heading: 'Outfit', sans-serif;
    --ff-body: 'Inter', sans-serif;
    --fs-h2: clamp(2rem, 4vw, 3rem);
    --fs-h3: 1.25rem;
    --fs-body: 1rem;
    --fs-sm: 0.875rem;
    --section-padding: 100px 0;
    --container-width: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 999px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--ff-body);
    font-size: var(--fs-body);
    color: var(--clr-text);
    background-color: var(--clr-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--ff-heading);
    color: var(--clr-white);
    line-height: 1.2;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-glass);
    border: 1px solid var(--clr-glass-border);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    color: var(--clr-secondary);
    font-weight: 500;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: var(--fs-h2);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--clr-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--ff-heading);
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.btn--sm {
    padding: 10px 22px;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--clr-white);
    box-shadow: 0 4px 20px rgba(106, 17, 203, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(106, 17, 203, 0.6);
}

.btn--outline {
    background: transparent;
    color: var(--clr-white);
    border: 1.5px solid var(--clr-glass-border);
}

.btn--outline:hover {
    background: var(--clr-glass-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn--dark-outline {
    background: transparent;
    color: #0B0B1A;
    border: 2px solid #0B0B1A;
}

.btn--dark-outline:hover {
    background: #0B0B1A;
    color: var(--clr-white);
    transform: translateY(-2px);
}

.btn--glass {
    background: var(--clr-glass);
    backdrop-filter: blur(10px);
    color: var(--clr-white);
    border: 1px solid var(--clr-glass-border);
}

.btn--glass:hover {
    background: var(--clr-glass-hover);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--clr-white);
    color: var(--clr-primary);
    font-weight: 700;
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* =============================================
   HEADER — White bg, centered pill nav
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(26, 10, 62, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    padding: 14px 0;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    font-family: var(--ff-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--clr-white);
    letter-spacing: -0.5px;
}

/* Pill-shaped centered nav */
.nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--clr-white);
    padding: 8px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav__link {
    font-size: 0.8rem;
    font-weight: 500;
    color: #555;
    transition: var(--transition);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.nav__link:hover {
    color: #0B0B1A;
    background: rgba(0, 0, 0, 0.04);
}

.nav__link.active {
    color: #0B0B1A;
    font-weight: 600;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clr-white);
    font-size: 1.4rem;
    cursor: pointer;
}

/* =============================================
   HERO — White bg + diagonal dark purple
   ============================================= */
.hero-carousel {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: var(--clr-dark);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: var(--clr-white);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* Indicators */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-indicator.active {
    background: #2575FC;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(37, 117, 252, 0.5);
}

/* Controls */
.hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.hero-control:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.hero-control--prev {
    left: 30px;
}

.hero-control--next {
    right: 30px;
}

.hero__diagonal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(150deg, #1A0A3E 0%, #2D1B69 35%, #1A0A3E 100%);
    clip-path: polygon(0 0, 100% 0, 100% 25%, 0 55%);
    z-index: 0;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    color: #e4e4e4;
}

.hero__subtitle {
    font-weight: 700;
}

.hero__desc {
    font-size: 1rem;
    color: #666;
    max-width: 460px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero__cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat strong {
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    color: #0B0B1A;
}

.hero__stat span {
    font-size: var(--fs-sm);
    color: #888;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: #ddd;
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image {
    width: 620%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* ===== HOME MONITORING SECTION ===== */
.home-monitor {
    padding: var(--section-padding);
    background: #F7F7FA;
    position: relative;
}

.home-monitor__header {
    text-align: center;
    margin-bottom: 48px;
}

.home-monitor__badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--clr-white);
    padding: 10px 32px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.home-monitor__subtitle {
    font-size: 1.1rem;
    color: #555;
    font-weight: 400;
}

.home-monitor__main-card {
    background: var(--clr-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    margin-bottom: 40px;
}

.home-monitor__main-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.home-monitor__features-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.home-monitor__feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.home-monitor__feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--clr-white);
    flex-shrink: 0;
}

.home-monitor__feature-icon--teal {
    background: #1ABCB0;
}

.home-monitor__feature-icon--purple {
    background: #7C3AED;
}

.home-monitor__feature-icon--green {
    background: #10B981;
}

.home-monitor__feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.home-monitor__feature-item p {
    font-size: 0.875rem;
    color: #777;
    line-height: 1.6;
}

.home-monitor__main-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-monitor__main-image img {
    width: 100%;
    max-width: 360px;
    border-radius: 16px;
    object-fit: cover;
}

.home-monitor__banner {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #F0EDFF;
    border-radius: 16px;
    padding: 24px 32px;
    margin-top: 32px;
}

.home-monitor__banner-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DDD6FE;
    border-radius: 14px;
    font-size: 1.2rem;
    color: #6A11CB;
    flex-shrink: 0;
}

.home-monitor__banner h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.home-monitor__banner p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.home-monitor__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-monitor__card {
    background: var(--clr-white);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: var(--transition);
}

.home-monitor__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.home-monitor__card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.home-monitor__card-icon--purple {
    background: #EDE9FE;
    color: #7C3AED;
}

.home-monitor__card-icon--green {
    background: #D1FAE5;
    color: #10B981;
}

.home-monitor__card-icon--teal {
    background: #CCFBF1;
    color: #14B8A6;
}

.home-monitor__card-icon--lavender {
    background: #EDE9FE;
    color: #7C3AED;
}

.home-monitor__card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.home-monitor__card p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
    padding: var(--section-padding);
    background: var(--clr-dark);
}

/* ===== SUPPORTS SECTION (Safety Network) ===== */
.supports {
    padding: var(--section-padding);
    background: #fff;
    overflow: hidden;
}

.supports__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.supports__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.supports__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.supports__image {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(106, 17, 203, 0.15);
}

/* Floating Alert Card */
.alert-card {
    position: absolute;
    bottom: 30px;
    left: 20%;
    background: #fff;
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    z-index: 10;
    min-width: 280px;
}

.alert-card__icon {
    width: 44px;
    height: 44px;
    background: #f0edff;
    color: #6a11cb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.alert-card__content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.alert-card__content p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 2px;
}

.alert-card__time {
    font-size: 0.75rem;
    color: #6a11cb;
    font-weight: 600;
}

.supports__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.supports__badge {
    display: inline-block;
    background: #ddd6fe;
    color: #6a11cb;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.supports__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.purple-text {
    color: #6a11cb;
}

.supports__desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.supports__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.supports__feature {
    background: #f3f5f9;
    padding: 24px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-left: 6px solid #6a11cb;
    transition: var(--transition);
}

.supports__feature:hover {
    transform: translateX(10px);
    background: #eee;
}

.supports__feature-icon {
    width: 54px;
    height: 54px;
    background: #fff;
    color: #1a1a2e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.supports__feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.supports__feature p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.supports__banner {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #6a11cb;
    color: #fff;
    padding: 24px 32px;
    border-radius: 20px;
    margin-top: 16px;
}

.supports__banner-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.supports__banner h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.supports__banner p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== AI BODYGUARD SECTION ===== */
.ai-bodyguard {
    padding: var(--section-padding);
    background: #fff;
    overflow: hidden;
}

.ai-bodyguard__container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-bodyguard__badge {
    display: inline-block;
    background: #ddd6fe;
    color: #6a11cb;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.ai-bodyguard__title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 20px;
}

.ai-bodyguard__desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.ai-bodyguard__mini-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.mini-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
    transition: var(--transition);
}

.mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mini-card__icon {
    width: 44px;
    height: 44px;
    background: #f8f9fa;
    color: #1a1a2e;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mini-card__text h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
    line-height: 1.3;
}

.mini-card__text p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
}

.ai-bodyguard__accuracy {
    background: #6a11cb;
    color: #fff;
    padding: 32px;
    border-radius: 24px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.accuracy-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.accuracy-text h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.accuracy-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Visuals Column */
.ai-bodyguard__visual {
    position: relative;
    z-index: 1;
}

.ai-visual-wrapper {
    position: relative;
    width: 100%;
}

.ai-main-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Floating Alert */
.floating-alert {
    position: absolute;
    top: -40px;
    left: -20px;
    background: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    gap: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #fbbf24;
    z-index: 10;
    width: 320px;
}

.floating-alert__icon {
    color: #f59e0b;
    font-size: 1.5rem;
}

.floating-alert__content h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.floating-alert__content p {
    font-size: 0.85rem;
    color: #666;
}

.floating-alert__content a {
    color: #f59e0b;
    font-weight: 600;
    margin-left: 5px;
}

/* Floating Status */
.floating-status {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #166534;
    color: #fff;
    padding: 16px 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(22, 101, 52, 0.3);
    z-index: 10;
    min-width: 260px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.status-content h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.status-content p {
    font-size: 0.85rem;
    color: #dcfce7;
}

/* ===== SOS SECTION ===== */
.sos-section {
    padding: var(--section-padding);
    background: #fff;
    overflow: hidden;
}

.sos-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.sos-badge {
    display: inline-block;
    background: #ddd6fe;
    color: #6a11cb;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.sos-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 20px;
}

.sos-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.sos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.sos-visual {
    position: relative;
}

.sos-card-main {
    background: #000;
    border-radius: 40px;
    padding: 60px 40px 40px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sos-button-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.sos-button {
    width: 140px;
    height: 140px;
    background: #f97316;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 0 15px rgba(249, 115, 22, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.sos-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(249, 115, 22, 0.3);
}

.sos-button i {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.sos-button span {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.sos-button small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.sos-status-row {
    display: flex;
    gap: 20px;
}

.sos-status {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sos-status--red {
    background: rgba(220, 38, 38, 0.1);
    color: #ef4444;
}

.sos-status--green {
    background: rgba(22, 163, 74, 0.1);
    color: #22c55e;
}

.sos-status i {
    font-size: 1.2rem;
}

.sos-status-text h6 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.sos-status-text p {
    font-size: 0.75rem;
    opacity: 0.8;
}

.sos-alert-delivered {
    position: absolute;
    bottom: 120px;
    right: -20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    z-index: 10;
}

.sos-alert-icon {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    color: #1a1a2e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sos-alert-content h6 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.sos-alert-content p {
    font-size: 0.75rem;
    color: #666;
}

.sos-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sos-feature-card {
    background: #fff;
    padding: 24px 32px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    border-left-width: 8px;
    transition: var(--transition);
}

.sos-feature-card:hover {
    transform: translateX(10px);
}

.sos-feature-card--orange {
    border-left-color: #f97316;
}

.sos-feature-card--purple {
    border-left-color: #6a11cb;
}

.sos-feature-card--blue {
    border-left-color: #2563eb;
}

.sos-feature-card--lavender {
    border-left-color: #8b5cf6;
}

.sos-feature-icon {
    width: 54px;
    height: 54px;
    background: #f8f9fa;
    color: #1a1a2e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.sos-feature-card--orange .sos-feature-icon {
    color: #f97316;
}

.sos-feature-card--purple .sos-feature-icon {
    color: #6a11cb;
}

.sos-feature-card--blue .sos-feature-icon {
    color: #2563eb;
}

.sos-feature-card--lavender .sos-feature-icon {
    color: #8b5cf6;
}

.sos-feature-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.sos-feature-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.sos-footer-banner {
    background: linear-gradient(135deg, #6A11CB 0%, #2575FC 100%);
    border-radius: 60px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.sos-footer-icon {
    font-size: 6rem;
    color: #f97316;
    flex-shrink: 0;
}

.sos-footer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sos-footer-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #f97316;
}

.sos-footer-content p {
    font-size: 1.25rem;
    color: #fff;
    max-width: 700px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.sos-footer-banner .btn {
    background: #fff;
    color: #000;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 12px;
    text-transform: none;
    font-size: 1rem;
}

/* ===== PRODUCTS ===== */
.products {
    padding: var(--section-padding);
    background: var(--clr-dark);
}

.products__filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    border: 1px solid var(--clr-glass-border);
    background: var(--clr-glass);
    color: var(--clr-text-light);
    font-family: var(--ff-heading);
    font-weight: 500;
    font-size: var(--fs-sm);
}

/* ===== SHOP SECTION ===== */
.shop-section {
    padding-bottom: var(--section-padding);
    background: #fff;
    position: relative;
    z-index: 1;
}

.shop-banner {
    background: linear-gradient(rgba(10, 10, 26, 0.8), rgba(10, 10, 26, 0.8)),
        url('../images/pricing-bg.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
}

.shop-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.shop-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.shop-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.shop-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 0px;
}

.shop-tab {
    padding: 20px 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.shop-tab:hover {
    color: #1a1a2e;
}

.shop-tab.active {
    color: #6a11cb;
}

.shop-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: #6a11cb;
    border-radius: 10px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.shop-card {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f5;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease;
}

.shop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.shop-card__visual {
    background: #f0f1f5;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 5rem;
    color: #1d1d2e;
}

.shop-card__badge {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.shop-card__badge--red {
    background: #ff4d4d;
    color: #fff;
}

.shop-card__content {
    padding: 35px;
}

.shop-card__content h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.shop-card__content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 3.2em;
}

.shop-card__price--old {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 4px;
    display: block;
}

.shop-card__price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #7c4dff;
    margin-bottom: 24px;
}

.shop-card__actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn--cart {
    background: #0f0f1a;
    color: #fff;
    flex: 1;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--cart:hover {
    background: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.shop-card__wishlist {
    width: 54px;
    height: 54px;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #666;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-card__wishlist:hover {
    color: #ff4d4d;
    border-color: #ffcccc;
    background: #fff5f5;
}

/* ===== PRICING ===== */
.pricing {
    padding: var(--section-padding);
    background: var(--clr-dark-2);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

/* Old pricing-card styles removed — now managed by .pricing-section block below */

/* ===== BLOG SECTION ===== */
.blog-section {
    padding-bottom: var(--section-padding);
    background: #fff;
    position: relative;
    z-index: 1;
}

.blog-banner {
    background: linear-gradient(rgba(10, 10, 26, 0.82), rgba(10, 10, 26, 0.82)),
        url('../images/cta-bg.png');
    background-size: cover;
    background-position: center;
    padding: 130px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
}

.blog-badge-wrapper {
    margin-bottom: 24px;
}

.blog-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 32px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.blog-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: #fff;
}

.blog-title span {
    color: #ffd700;
    /* Yellow highlight for 'Blog & Tutorials' if needed, but the image shows yellow for title */
}

/* Matching the yellow text from image */
.blog-title {
    color: #ffeb3b;
}

.blog-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.container--blog {
    max-width: 1200px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f5;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card__header {
    background: #e5e7eb;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.blog-card__header i {
    font-size: 4rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

.blog-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.blog-card__meta i {
    font-size: 0.85rem;
    color: inherit;
    opacity: 0.8;
    position: relative;
    top: 1px;
    /* Nudge down slightly for baseline alignment */
}

.blog-card__body {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__body h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-card__body p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    flex: 1;
}

.blog-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-card__tags .tag {
    background: rgba(139, 92, 246, 0.15);
    color: #6a11cb;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

/* ===== QUICK START SECTION ===== */
.quick-start {
    padding: var(--section-padding);
    background: #fff;
}

.quick-start__header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.quick-start__icon {
    font-size: 2.5rem;
    color: #6a11cb;
}

.quick-start__title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
}

.quick-start__card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 40px;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.quick-start__steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.quick-start__steps::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 6px;
    background: #1a1a2e;
    border-radius: 10px;
}

.quick-start__step {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
    padding-left: 40px;
}

.step-marker {
    flex-shrink: 0;
}

.step-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.step-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-actions {
    display: flex;
    gap: 15px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.store-btn--outline {
    background: #000;
    color: #fff;
}

.store-btn.btn--primary {
    background: #6a11cb;
    color: #fff;
}

.store-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.step-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #666;
}

.step-checklist li i {
    color: #6a11cb;
    font-size: 1.2rem;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: var(--section-padding);
    background: #fff;
}

.container--pricing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-badge {
    display: inline-block;
    background: rgba(106, 17, 203, 0.1);
    color: #6a11cb;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.pricing-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.pricing-title span {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-desc {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
    margin-bottom: 50px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #f0f0f5;
    border-radius: 40px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.pricing-card--featured {
    border: 2px solid #2575fc;
    box-shadow: 0 20px 50px rgba(37, 117, 252, 0.12);
    background: linear-gradient(160deg, #f5f3ff 0%, #eff6ff 100%);
}

.pricing-card__badge-top {
    position: absolute;
    top: 0;
    right: 40px;
    transform: translateY(-50%);
    background: #1a1a2e;
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.pricing-card__header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-card__header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.pricing-card__price {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.pricing-card__price .currency {
    font-size: 2rem;
    font-weight: 600;
    color: #2575fc;
}

.pricing-card__price .amount {
    font-size: 4.5rem;
    font-weight: 900;
    color: #1a1a2e;
    letter-spacing: -2px;
}

.pricing-card__price .period {
    font-size: 1.1rem;
    color: #888;
}

.pricing-card__header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #444;
    font-size: 1rem;
}

.pricing-card__features li i {
    color: #4caf50;
    font-size: 1.1rem;
}

.pricing-card__features li.disabled {
    opacity: 0.5;
    text-decoration: line-through;
}

.pricing-card__features li.disabled i {
    color: #ff5252;
}

.pricing-card__actions {
    margin-top: auto;
}

.pricing-card__actions .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    border-radius: var(--radius-full);
}

.pricing-card__btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* Light-background button overrides for pricing section */
.pricing-section .btn--outline-dark {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #dde0ea;
    font-weight: 600;
}

.pricing-section .btn--outline-dark:hover {
    background: #f5f5fa;
    border-color: #c0c4d8;
    transform: translateY(-2px);
}

.pricing-section .btn--primary {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 117, 252, 0.3);
    border: none;
}

.pricing-section .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 117, 252, 0.45);
}

.pricing-section .btn--dark {
    background: #1a1a2e;
    color: #fff;
    border: none;
    font-weight: 600;
}

.pricing-section .btn--dark:hover {
    background: #2d2d4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.pricing-footer {
    display: flex;
    justify-content: center;
    gap: 40px;
    color: #666;
    font-weight: 500;
}

.pricing-footer__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-footer__item i {
    color: #4caf50;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--section-padding);
    background: #fcfcfd;
}

.container--testimonials {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}

.testimonials-desc {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonial-showcase {
    margin-bottom: 50px;
}

.testimonial-card--highlight {
    background: #fff;
    border-radius: 80px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s ease;
}

.testimonial-card__profile {
    flex-shrink: 0;
    text-align: center;
}

.profile-img-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #ffcc00;
    /* Matching the yellow background in the design */
}

.status-dot {
    position: absolute;
    bottom: 12px;
    right: 22px;
    width: 20px;
    height: 20px;
    background: #2ecc71;
    border: 4px solid #fff;
    border-radius: 50%;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c1a4d;
}

.testimonial-card__content {
    position: relative;
    padding-top: 20px;
}

.quote-icon {
    font-size: 2.5rem;
    color: #2c1a4d;
    margin-bottom: 20px;
    opacity: 0.9;
}

.testimonial-text {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.testimonial-stars {
    display: flex;
    gap: 8px;
}

.testimonial-stars i {
    color: #f39c12;
    font-size: 1.4rem;
}

.testimonial-avatars {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.avatar-item {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 4px solid transparent;
    opacity: 0.6;
}

.avatar-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.avatar-item.active {
    opacity: 1;
    border-color: #6a11cb;
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.15);
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a0a3e;
    /* Deep purple/midnight blue */
    padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.8);
}

.container--footer {
    max-width: 1200px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    display: block;
}

.footer__desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer__social a:hover {
    background: #6a11cb;
    border-color: #6a11cb;
    transform: translateY(-3px);
}

.footer__title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer__links,
.footer__contact {
    list-style: none;
    padding: 0;
}

.footer__links li,
.footer__contact li {
    margin-bottom: 16px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #fff;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.5;
}

.footer__contact i {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 4px;
}

.footer__download-desc {
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.footer__apps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    width: fit-content;
    min-width: 180px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.app-btn:hover {
    border-color: #fff;
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 1.8rem;
}

.app-btn__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn__text span {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
}

.app-btn__text strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.95rem;
}

.footer__bottom-links {
    display: flex;
    gap: 30px;
}

.footer__bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer__bottom-links a:hover {
    color: #fff;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal="up"] {
    transform: translateY(40px);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--section-padding);
    background: var(--clr-dark-2);
}

.container--faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--clr-glass);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--ff-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-white);
    cursor: pointer;
}

.faq-item__question i {
    flex-shrink: 0;
    color: var(--clr-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-item__question i {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item__answer p {
    padding: 0 28px 22px;
    color: var(--clr-text);
    font-size: 0.98rem;
    line-height: 1.7;
}

.faq-item__answer a {
    color: var(--clr-secondary);
    font-weight: 600;
}

.faq-item__answer a:hover {
    text-decoration: underline;
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.18);
}

/* ===== SUBPAGE HERO ===== */
.subpage-hero {
    background: linear-gradient(rgba(10, 10, 26, 0.85), rgba(10, 10, 26, 0.85)),
        url('../images/pricing-bg.png');
    background-size: cover;
    background-position: center;
    padding: 160px 0 80px;
    text-align: center;
    color: #fff;
}

.subpage-hero__badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.subpage-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.subpage-hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.subpage-hero__breadcrumb {
    margin-top: 24px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.subpage-hero__breadcrumb a {
    color: #fff;
    font-weight: 600;
}

.subpage-hero__breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== SUBPAGE CONTENT (Blog / Legal / About / Product) ===== */
.subpage-content {
    padding: var(--section-padding);
    background: #fff;
    color: #444;
}

.container--subpage {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--subpage-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.subpage-content h2 {
    color: #1a1a2e;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin: 48px 0 20px;
}

.subpage-content h2:first-child {
    margin-top: 0;
}

.subpage-content h3 {
    color: #1a1a2e;
    font-size: 1.3rem;
    margin: 32px 0 14px;
}

.subpage-content p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: #555;
}

.subpage-content ul,
.subpage-content ol {
    margin: 0 0 18px 24px;
    color: #555;
    line-height: 1.8;
}

.subpage-content ul {
    list-style: disc;
}

.subpage-content ol {
    list-style: decimal;
}

.subpage-content li {
    margin-bottom: 8px;
}

.subpage-content a {
    color: #6a11cb;
    font-weight: 600;
}

.subpage-content a:hover {
    text-decoration: underline;
}

.subpage-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.subpage-meta i {
    margin-right: 6px;
}

.subpage-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ===== RELATED CARDS (Blog / Product) ===== */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 16px;
}

.related-card {
    display: block;
    background: #fff;
    border: 1px solid #f0f0f5;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.related-card__visual {
    background: #f0f1f5;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    color: #1d1d2e;
}

.related-card__body {
    padding: 22px;
}

.related-card__body span.tag {
    display: inline-block;
    margin-bottom: 10px;
}

.related-card__body h4 {
    color: #1a1a2e;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.related-card__body p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== ABOUT / CONTACT PAGE ===== */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0 48px;
}

.about-value-card {
    background: #f7f7fa;
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

.about-value-card i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
    display: inline-block;
}

.about-value-card h4 {
    color: #1a1a2e;
    margin-bottom: 8px;
}

.about-value-card p {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    background: #1a0a3e;
    border-radius: var(--radius);
    padding: 36px;
    margin: 48px 0;
    text-align: center;
}

.about-stats__item {
    flex: 1;
    min-width: 120px;
}

.about-stats__item strong {
    display: block;
    font-family: var(--ff-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.about-stats__item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #eee;
    border-radius: var(--radius-sm);
    font-family: var(--ff-body);
    font-size: 1rem;
    color: #1a1a2e;
    background: #f7f7fa;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--clr-secondary);
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info {
    background: #f7f7fa;
    border-radius: var(--radius);
    padding: 36px;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info ul {
    list-style: none;
    margin: 24px 0 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-info li i {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 10px;
    font-size: 1rem;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.product-detail__visual {
    background: #f0f1f5;
    border-radius: var(--radius);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    color: #1d1d2e;
    position: relative;
}

.product-detail__badge {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    background: #ff4d4d;
    color: #fff;
}

.product-detail__info h1 {
    color: #1a1a2e;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

.product-detail__price {
    font-size: 2rem;
    font-weight: 800;
    color: #7c4dff;
    margin-bottom: 20px;
}

.product-detail__price--old {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 12px;
}

.product-detail__desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-detail__features {
    list-style: none;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-detail__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
}

.product-detail__features i {
    color: var(--clr-success);
}

.product-detail__actions {
    display: flex;
    gap: 15px;
}

/* ===== RESPONSIVE — NEW SECTIONS ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
    }

    .subpage-hero {
        padding: 130px 0 60px;
    }

    .product-detail__visual {
        height: 280px;
        font-size: 5rem;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero__diagonal {
        width: 100%;
        clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0% 100%);
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__image {
        max-width: 450px;
    }

    .nav {
        position: static;
        transform: none;
    }

    .home-monitor__main-inner {
        grid-template-columns: 1fr;
    }

    .home-monitor__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .supports__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .supports__visual {
        order: -1;
    }

    .ai-bodyguard__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .ai-bodyguard__mini-features {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .ai-bodyguard__visual {
        order: -1;
    }

    .floating-alert {
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: -30px !important;
    }

    .floating-status {
        right: 50% !important;
        transform: translateX(50%) !important;
        bottom: -15px !important;
    }

    .sos-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sos-visual {
        order: -1;
    }

    .sos-footer-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .sos-footer-icon {
        font-size: 3rem;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .quick-start__card {
        padding: 40px 30px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonial-card--highlight {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
        text-align: center;
        border-radius: 40px;
    }

    .profile-img-wrapper {
        width: 140px;
        height: 140px;
    }

    .avatar-item {
        width: 70px;
        height: 70px;
    }

    .quote-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-stars {
        justify-content: center;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__col:last-child {
        grid-column: span 2;
    }

    .footer__apps {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .nav {
        display: none;
    }

    .nav.open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 10, 62, 0.97);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav.open .nav__list {
        flex-direction: column;
        gap: 4px;
        background: transparent;
        padding: 0;
    }

    .nav.open .nav__link {
        display: block;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        color: rgba(255, 255, 255, 0.8);
    }

    .nav.open .nav__link:hover {
        color: var(--clr-white);
        background: rgba(255, 255, 255, 0.1);
    }

    .nav__toggle {
        display: block;
    }

    .header__actions .btn {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__diagonal {
        clip-path: polygon(0 0, 100% 0, 100% 25%, 0 50%);
    }

    .hero__image {
        max-width: 350px;
    }

    .ai-bodyguard__mini-features {
        grid-template-columns: 1fr;
    }

    .ai-bodyguard__accuracy {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .supports__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .supports__visual {
        order: -1;
    }

    .alert-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }

    .supports__banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto 40px;
    }

    .pricing-footer {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .quick-start__steps::before {
        left: 0;
    }

    .quick-start__step {
        gap: 20px;
    }

    .shop-tabs {
        gap: 20px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 15px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__col:last-child {
        grid-column: span 1;
    }

    .footer__apps {
        flex-direction: column;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer__bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero__stat-divider {
        display: none;
    }

    .hero__cta {
        flex-direction: column;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .sos-status-row {
        flex-direction: column;
    }

    .sos-alert-delivered {
        right: 0;
        bottom: 100px;
    }

    /* Shop Responsive */
    .shop-tabs {
        gap: 20px;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 5px;
    }

    .shop-tab {
        white-space: nowrap;
        font-size: 0.95rem;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .shop-card__visual {
        height: 200px;
        font-size: 4rem;
    }

    .shop-banner {
        padding: 60px 0;
    }
}