/* ============================================
   STAR11 - Custom Lightweight CSS
   Primary: #002447 | No Bootstrap
   ============================================ */
/* ---------- SELF-HOSTED INTER FONT ---------- */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/inter-v20-latin_latin-ext-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/inter-v20-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/inter-v20-latin_latin-ext-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('fonts/inter-v20-latin_latin-ext-800.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('fonts/inter-v20-latin_latin-ext-900.woff2') format('woff2');
}

/* ---------- CSS VARIABLES ---------- */
:root {
    --primary: #002447;
    --primary-light: #003366;
    --primary-dark: #001a33;
    --primary-50: #e6edf4;
    --primary-100: #ccdbe9;
    --primary-200: #99b7d3;
    --primary-800: #001b36;
    --accent: #00c6ff;
    --accent-dark: #00a3d9;
    --gradient: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    --gradient-text: linear-gradient(135deg, #00c6ff 0%, #0072ff 50%, #00c6ff 100%);
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --shadow-sm: 0 1px 2px rgba(0, 36, 71, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 36, 71, 0.07), 0 2px 4px -2px rgba(0, 36, 71, 0.05);
    --shadow-md: 0 10px 25px -3px rgba(0, 36, 71, 0.08), 0 4px 6px -4px rgba(0, 36, 71, 0.05);
    --shadow-lg: 0 20px 50px -12px rgba(0, 36, 71, 0.15);
    --shadow-xl: 0 25px 60px -12px rgba(0, 36, 71, 0.2);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

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

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

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(0, 198, 255, 0.08);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn--primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 36, 71, 0.3);
}

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

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

.btn--white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn--white:hover {
    background: var(--primary-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

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

.btn--block {
    width: 100%;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 36, 71, 0.06);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.nav__logo img {
    height: 36px;
    width: auto;
    display: block;
}

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

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

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary);
    background: var(--primary-50);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__cta:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 36, 71, 0.3);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--primary-50) 0%, var(--white) 100%);
}

.hero__bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.hero__circle--1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -100px;
}

.hero__circle--2 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    bottom: -100px;
    left: -100px;
}

.hero__circle--3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 40%;
    left: 30%;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-dark);
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero__subtitle strong {
    color: var(--primary);
    font-weight: 700;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

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

.hero__trust-stars {
    display: flex;
    gap: 2px;
}

.hero__trust span {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Hero Phone Mockup */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__phone {
    position: relative;
}

.hero__phone-frame {
    width: 280px;
    height: 560px;
    background: var(--primary);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 36, 71, 0.1);
    position: relative;
    z-index: 2;
}

.hero__phone-screen {
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}

.hero__phone-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Phone UI Mock */
.phone-ui {
    padding: 20px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.phone-ui__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-ui__logo {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
}

.phone-ui__status {
    font-size: 11px;
    font-weight: 600;
    color: var(--success);
    background: rgba(16, 185, 129, 0.15);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.phone-ui__match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 16px;
}

.phone-ui__team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.phone-ui__team span {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
}

.phone-ui__team-flag {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.phone-ui__team-flag--ind {
    background: linear-gradient(180deg, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%);
}

.phone-ui__team-flag--aus {
    background: linear-gradient(180deg, #002868 50%, #FFCD00 50%);
}

.phone-ui__vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.phone-ui__vs span {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
}

.phone-ui__vs small {
    font-size: 10px;
    color: var(--gray-400);
}

.phone-ui__gen-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
}

.phone-ui__gen-icon {
    color: var(--accent);
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.phone-ui__gen-bar span {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    flex: 1;
}

.phone-ui__gen-progress {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.phone-ui__gen-fill {
    width: 70%;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    animation: progress-fill 2s ease-in-out infinite;
}

@keyframes progress-fill {
    0% { width: 20%; }
    50% { width: 90%; }
    100% { width: 20%; }
}

.phone-ui__teams {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.phone-ui__team-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    transition: var(--transition);
}

.phone-ui__team-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.phone-ui__card-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.phone-ui__card-pts {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
}

.phone-ui__actions {
    display: flex;
    gap: 8px;
}

.phone-ui__action-btn {
    flex: 1;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    padding: 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.phone-ui__action-btn--copy {
    background: var(--accent);
    color: var(--primary);
}

.phone-ui__action-btn--update {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ============================================
   PLATFORMS SECTION
   ============================================ */
.platforms {
    padding: 0 0 40px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
}

.platforms__strip {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px 32px;
    box-shadow: var(--shadow-md);
}

.platforms__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.platforms__logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.platforms__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.platforms__item:hover {
    background: var(--gray-50);
}

.platforms__item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
}

.platforms__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--white);
}

.platforms__icon--dream11 { background: linear-gradient(135deg, #d2232a, #e74c3c); }
.platforms__icon--my11circle { background: linear-gradient(135deg, #1a73e8, #4285f4); }
.platforms__icon--myteam11 { background: linear-gradient(135deg, #f7931e, #f5a623); }
.platforms__icon--myfab11 { background: linear-gradient(135deg, #9b59b6, #8e44ad); }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 80px 0;
}

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

.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: auto;
    display: block;
}

.about__content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__content p strong {
    color: var(--gray-800);
}

.about__highlights {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about__highlights li {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.about__highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.about__highlights li strong {
    color: var(--primary);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 40px 0 80px;
}

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

.stats__card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.stats__card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.stats__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--primary-50);
    color: var(--primary);
    margin-bottom: 16px;
}

.stats__number {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: inline;
}

.stats__suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    display: inline;
}

.stats__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card__icon--purple { background: #f3e8ff; color: #7c3aed; }
.feature-card__icon--blue { background: #dbeafe; color: #2563eb; }
.feature-card__icon--green { background: #d1fae5; color: #059669; }
.feature-card__icon--orange { background: #ffedd5; color: #ea580c; }
.feature-card__icon--red { background: #fee2e2; color: #dc2626; }
.feature-card__icon--cyan { background: #cffafe; color: #0891b2; }
.feature-card__icon--pink { background: #fce7f3; color: #db2777; }

.feature-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card__desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 80px 0;
}

.steps__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    position: relative;
    flex: 1;
    max-width: 320px;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.step-card__number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.step-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--primary-50);
    color: var(--primary);
    margin-bottom: 20px;
}

.step-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.step-card__desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

.steps__connector {
    color: var(--gray-300);
    flex-shrink: 0;
    padding: 0 8px;
}

/* ============================================
   APP SHOWCASE
   ============================================ */
.showcase {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.showcase__grid--wide {
    grid-template-columns: 1.8fr 1fr;
    gap: 60px;
}

.showcase__content .section-tag,
.showcase__content .section-title,
.showcase__content .section-desc {
    text-align: left;
}

.showcase__content .section-desc {
    margin-bottom: 28px;
}

.showcase__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.showcase__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-600);
}

.showcase__item svg {
    color: var(--success);
    flex-shrink: 0;
}

.showcase__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.showcase__feature-group {
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.2s ease;
}

.showcase__feature-group:hover {
    box-shadow: var(--shadow-md);
}

.showcase__feature-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.showcase__feature-title svg {
    flex-shrink: 0;
}

.showcase__feature-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

.showcase__feature-desc strong {
    color: var(--primary);
    font-weight: 600;
}

/* Showcase Visual */
.showcase__visual {
    display: flex;
    justify-content: center;
}

.showcase__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.showcase__phone-stack {
    position: relative;
    width: 300px;
    height: 520px;
}

.showcase__phone {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.showcase__phone--front {
    width: 240px;
    height: 480px;
    z-index: 2;
    bottom: 0;
    left: 0;
}

.showcase__phone--back {
    width: 220px;
    height: 440px;
    z-index: 1;
    top: 0;
    right: 0;
    opacity: 0.8;
}

.showcase__phone-screen {
    width: 100%;
    height: 100%;
}

.showcase__phone-screen--1 {
    background: var(--primary);
}

.showcase__phone-screen--2 {
    background: var(--primary-light);
}

/* Mock UI Elements */
.mock-ui {
    padding: 20px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mock-ui__header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.mock-ui__header-bar span {
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
}

.mock-ui__dots {
    display: flex;
    gap: 4px;
}

.mock-ui__dots i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.mock-ui__match-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.mock-ui__flag {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FF9933 33%, #fff 33%, #fff 66%, #138808 66%);
}

.mock-ui__flag--alt {
    background: linear-gradient(180deg, #002868 50%, #FFCD00 50%);
}

.mock-ui__vs-text {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
}

.mock-ui__gen-btn {
    background: var(--accent);
    color: var(--primary);
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
}

.mock-ui__team-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.mock-ui__team-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--white);
}

.mock-ui__pts {
    color: var(--accent);
    font-weight: 600;
}

.mock-ui__top {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    padding: 16px 0;
    text-align: center;
}

.mock-ui__bar {
    height: 8px;
    border-radius: 4px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mock-ui__bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 4px;
    background: var(--gradient);
}

.mock-ui__bar--full::after { width: 100%; }
.mock-ui__bar--90::after { width: 90%; }
.mock-ui__bar--80::after { width: 80%; }
.mock-ui__bar--60::after { width: 60%; }

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 80px 0;
}

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

.pricing__grid--4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.price-card--featured {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.price-card--featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.price-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.price-card__header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.price-card--featured .price-card__header {
    border-color: rgba(255, 255, 255, 0.15);
}

.price-card__name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.price-card--featured .price-card__name {
    color: var(--white);
}

.price-card__tagline {
    font-size: 14px;
    color: var(--gray-400);
}

.price-card--featured .price-card__tagline {
    color: rgba(255, 255, 255, 0.6);
}

.price-card__features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 0;
}

.price-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
}

.price-card--featured .price-card__features li {
    color: rgba(255, 255, 255, 0.85);
}

.price-card__features li svg {
    color: var(--success);
    flex-shrink: 0;
}

.price-card--featured .price-card__features li svg {
    color: var(--accent);
}

.price-card--featured .btn--primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.price-card--featured .btn--primary:hover {
    background: var(--primary-50);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: normal;
    margin-bottom: 20px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.testimonial-card__name {
    font-size: 14px;
    color: var(--primary);
    display: block;
}

.testimonial-card__role {
    font-size: 12px;
    color: var(--gray-400);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 80px 0;
}

.faq__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 100%;
}

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

.faq__item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item:hover {
    border-color: var(--primary-200);
}

.faq__item[open] {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    list-style: none;
    user-select: none;
    transition: var(--transition);
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::marker {
    display: none;
    content: '';
}

.faq__chevron {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: var(--transition);
}

.faq__item[open] .faq__chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq__answer {
    padding: 0 24px 18px;
}

.faq__answer p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 80px 0;
    background: var(--gray-50);
}

.cta__card {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 198, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 114, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta__content {
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cta__actions {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.cta__actions .btn {
    white-space: normal;
    text-align: center;
    max-width: 100%;
}

.cta__note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand .nav__logo {
    margin-bottom: 16px;
    display: inline-flex;
}

.footer__brand .logo-star {
    color: var(--white);
}

.footer__about {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.75);
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer__heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer__play-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 12px 20px;
    color: var(--white);
    transition: var(--transition);
    margin-bottom: 16px;
}

.footer__play-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer__play-btn small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    display: block;
}

.footer__play-btn strong {
    font-size: 16px;
    display: block;
}

.footer__contact-email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer__contact-email a {
    color: rgba(255, 255, 255, 0.75);
}

.footer__contact-email a:hover {
    color: var(--accent);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__bottom a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer__bottom a:hover {
    text-decoration: underline;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero__subtitle {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__phone-frame {
        width: 250px;
        height: 500px;
    }

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

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

    .steps__grid {
        flex-direction: column;
        gap: 16px;
    }

    .steps__connector {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }

    .showcase__grid,
    .showcase__grid--wide {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .about__content {
        text-align: center;
    }

    .about__highlights {
        text-align: left;
    }

    .about__content .btn {
        margin: 0 auto;
    }

    .showcase__content .section-tag,
    .showcase__content .section-title,
    .showcase__content .section-desc {
        text-align: center;
    }

    .showcase__list {
        align-items: center;
    }

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

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

    .price-card--featured {
        transform: scale(1);
    }

    .price-card--featured:hover {
        transform: translateY(-4px);
    }

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

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .blog-post__layout {
        grid-template-columns: 1fr 240px;
        gap: 32px;
    }

    .blog-card--featured {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 4px;
        box-shadow: -10px 0 40px rgba(0, 36, 71, 0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        font-size: 16px;
        padding: 12px 16px;
        width: 100%;
    }

    .nav__cta {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero__title {
        font-size: clamp(30px, 8vw, 42px);
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero__phone-frame {
        width: 220px;
        height: 440px;
    }

    .phone-ui {
        padding: 14px 12px;
        gap: 10px;
    }

    .phone-ui__match {
        padding: 12px;
    }

    .phone-ui__team-flag {
        width: 32px;
        height: 32px;
    }

    .phone-ui__vs span {
        font-size: 14px;
    }

    .platforms__strip {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .platforms__logos {
        gap: 12px;
    }

    .platforms__item {
        padding: 6px 12px;
    }

    .about {
        padding: 48px 0;
    }

    .about__grid {
        gap: 32px;
    }

    .about__content p {
        font-size: 15px;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stats__card {
        padding: 24px 16px;
    }

    .stats__number {
        font-size: 32px;
    }

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

    .pricing__grid,
    .pricing__grid--4 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .price-card--featured {
        transform: scale(1);
        order: -1;
    }

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

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

    .showcase__phone-stack {
        width: 260px;
        height: 460px;
    }

    .showcase__phone--front {
        width: 210px;
        height: 420px;
    }

    .showcase__phone--back {
        width: 190px;
        height: 380px;
    }

    .cta__card {
        padding: 48px 24px;
    }

    .cta__actions .btn {
        width: 100%;
        font-size: 14px;
        padding: 14px 20px;
    }

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

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .faq__question {
        padding: 16px 20px;
        font-size: 14px;
    }

    .faq__answer {
        padding: 0 20px 16px;
    }

}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .hero__badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__phone-frame {
        width: 200px;
        height: 400px;
    }

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

    .stats__grid {
        gap: 12px;
    }

    .stats__number {
        font-size: 28px;
    }

    .stats__suffix {
        font-size: 18px;
    }

    .step-card {
        padding: 28px 20px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .cta__title {
        font-size: 22px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

}

/* ============================================
   BLOG PAGES
   ============================================ */

/* ---------- BREADCRUMB ---------- */
.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--gray-400);
}

.breadcrumb li a {
    color: var(--accent);
    font-weight: 500;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--gray-300);
}

/* ---------- BLOG HERO ---------- */
.blog-hero {
    padding: 140px 0 60px;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 198, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(0, 114, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero .breadcrumb li {
    color: rgba(255, 255, 255, 0.5);
}

.blog-hero .breadcrumb li a {
    color: rgba(255, 255, 255, 0.7);
}

.blog-hero .breadcrumb li:not(:last-child)::after {
    color: rgba(255, 255, 255, 0.3);
}

.blog-hero__title {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 720px;
}

.blog-hero__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 640px;
}

.blog-hero--post {
    padding-bottom: 48px;
}

.blog-hero--post .blog-hero__title {
    max-width: 800px;
}

/* ---------- BLOG POST META ---------- */
.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.blog-post-meta__read {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- BLOG LISTING ---------- */
.blog-listing {
    padding: 64px 0 80px;
}

.blog-listing__layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

/* ---------- BLOG CARD ---------- */
.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card__image {
    overflow: hidden;
    display: block;
    aspect-ratio: 12 / 5;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.04);
}

.blog-card__content {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.blog-card__category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(0, 198, 255, 0.08);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.blog-card__date {
    font-size: 13px;
    color: var(--gray-400);
}

.blog-card__read-time {
    font-size: 12px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card__read-time::before {
    content: '·';
    color: var(--gray-300);
}

.blog-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card__title a {
    color: inherit;
}

.blog-card__title a:hover {
    color: var(--accent-dark);
}

.blog-card__excerpt {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.blog-card__tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.blog-card__read-more:hover {
    color: var(--accent);
    gap: 10px;
}

/* ---------- BLOG LISTING SIDEBAR ---------- */
.blog-listing__sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar__widget {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.blog-sidebar__widget .blog-sidebar__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.blog-sidebar__search {
    position: relative;
}

.blog-sidebar__search-input {
    width: 100%;
    padding: 10px 40px 10px 14px;
    font-size: 13px;
    font-family: inherit;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    color: var(--primary);
    outline: none;
    transition: var(--transition);
}

.blog-sidebar__search-input:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 198, 255, 0.1);
}

.blog-sidebar__search-input::placeholder {
    color: var(--gray-400);
}

.blog-sidebar__search svg {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}

.blog-sidebar__categories {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-sidebar__category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
}

.blog-sidebar__category:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.blog-sidebar__category.active {
    background: rgba(0, 198, 255, 0.06);
    color: var(--accent-dark);
    font-weight: 600;
}

.blog-sidebar__count {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    min-width: 24px;
    text-align: center;
}

.blog-sidebar__category.active .blog-sidebar__count {
    background: rgba(0, 198, 255, 0.12);
    color: var(--accent-dark);
}

.blog-sidebar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-sidebar__tag-link {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.blog-sidebar__tag-link:hover {
    background: rgba(0, 198, 255, 0.06);
    border-color: var(--accent);
    color: var(--accent-dark);
}

.blog-sidebar__widget--cta {
    background: var(--primary);
    border-color: var(--primary);
}

.blog-sidebar__cta h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.blog-sidebar__cta p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-sidebar__cta .btn {
    width: 100%;
    justify-content: center;
}

/* ---------- BLOG POST HERO IMAGE ---------- */
.blog-post-hero-image {
    padding: 40px 0;
    background: var(--gray-50);
}

.blog-post-hero-image__wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.blog-post-hero-image__wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- BLOG POST CONTENT ---------- */
.blog-post {
    padding: 48px 0 80px;
}

.blog-post__layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
}

.blog-post__content {
    min-width: 0;
}

.blog-post__content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-post__content h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.3;
    scroll-margin-top: 100px;
}

.blog-post__content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 28px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-post__content ul,
.blog-post__content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.blog-post__content ul {
    list-style: disc;
}

.blog-post__content ol {
    list-style: decimal;
}

.blog-post__content li {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 8px;
}

.blog-post__content a {
    color: var(--accent-dark);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-post__content a:hover {
    color: var(--primary);
}

.blog-post__content blockquote {
    border-left: 4px solid var(--accent);
    background: var(--gray-50);
    margin: 24px 0;
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.blog-post__content blockquote p {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ---------- BLOG POST TABLE ---------- */
.blog-post__table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.blog-post__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.blog-post__table thead {
    background: var(--primary);
    color: var(--white);
}

.blog-post__table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.blog-post__table td {
    padding: 12px 16px;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-600);
}

.blog-post__table tbody tr:hover {
    background: var(--gray-50);
}

/* ---------- BLOG POST CTA BOX ---------- */
.blog-post__cta-box {
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-top: 40px;
}

.blog-post__cta-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    margin-top: 0;
}

.blog-post__cta-box p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.blog-post__cta-box .btn {
    margin-bottom: 0;
}

/* ---------- BLOG SIDEBAR ---------- */
.blog-post__sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar__toc,
.blog-sidebar__related {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.blog-sidebar__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.blog-sidebar__toc ul,
.blog-sidebar__related ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-sidebar__toc li a,
.blog-sidebar__related li a {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
    transition: var(--transition);
}

.blog-sidebar__toc li a:hover,
.blog-sidebar__related li a:hover {
    color: var(--primary);
}

/* ============================================
   PAGE CONTENT (Legal pages, Contact, etc.)
   ============================================ */
.page-content {
    padding: 48px 0 80px;
}

.page-content .container {
    max-width: 800px;
}

.page-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 36px;
    margin-bottom: 14px;
    line-height: 1.3;
}

.page-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 28px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.page-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content ul {
    list-style: disc;
}

.page-content ol {
    list-style: decimal;
}

.page-content li {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 8px;
}

.page-content a {
    color: var(--accent-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-content a:hover {
    color: var(--primary);
}

.page-content strong {
    color: var(--gray-800);
}

.page-content .page-meta {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 8px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 198, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent-dark);
}

.contact-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-card__text {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

.contact-card__text a {
    color: var(--accent-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-card__text a:hover {
    color: var(--primary);
}

.contact-form {
    margin-top: 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 198, 255, 0.1);
    background: var(--white);
}

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

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

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

    .contact-form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-content {
        padding: 32px 0 60px;
    }
}

/* ============================================
   BLOG RESPONSIVE - TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .blog-post__layout {
        grid-template-columns: 1fr 240px;
        gap: 32px;
    }

    .blog-listing__layout {
        grid-template-columns: 1fr 260px;
        gap: 28px;
    }
}

/* ============================================
   BLOG RESPONSIVE - MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .blog-hero {
        padding: 120px 0 48px;
    }

    .blog-hero__title {
        font-size: clamp(24px, 6vw, 36px);
    }

    .blog-hero__desc {
        font-size: 15px;
    }

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

    .blog-listing__sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .blog-sidebar__widget {
        margin-bottom: 0;
    }

    .blog-post__layout {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .blog-post__content {
        width: 100%;
    }

    .blog-post__sidebar {
        position: static !important;
        width: 100%;
    }

    .blog-sidebar__toc,
    .blog-sidebar__related {
        margin-bottom: 16px;
    }

    .blog-post__content h2 {
        font-size: 22px;
        margin-top: 32px;
    }

    .blog-post__content h3 {
        font-size: 17px;
    }

    .blog-post-hero-image {
        padding: 0 0 24px;
    }

    .blog-post-hero-image__wrapper {
        border-radius: var(--radius);
    }
}

/* ============================================
   BLOG RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .blog-hero {
        padding: 100px 0 36px;
    }

    .blog-post__cta-box {
        padding: 24px 20px;
    }

    .blog-listing {
        padding: 40px 0 60px;
    }

    .blog-listing__sidebar {
        grid-template-columns: 1fr;
    }

    .blog-card__content {
        padding: 20px;
    }

    .blog-card__title {
        font-size: 17px;
    }
}

/* ---------- OVERLAY for Mobile Menu ---------- */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 36, 71, 0.3);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

/* ---------- PRINT STYLES ---------- */
@media print {
    .header,
    .back-to-top,
    .cta,
    .nav__toggle {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        padding-top: 20px;
    }
}
