/* ==========================================================================
   KOTTAKKAL HEALTH MASSAGE SMM - BESPOKE PREMIUM CASE STUDY STYLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

@font-face {
    font-family: 'RusticRoadway';
    src: url('fonts/BrotherSignature.otf');
}

.smm-case-study {
    background-color: var(--secondary-color, #000000);
    color: var(--text-color, #f5f5dc);
    font-family: "Google Sans Flex", sans-serif;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 80px;
}

/* Global Layout Utilities */
.smm-outer-wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 4vw;
}

.smm-accent-text {
    color: var(--primary-color, #B7410E);
}

.smm-glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(183, 65, 14, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* 1. Hero Section */
.smm-hero {
    position: relative;
    padding: 100px 0 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(183, 65, 14, 0.15);
    background-color: var(--secondary-color, #000000);
}

.smm-hero-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.smm-hero-eyebrow {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary-color, #B7410E);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.smm-pulse-indicator {
    width: 7px;
    height: 7px;
    background-color: var(--primary-color, #B7410E);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color, #B7410E);
    animation: smm-pulse 2s infinite;
}

@keyframes smm-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        box-shadow: 0 0 15px var(--primary-color, #B7410E);
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

.smm-hero-title {
    font-size: clamp(38px, 5.5vw, 75px);
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.smm-hero-title span {
    display: block;
    color: #B7410E;
}

.smm-hero-sub {
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(245, 245, 220, 0.7);
    margin-bottom: 40px;
    font-family: "Google Sans Flex", sans-serif;
}

.smm-hero-snap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(245, 245, 220, 0.1);
    padding-top: 30px;
}

.smm-snap-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.smm-snap-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(245, 245, 220, 0.45);
    font-family: "Google Sans Flex", sans-serif;
}

.smm-snap-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color, #f5f5dc);
}

/* Hero Network Panel Widget */
.smm-hero-visual-panel {
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(183, 65, 14, 0.2);
    border-radius: 28px;
    padding: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smm-network-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.smm-node-pulse {
    animation: smm-node-glow 3s ease-in-out infinite alternate;
}

@keyframes smm-node-glow {
    0% {
        filter: drop-shadow(0 0 2px var(--primary-color, #B7410E));
        opacity: 0.7;
    }

    100% {
        filter: drop-shadow(0 0 10px var(--primary-color, #B7410E));
        opacity: 1;
    }
}

.smm-connection-line {
    stroke-dasharray: 8, 8;
    animation: smm-dash 30s linear infinite;
}

@keyframes smm-dash {
    to {
        stroke-dashoffset: -1000;
    }
}

/* 2. Large Statement Section */
.smm-statement-section {
    padding: 120px 0;
    background: radial-gradient(circle at center, #120905 0%, #000000 80%);
    border-bottom: 1px solid rgba(183, 65, 14, 0.1);
    position: relative;
    text-align: center;
}

.smm-statement-container {
    max-width: 950px;
    margin: 0 auto;
}

.smm-statement-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color, #B7410E);
    margin-bottom: 30px;
    font-family: "Google Sans Flex", sans-serif;
    display: block;
}

.smm-statement-text {
    font-size: clamp(28px, 4.5vw, 54px);
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-color, #f5f5dc);
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.smm-statement-text span {
    color: var(--primary-color, #B7410E);
}

.smm-capsules-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.smm-intent-capsule {
    background: rgba(245, 245, 220, 0.03);
    border: 1px solid rgba(245, 245, 220, 0.08);
    color: rgba(245, 245, 220, 0.85);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    font-family: "Google Sans Flex", sans-serif;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    display: flex;
    align-items: center;
    gap: 10px;
}



.smm-intent-capsule:hover {
    background: rgba(183, 65, 14, 0.1);
    border-color: rgba(183, 65, 14, 0.4);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(183, 65, 14, 0.15);
}

.smm-intent-capsule:hover::before {
    opacity: 1;
    transform: scale(1.4);
    box-shadow: 0 0 8px var(--primary-color, #B7410E);
}

/* 3. Combined Metrics Row */
.smm-metrics-row-section {
    padding: 60px 0;
    background-color: #050505;
    border-bottom: 1px solid rgba(183, 65, 14, 0.1);
}

.smm-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.smm-metric-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(245, 245, 220, 0.05);
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    justify-content: center;
    align-items: center;
}

.smm-metric-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color, #B7410E), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.smm-metric-card:hover {
    background: rgba(25, 25, 25, 0.6);
    border-color: rgba(183, 65, 14, 0.2);
    transform: translateY(-5px);
}

.smm-metric-card:hover::after {
    transform: scaleX(1);
}

.smm-metric-num {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-color, #f5f5dc);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.smm-metric-lbl {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(245, 245, 220, 0.5);
    font-family: "Google Sans Flex", sans-serif;
    font-weight: 500;
}

.smm-metric-context {
    font-size: 11px;
    color: var(--primary-color, #B7410E);
    margin-top: 15px;
    font-family: "Google Sans Flex", sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 4. Story Section */
.smm-story-section {
    padding: 40px 0;
    position: relative;
}

.smm-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: flex-start;
}

.smm-story-sticky {
    position: sticky;
    top: 120px;
}

.smm-story-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color, #B7410E);
    margin-bottom: 20px;
    display: block;
    font-family: "Google Sans Flex", sans-serif;
}

.smm-story-heading {
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.smm-story-heading span {
    display: block;
    color: #B7410E;
}

.smm-story-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.smm-story-lead {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.5;
    color: rgba(245, 245, 220, 0.9);
    font-weight: 400;
    font-family: "Google Sans Flex", sans-serif;
}

.smm-story-p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(245, 245, 220, 0.65);
    font-family: "Google Sans Flex", sans-serif;
}

/* 5. Content Framework Ecosystem */
.smm-framework-section {
    padding: 120px 0;
    background-color: #070707;
    border-top: 1px solid rgba(183, 65, 14, 0.1);
    border-bottom: 1px solid rgba(183, 65, 14, 0.1);
    position: relative;
}

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

.smm-section-sub {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary-color, #B7410E);
    margin-bottom: 15px;
    display: block;
    font-family: "Google Sans Flex", sans-serif;
}

.smm-section-title {
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.smm-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.smm-framework-card {
    background: rgba(245, 245, 220, 0.02);
    border: 1px solid rgba(245, 245, 220, 0.05);
    border-radius: 24px;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.smm-framework-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color, #B7410E);
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 0.4s ease;
}

.smm-framework-card:hover {
    background: rgba(183, 65, 14, 0.03);
    border-color: rgba(183, 65, 14, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.smm-framework-card:hover::before {
    transform: scaleY(1);
}

.smm-card-num {
    font-size: 14px;
    font-family: "Google Sans Flex", sans-serif;
    color: var(--primary-color, #B7410E);
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.smm-card-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-color, #f5f5dc);
}

.smm-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(245, 245, 220, 0.6);
    font-family: "Google Sans Flex", sans-serif;
}

/* 6. Interactive Results Dashboard */
.smm-results-section {
    padding: 40px 0px 100px 0px;
    position: relative;
}

.smm-dashboard-container {
    background: rgba(12, 12, 12, 0.85);
    border: 1px solid rgba(245, 245, 220, 0.08);
    border-radius: 32px;
    padding: 45px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px);
}

.smm-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(245, 245, 220, 0.08);
    padding-bottom: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.smm-db-meta h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.smm-db-meta p {
    font-size: 13px;
    color: rgba(245, 245, 220, 0.5);
    font-family: "Google Sans Flex", sans-serif;
    margin-top: 5px;
}

/* Dashboard Tabs */
.smm-db-tabs {
    display: flex;
    gap: 15px;
    background: rgba(245, 245, 220, 0.03);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(245, 245, 220, 0.05);
}

.smm-db-tab-btn {
    background: transparent;
    border: none;
    color: rgba(245, 245, 220, 0.6);
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Google Sans Flex", sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.smm-db-tab-btn:hover {
    color: var(--text-color, #f5f5dc);
}

.smm-db-tab-btn.active[data-platform="instagram"] {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(221, 42, 123, 0.3);
}

.smm-db-tab-btn.active[data-platform="facebook"] {
    background: #1877F2;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

/* Dashboard Content Panels */
.smm-db-panel {
    display: none;
    animation: smm-fade-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.smm-db-panel.active {
    display: block;
}

@keyframes smm-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.smm-db-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Custom Facebook variation with 4 stats */
.smm-db-stats-row.fb-layout {
    grid-template-columns: repeat(4, 1fr);
}

.smm-db-stat-box {
    background: rgba(245, 245, 220, 0.02);
    border: 1px solid rgba(245, 245, 220, 0.05);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.smm-db-stat-box .trend {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
    font-family: "Google Sans Flex", sans-serif;
}

.trend.up {
    background: rgba(39, 201, 63, 0.1);
    color: #27c93f;
}

.smm-db-stat-box .value {
    font-size: 38px;
    font-weight: 700;
    margin-top: 15px;
    letter-spacing: -0.5px;
}

.smm-db-stat-box .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(245, 245, 220, 0.4);
    font-family: "Google Sans Flex", sans-serif;
    margin-top: 5px;
}

/* Graphical Panel Representation */
.smm-db-chart-area {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(245, 245, 220, 0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.smm-chart-svg {
    width: 100%;
    height: 220px;
    overflow: visible;
}

.smm-chart-grid line {
    stroke: rgba(245, 245, 220, 0.03);
    stroke-width: 1;
}

.smm-chart-line {
    fill: none;
    stroke-width: 3.5;
    stroke-linecap: round;
}

.smm-chart-line.ig-line {
    stroke: #dd2a7b;
    filter: drop-shadow(0 0 6px rgba(221, 42, 123, 0.4));
}

.smm-chart-line.fb-line {
    stroke: #1877F2;
    filter: drop-shadow(0 0 6px rgba(24, 119, 242, 0.4));
}

.smm-chart-fill-ig {
    fill: url(#ig-grad-fill);
}

.smm-chart-fill-fb {
    fill: url(#fb-grad-fill);
}

.smm-chart-point {
    transition: r 0.2s ease;
    cursor: pointer;
}

.smm-chart-point:hover {
    r: 8;
}

.smm-chart-axis text {
    font-size: 10px;
    fill: rgba(245, 245, 220, 0.3);
    font-family: "Google Sans Flex", sans-serif;
}

/* 7. Screenshot Gallery - Interactive Social CSS Mockups */
.smm-gallery-section {
    padding: 20px 0;
    position: relative;
}

.smm-gallery-intro {
    max-width: 600px;
    margin: -50px auto 70px;
    text-align: center;
    font-family: "Google Sans Flex", sans-serif;
    color: rgba(245, 245, 220, 0.6);
    font-size: 16px;
}

.smm-mockups-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Mockup Base Structure */
.smm-mockup-wrapper {
    background: #0d0d0d;
    border: 1px solid rgba(245, 245, 220, 0.08);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.smm-mockup-wrapper:hover {
    transform: translateY(-8px);
    border-color: rgba(183, 65, 14, 0.3);
}

.smm-mockup-header {
    background: #121212;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(245, 245, 220, 0.05);
}

.smm-mockup-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.smm-mockup-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B7410E 0%, #331319 100%);
    border: 1.5px solid rgba(245, 245, 220, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
}

.smm-mockup-meta {
    display: flex;
    flex-direction: column;
}

.smm-mockup-username {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-color, #f5f5dc);
    font-family: "Google Sans Flex", sans-serif;
}

.smm-mockup-location {
    font-size: 10px;
    color: rgba(245, 245, 220, 0.55);
    font-family: "Google Sans Flex", sans-serif;
}

/* Instagram Carousel Mockup Details */
.smm-mockup-body.ig-body {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000000;
}

.smm-ig-carousel-container {
    width: 300%;
    /* 3 slides */
    height: 100%;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.smm-ig-slide {
    width: 33.3333%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    box-sizing: border-box;
}

.smm-ig-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smm-ig-slide.slide-1 {
    background: linear-gradient(135deg, #180a04 0%, #3a1506 100%);
}

.smm-ig-slide.slide-2 {
    background: linear-gradient(135deg, #0d0f1a 0%, #1a163a 100%);
}

.smm-ig-slide.slide-3 {
    background: linear-gradient(135deg, #05140d 0%, #143324 100%);
}

.smm-ig-slide-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color, #B7410E);
    margin-bottom: 20px;
    font-family: "Google Sans Flex", sans-serif;
}

.smm-ig-slide-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 15px;
}

.smm-ig-slide-desc {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Google Sans Flex", sans-serif;
    max-width: 250px;
}

.smm-ig-carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.smm-ig-nav-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(5px);
    transition: background 0.3s ease;
}

.smm-ig-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.smm-ig-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.smm-ig-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.smm-ig-dot.active {
    background: #ffffff;
    width: 16px;
    border-radius: 3px;
}

/* Social Actions Row */
.smm-mockup-actions {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0d0d0d;
}

.smm-mockup-left-actions {
    display: flex;
    gap: 15px;
}

.smm-action-btn {
    background: transparent;
    border: none;
    color: rgba(245, 245, 220, 0.7);
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.smm-action-btn:hover {
    color: #ffffff;
}

.smm-action-btn.active-like {
    color: #ff304f;
    transform: scale(1.15);
}

.smm-mockup-caption {
    padding: 0 20px 20px;
    background: #0d0d0d;
    font-family: "Google Sans Flex", sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

.smm-mockup-likes {
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    color: var(--text-color, #f5f5dc);
}

.smm-mockup-text span:first-child {
    font-weight: 700;
    margin-right: 5px;
}

.smm-mockup-text {
    color: rgba(245, 245, 220, 0.85);
}

/* Facebook Video Story Mockup Details */
.smm-mockup-body.fb-body {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.smm-fb-video-screen {
    width: 90%;
    height: 90%;
    border-radius: 16px;
    background: linear-gradient(to bottom, #141e30, #243b55);
    border: 1px solid rgba(245, 245, 220, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
}

.smm-fb-video-screen a {
    position: relative;
    top: 25%;

}

.smm-fb-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: "Google Sans Flex", sans-serif;
}

.smm-fb-video-play-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary-color, #B7410E);
    border: none;
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: auto;
    box-shadow: 0 0 20px rgba(183, 65, 14, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
}

.smm-fb-video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(183, 65, 14, 0.6);
}

.smm-fb-video-meta {
    z-index: 5;
}

.smm-fb-video-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.smm-fb-video-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-family: "Google Sans Flex", sans-serif;
}

.smm-fb-timeline {
    height: 3px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.smm-fb-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 35%;
    background-color: var(--primary-color, #B7410E);
    transition: width 0.3s ease;
}

/* YouTube Mockup Details */
.smm-mockup-body.yt-body {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.smm-yt-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #110000 0%, #440000 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    box-sizing: border-box;
}

.smm-yt-play-icon {
    width: 50px;
    height: 35px;
    background: #FF0000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.smm-mockup-wrapper:hover .smm-yt-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: #cc0000;
}

.smm-yt-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: 10px;
    font-family: monospace;
    padding: 2px 5px;
    border-radius: 2px;
}

.smm-yt-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    max-width: 90%;
}

/* 8. Closing / CTA Section */
.smm-closing-section {
    padding: 120px 0 60px;
    position: relative;
}

.smm-closing-card {

    border-radius: 40px;
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 245, 220, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.smm-closing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.smm-closing-h2 {
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
}

.smm-closing-h2 span {
    color: var(--primary-color, #B7410E);
}

.smm-closing-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.smm-closing-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Google Sans Flex", sans-serif;
}

.smm-closing-bullet {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(183, 65, 14, 0.15);
    color: var(--primary-color, #B7410E);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.smm-closing-quote-block {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.smm-closing-quote {
    font-size: clamp(18px, 2.2vw, 26px);
    line-height: 1.55;
    font-weight: 300;
    font-family: 'RusticRoadway';
    color: #ffffff;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    padding-left: 25px;
}

.smm-cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.smm-btn-primary {
    background: #ffffff;
    color: #000000;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.smm-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 255, 255, 0.2);
}

.smm-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.smm-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
    .smm-hero-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .smm-hero-eyebrow {
        justify-content: center;
    }

    .smm-hero-snap-grid {
        justify-content: center;
    }

    .smm-hero-visual-panel {
        max-width: 480px;
        margin: 0 auto;
    }

    .smm-story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .smm-story-sticky {
        position: static;
    }

    .smm-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .smm-db-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .smm-db-stats-row.fb-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .smm-mockups-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 30px;
    }

    .smm-closing-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .smm-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .smm-dashboard-container {
        padding: 25px;
    }

    .smm-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .smm-db-tabs {
        width: 100%;
        box-sizing: border-box;
    }

    .smm-db-tab-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 15px;
        font-size: 13px;
    }

    .smm-closing-card {
        padding: 40px 30px;
    }

    .smm-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .smm-btn-primary,
    .smm-btn-secondary {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .smm-metrics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .smm-db-stats-row {
        grid-template-columns: 1fr;
    }

    .smm-db-stats-row.fb-layout {
        grid-template-columns: 1fr;
    }
}