/* ==================================================
   Fixology Design System — Clean, Warm, Professional
   ================================================== */

/* --- CSS Variables --- */
:root {
    --primary: #a53608;
    --primary-hover: #832600;
    --primary-light: #ffdbd0;
    --secondary: #595f66;
    --dark: #1b1c1a;
    --dark-hover: #000000;
    --body-text: #41474e;
    --light-text: #888888;
    --white: #FFFFFF;
    --bg-light: #fbf9f6;
    --surface-low: #f5f3f0;
    --surface-high: #efeeeb;
    --bg-section: #FAFAFA;
    --border: #e0c0b6;
    --shadow-sm: 0 2px 10px rgba(27, 28, 26, 0.04);
    --shadow-md: 0 10px 30px rgba(27, 28, 26, 0.06);
    --shadow-lg: 0 20px 50px rgba(27, 28, 26, 0.1);
    --radius-sm: 8px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 60px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--body-text);
    line-height: 1.7;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

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

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

/* --- Buttons --- */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(165, 54, 8, 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(165, 54, 8, 0.3);
    filter: brightness(1.05);
}

.btn-primary i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(3px);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-dark:hover {
    background: var(--dark-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-dark i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-dark:hover i {
    transform: translateX(3px);
}

/* --- Section Headings --- */
.section-header {
    margin-bottom: 80px;
    max-width: 600px;
}

.section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-heading {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
}

.section-subtext {
    font-size: 1rem;
    color: var(--body-text);
    line-height: 1.7;
    max-width: 650px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-subtext {
    margin: 0 auto;
}

/* ==================================================
   NAVBAR
   ================================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1140px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: none;
    border-radius: var(--radius-xl);
    z-index: 1000;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    top: 12px;
    width: 88%;
    max-width: 1060px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.95rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.hero-trust {
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 500;
    padding-left: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--body-text);
    position: relative;
    padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark);
}

.nav-cta-link:hover {
    color: var(--primary);
}

.nav-cta-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-cta-link:hover i {
    transform: translateX(3px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--dark);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 32px;
    border-radius: 0 0 24px 24px;
}

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

.mobile-menu a {
    padding: 14px 0;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--body-text);
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-cta-btn {
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    padding: 14px 28px !important;
    background-color: var(--primary);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border-bottom: none !important;
}

/* ==================================================
   HERO SECTION
   ================================================== */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

.hero-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1.05;
    margin-bottom: 32px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--body-text);
    margin-bottom: 48px;
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 470px;
}

.hero-btn {
    font-size: 0.95rem;
}

/* Hero Image Area */
.hero-image-wrap {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background-color: var(--primary);
}

/* Stats Cards */
.stats-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    border: none;
}

.stats-card-top {
    position: absolute;
    top: 20px;
    right: -30px;
    max-width: 260px;
    z-index: 2;
    animation: floatUp 3s ease-in-out infinite alternate;
}

.stats-card-bottom {
    position: absolute;
    bottom: -20px;
    left: -30px;
    z-index: 2;
    animation: floatUp 3s ease-in-out infinite alternate;
    animation-delay: 1.5s;
}

@keyframes floatUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

.stats-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stats-label {
    font-size: 0.8rem;
    color: var(--body-text);
    line-height: 1.5;
}

.stats-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stats-divider {
    width: 1px;
    height: 50px;
    background-color: var(--border);
}

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

/* ==================================================
   OUR STORY SECTION
   ================================================== */
.story-section {
    padding: 120px 0;
    background: var(--white);
}

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

/* Tabs */
.story-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border);
}

.story-tab {
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--body-text);
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.story-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    transition: var(--transition);
}

.story-tab.active {
    color: var(--primary);
    font-weight: 600;
}

.story-tab.active::after {
    background: var(--primary);
}

.story-tab:hover {
    color: var(--primary);
}

/* Category Tags */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.tag-filled {
    background-color: var(--primary);
    color: var(--white);
}

.tag-filled:hover {
    background-color: var(--primary-hover);
}

.tag-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.tag-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.story-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.story-text {
    font-size: 0.95rem;
    color: var(--body-text);
    line-height: 1.8;
}

/* Story Image */
.story-image-wrap {
    position: relative;
}

.story-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.story-quote {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    padding: 32px 36px;
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    position: absolute;
    bottom: -40px;
    left: -40px;
    right: 40px;
    box-shadow: var(--shadow-lg);
}

.story-quote p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
    line-height: 1.7;
}

/* ==================================================
   HOW IT WORKS
   ================================================== */
.how-it-works {
    padding: 120px 0;
    background: var(--surface-low);
}

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

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

.step-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.9rem;
    color: var(--body-text);
    line-height: 1.7;
}

/* ==================================================
   OUR EXPERTS
   ================================================== */
.experts-section {
    padding: 120px 0;
    background: var(--white);
}

.experts-header {
    margin-bottom: 80px;
    max-width: 600px;
}

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

.expert-card {
    background: var(--surface-low);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.expert-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.expert-card:hover .expert-photo {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(212, 87, 42, 0.2);
}

.expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.expert-role {
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 400;
}

/* ==================================================
   CTA SECTION
   ================================================== */
.cta-section {
    padding: 90px 0;
    background: var(--white);
}

.cta-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--white);
}

.cta-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-btn {
    background-color: var(--dark) !important;
}

.cta-btn:hover {
    background-color: var(--dark-hover) !important;
}

/* ==================================================
   FOOTER
   ================================================== */
.footer {
    background: var(--bg-light);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr 1.1fr;
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
}

.footer-logo .logo-text {
    font-size: 1.15rem;
}

.footer-image-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.footer-image-wrap img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.footer-col-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--body-text);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: var(--body-text);
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.newsletter-label {
    font-size: 0.92rem;
    color: var(--body-text);
    margin-bottom: 16px;
}

.newsletter-label strong {
    color: var(--dark);
}

.newsletter-form {
    display: flex;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
}

.newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--dark);
    background: transparent;
}

.newsletter-form input::placeholder {
    color: var(--light-text);
}

.newsletter-btn {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: var(--primary-hover);
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--light-text);
}

/* ==================================================
   SCROLL REVEAL ANIMATION
   ================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ---------- Large Tablet (1024px) ---------- */
@media (max-width: 1024px) {
    .container {
        padding: 0 28px;
    }

    /* Navbar */
    .navbar {
        width: 94%;
    }

    .navbar.scrolled {
        width: 90%;
    }

    /* Hero */
    .hero-title {
        font-size: 2.6rem;
    }

    .hero-grid {
        gap: 36px;
    }

    .hero-img {
        height: 380px;
    }

    .stats-card-top {
        right: -10px;
        max-width: 230px;
    }

    .stats-card-bottom {
        left: -10px;
    }

    /* Story */
    .story-img {
        height: 380px;
    }

    /* How It Works */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    /* Experts */
    .experts-grid {
        gap: 30px 24px;
    }

    .expert-photo {
        width: 130px;
        height: 130px;
    }

    /* CTA */
    .cta-card {
        padding: 56px 48px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 24px;
    }

    .footer-newsletter {
        grid-column: span 4;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .newsletter-label {
        margin-bottom: 0;
        white-space: nowrap;
    }

    .newsletter-form {
        max-width: 320px;
    }
}

/* ---------- Small Tablet / Large Phone (850px) ---------- */
@media (max-width: 850px) {
    /* Navbar → mobile mode */
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .navbar {
        width: 92%;
        border-radius: 50px;
    }

    .navbar.scrolled {
        width: 88%;
    }

    .nav-container {
        padding: 0 24px;
        height: 58px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    /* Mobile menu smooth slide */
    .mobile-menu {
        padding: 12px 24px 16px;
    }

    .mobile-menu a {
        padding: 12px 0;
        font-size: 0.9rem;
    }

    /* Hero → single column */
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-image-wrap {
        order: 2;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 520px;
    }

    .hero-btn {
        justify-content: center;
        margin: 0 auto;
    }

    .hero-img {
        height: 340px;
    }

    .stats-card-top {
        right: -8px;
        max-width: 220px;
        padding: 16px 18px;
    }

    .stats-card-top .stats-number {
        font-size: 1.6rem;
    }

    .stats-card-top .stats-label {
        font-size: 0.75rem;
    }

    .stats-card-bottom {
        left: -8px;
        padding: 16px 18px;
    }

    .stats-card-bottom .stats-number {
        font-size: 1.6rem;
    }

    /* Story → single column */
    .story-section {
        padding: 70px 0 90px;
    }

    .story-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .story-tabs, .category-tags {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .story-img {
        height: 340px;
    }

    .story-quote {
        position: relative;
        bottom: auto;
        left: 0;
        right: 0;
        margin-top: 24px;
        width: 100%;
        box-sizing: border-box;
    }

    .story-title {
        font-size: 1.6rem;
    }

    /* How It Works */
    .how-it-works {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Experts → 2 col */
    .experts-section {
        padding: 70px 0;
    }

    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .expert-photo {
        width: 120px;
        height: 120px;
    }

    /* CTA */
    .cta-section {
        padding: 70px 0;
    }

    .cta-card {
        padding: 48px 32px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 0.9rem;
    }

    /* Footer → 2 col */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: span 2;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-image-wrap {
        flex: 1;
        max-width: 260px;
    }

    .footer-newsletter {
        grid-column: span 2;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .newsletter-label {
        margin-bottom: 0;
    }

    .section-heading {
        font-size: 2rem;
    }

    .section-subtext {
        font-size: 0.92rem;
    }
}

/* ---------- Tablet Portrait / Phablet (768px) ---------- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .story-tabs {
        gap: 0;
    }

    .story-tab {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .category-tags {
        gap: 6px;
    }

    .tag {
        padding: 5px 12px;
        font-size: 0.75rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .step-title {
        font-size: 1.05rem;
    }

    .step-description {
        font-size: 0.85rem;
    }

    .expert-name {
        font-size: 0.95rem;
    }

    .expert-role {
        font-size: 0.8rem;
    }

    .cta-card::before,
    .cta-card::after {
        display: none;
    }
}

/* ---------- Mobile (600px) ---------- */
@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    /* Navbar */
    .navbar {
        width: 94%;
        top: 12px;
        border-radius: 40px;
    }

    .navbar.scrolled {
        width: 92%;
        top: 8px;
    }

    .nav-container {
        padding: 0 18px;
        height: 52px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        border-radius: 6px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .mobile-toggle {
        font-size: 1.2rem;
        padding: 6px;
    }

    .mobile-menu {
        padding: 10px 18px 14px;
        border-radius: 0 0 20px 20px;
    }

    .mobile-menu a {
        padding: 11px 0;
        font-size: 0.88rem;
    }

    .mobile-cta-btn {
        padding: 12px 20px !important;
        font-size: 0.88rem;
    }

    /* Hero */
    .hero {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 0.88rem;
        margin-bottom: 28px;
        line-height: 1.7;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 0.88rem;
        width: 100%;
        justify-content: center;
    }

    .hero-img {
        height: 260px;
        border-radius: var(--radius-md);
    }

    .hero-accent-bar {
        width: 6px;
    }

    /* Stats → stacked below image */
    .stats-card-top {
        position: relative;
        top: auto;
        right: auto;
        max-width: 100%;
        margin-top: 14px;
        animation: none;
    }

    .stats-card-bottom {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 10px;
        animation: none;
    }

    .stats-card {
        padding: 16px 20px;
    }

    .stats-number {
        font-size: 1.6rem;
    }

    .stats-label {
        font-size: 0.78rem;
    }

    .stats-row {
        gap: 16px;
    }

    .stats-divider {
        height: 40px;
    }

    /* Story */
    .story-section {
        padding: 60px 0 80px;
    }

    .story-grid {
        gap: 32px;
    }

    .story-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .story-tabs::-webkit-scrollbar {
        display: none;
    }

    .story-tab {
        padding: 10px 16px;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .category-tags {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-tags::-webkit-scrollbar {
        display: none;
    }

    .tag {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 5px 14px;
        font-size: 0.72rem;
    }

    .story-title {
        font-size: 1.4rem;
    }

    .story-text {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .story-img {
        height: 260px;
    }

    .story-quote {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 14px;
        padding: 18px 20px;
    }

    .story-quote p {
        font-size: 0.85rem;
    }

    /* How It Works */
    .how-it-works {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .section-subtext {
        font-size: 0.88rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-card {
        padding: 28px 20px;
        text-align: left;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .step-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 1.2rem;
        margin: 0;
        border-radius: var(--radius-sm);
    }

    .step-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .step-description {
        font-size: 0.82rem;
        line-height: 1.6;
    }

    /* Experts */
    .experts-section {
        padding: 60px 0;
    }

    .experts-header {
        margin-bottom: 32px;
    }

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

    .expert-photo {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }

    .expert-name {
        font-size: 0.88rem;
    }

    .expert-role {
        font-size: 0.75rem;
    }

    /* CTA */
    .cta-section {
        padding: 50px 0;
    }

    .cta-card {
        padding: 36px 22px;
        border-radius: var(--radius-lg);
    }

    .cta-title {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .cta-text {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .cta-card::before,
    .cta-card::after {
        display: none;
    }

    /* Footer */
    .footer {
        padding-top: 48px;
    }

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

    .footer-brand {
        grid-column: span 1;
        flex-direction: column;
    }

    .footer-image-wrap {
        max-width: 100%;
    }

    .footer-image-wrap img {
        height: 160px;
    }

    .footer-col-title {
        font-size: 0.88rem;
        margin-bottom: 14px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-contact li {
        font-size: 0.85rem;
    }

    .footer-newsletter {
        grid-column: span 1;
        flex-direction: column;
    }

    .newsletter-label {
        margin-bottom: 10px;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    .footer-bottom p {
        font-size: 0.78rem;
    }
}

/* ---------- Small Mobile (480px) ---------- */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.84rem;
    }

    .hero-img {
        height: 220px;
    }

    .stats-number {
        font-size: 1.4rem;
    }

    .stats-label {
        font-size: 0.72rem;
    }

    .story-img {
        height: 220px;
    }

    .section-heading {
        font-size: 1.45rem;
    }

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

    .expert-card {
        padding: 32px 20px;
    }

    .expert-photo {
        width: 120px;
        height: 120px;
    }

    .expert-name {
        font-size: 0.82rem;
    }

    .expert-role {
        font-size: 0.72rem;
    }

    .cta-title {
        font-size: 1.2rem;
    }

    .cta-text {
        font-size: 0.82rem;
    }

    .btn-primary,
    .btn-dark {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* ---------- Touch Device Hover Prevention ---------- */
@media (hover: none) {
    .step-card:hover {
        transform: none;
        box-shadow: none;
    }

    .expert-card:hover {
        transform: none;
    }

    .expert-card:hover .expert-photo {
        border-color: var(--white);
        box-shadow: var(--shadow-md);
    }

    .stats-card-top,
    .stats-card-bottom {
        animation: none;
    }
}

/* ==================================================
   FLOATING CONTACT BUTTONS
   ================================================== */
.floating-contact {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    z-index: 2000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.floating-btn i {
    font-size: 1.3rem;
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.floating-btn.call {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    box-shadow: 0 8px 24px rgba(165, 54, 8, 0.3);
}

.floating-btn span {
    display: block;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.1);
    color: var(--white);
}

@media (max-width: 600px) {
    .floating-contact {
        bottom: 24px;
        right: 24px;
        gap: 12px;
    }

    .floating-btn {
        padding: 0;
        border-radius: 50%;
        width: 54px;
        height: 54px;
        justify-content: center;
        align-items: center;
    }

    .floating-btn span {
        display: none;
    }
}
