/*
 * Create With Verma - Main Stylesheet
 * Premium, SaaS-style Agency Design System
 */

/* ==========================================================================
   CSS Variables & Design System Tokens
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-purple: #111112; /* Brand slate black */
    --bright-purple: #FFB800;  /* Brand golden yellow */
    --lavender: #F4F4F6;       /* Clean light grey */
    --yellow: #FFB800;         /* Highlight yellow */
    --soft-yellow: #FFF8E5;    /* Soft yellow background */
    --black: #111112;          /* Slate black */
    --white: #FFFFFF;
    --off-white: #FAF9FB;
    
    /* Glares & Transparencies */
    --bg-glass: rgba(255, 255, 255, 0.7);
    --border-glass: rgba(255, 255, 255, 0.4);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(21, 19, 31, 0.04);
    --shadow-md: 0 10px 30px rgba(21, 19, 31, 0.06);
    --shadow-lg: 0 20px 50px rgba(43, 35, 125, 0.08);
    --shadow-glow: 0 0 25px rgba(99, 82, 232, 0.25);
    
    /* Typography */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease-out;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--black);
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   Layout & Reusable Components
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--lavender);
    color: var(--bright-purple);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(21, 19, 31, 0.7);
    max-width: 600px;
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--bright-purple);
    color: var(--black);
    box-shadow: 0 4px 14px rgba(255, 184, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 17, 18, 0.3);
}

.btn-secondary {
    background-color: var(--black);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--bright-purple);
    color: var(--black);
    transform: translateY(-2px);
}

/* Highlighted Yellow accents */
.btn-accent {
    background-color: var(--yellow);
    color: var(--black);
    box-shadow: 0 4px 14px rgba(255, 223, 63, 0.2);
}

.btn-accent:hover {
    background-color: var(--soft-yellow);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(21, 19, 31, 0.08);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-purple);
    letter-spacing: -0.03em;
}

.logo-text .accent-text {
    color: var(--bright-purple);
    position: relative;
}

.logo-text .accent-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--yellow);
    z-index: -1;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: rgba(21, 19, 31, 0.8);
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--bright-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--bright-purple);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-actions {
    display: none;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}

.hamburger-menu .bar {
    width: 24px;
    height: 2px;
    background-color: var(--black);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding-top: 180px;
    padding-bottom: 120px;
    background: radial-gradient(circle at 80% 20%, var(--lavender) 0%, rgba(255, 255, 255, 1) 60%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--bright-purple);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--yellow);
    z-index: -1;
    opacity: 0.8;
}

.hero-subheadline {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(21, 19, 31, 0.7);
    margin-bottom: 36px;
    max-width: 550px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual Composition */
.hero-visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(99, 82, 232, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.dashboard-mockup {
    width: 100%;
    max-width: 420px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(21, 19, 31, 0.05);
    padding: 24px;
    position: relative;
    z-index: 2;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-dot-group {
    display: flex;
    gap: 6px;
}

.dashboard-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ff5f56;
}
.dashboard-dot:nth-child(2) { background-color: #ffbd2e; }
.dashboard-dot:nth-child(3) { background-color: #27c93f; }

.dashboard-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(21, 19, 31, 0.4);
}

.chart-placeholder {
    width: 100%;
    height: 160px;
    background: linear-gradient(180deg, var(--lavender) 0%, rgba(234, 230, 255, 0.2) 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    stroke: var(--bright-purple);
    stroke-width: 3;
    fill: none;
}

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

.metric-card {
    background-color: var(--off-white);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(21, 19, 31, 0.03);
}

.metric-label {
    font-size: 0.75rem;
    color: rgba(21, 19, 31, 0.5);
    margin-bottom: 4px;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-purple);
}

/* Floating UI labels */
.floating-label {
    position: absolute;
    background-color: var(--white);
    border: 1px solid var(--border-glass);
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    animation: floatAnimation 4s ease-in-out infinite;
}

.floating-label::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.floating-content { top: 15%; left: -10%; animation-delay: 0s; }
.floating-content::before { background-color: var(--bright-purple); }

.floating-ads { bottom: 25%; left: -15%; animation-delay: 1s; }
.floating-ads::before { background-color: var(--yellow); }

.floating-growth { top: 20%; right: -10%; animation-delay: 1.5s; }
.floating-growth::before { background-color: #27c93f; }

.floating-engagement { bottom: 15%; right: -5%; animation-delay: 2.5s; }
.floating-engagement::before { background-color: #ff5f56; }

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */
.trust-strip {
    background-color: var(--off-white);
    padding: 40px 0;
    border-top: 1px solid rgba(21, 19, 31, 0.05);
    border-bottom: 1px solid rgba(21, 19, 31, 0.05);
}

.trust-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-title {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(21, 19, 31, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-logos {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-logo-item {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: rgba(21, 19, 31, 0.3);
    letter-spacing: -0.02em;
}

/* ==========================================================================
   Why Social Media Section (Metrics)
   ========================================================================== */
.metrics-section {
    background-color: var(--white);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.metric-box {
    text-align: center;
    padding: 32px;
    border-radius: 16px;
    background-color: var(--off-white);
    border: 1px solid rgba(21, 19, 31, 0.03);
    transition: var(--transition-smooth);
}

.metric-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.metric-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bright-purple);
    line-height: 1.1;
    margin-bottom: 8px;
}

.metric-label-txt {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.metric-desc {
    font-size: 0.95rem;
    color: rgba(21, 19, 31, 0.6);
}

.metrics-statement {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-purple);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    background-color: var(--off-white);
}

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

.service-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(21, 19, 31, 0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.service-num {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--bright-purple);
    margin-bottom: 24px;
}

.service-card-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card-desc {
    font-size: 0.95rem;
    color: rgba(21, 19, 31, 0.6);
    margin-bottom: 32px;
}

.service-features-list {
    margin-top: auto;
    border-top: 1px solid rgba(21, 19, 31, 0.08);
    padding-top: 24px;
}

.service-feature-item {
    font-size: 0.9rem;
    color: rgba(21, 19, 31, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.service-feature-item svg {
    flex-shrink: 0;
    fill: var(--bright-purple);
}

/* ==========================================================================
   WhatsApp Automation & Visualizer
   ========================================================================== */
.wa-automation-section {
    background-color: var(--white);
}

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

.wa-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.wa-feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-feature-box p {
    font-size: 0.875rem;
    color: rgba(21, 19, 31, 0.6);
}

/* Simulated WhatsApp Interface */
.wa-mockup {
    background-color: #efeae2;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(21, 19, 31, 0.08);
    overflow: hidden;
    height: 480px;
    display: flex;
    flex-direction: column;
}

.wa-mockup-header {
    background-color: #075e54;
    color: var(--white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.wa-header-info h5 {
    color: var(--white);
    font-size: 0.95rem;
}

.wa-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.wa-chat-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wa-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.875rem;
    position: relative;
    line-height: 1.4;
}

.wa-bubble.incoming {
    background-color: var(--white);
    align-self: flex-start;
    border-top-left-radius: 0;
}

.wa-bubble.outgoing {
    background-color: #d9fdd3;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.wa-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.wa-btn {
    background-color: var(--white);
    border: 1px solid var(--bright-purple);
    color: var(--bright-purple);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.wa-btn:hover {
    background-color: var(--bright-purple);
    color: var(--white);
}

/* ==========================================================================
   Our Work (Portfolio)
   ========================================================================== */
.portfolio-section {
    background-color: var(--off-white);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--white);
    border: 1px solid rgba(21, 19, 31, 0.08);
    color: var(--black);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--bright-purple);
    border-color: var(--bright-purple);
    color: var(--white);
}

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

.portfolio-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(21, 19, 31, 0.03);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: var(--lavender);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder-svg {
    width: 60px;
    height: 60px;
    fill: var(--bright-purple);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-placeholder-svg {
    transform: scale(1.1);
    opacity: 1;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 35, 125, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-zoom-icon {
    width: 48px;
    height: 48px;
    background-color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.portfolio-info {
    padding: 20px;
}

.portfolio-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bright-purple);
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.portfolio-client-title {
    font-size: 1.15rem;
    font-weight: 700;
}

/* Portfolio Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 19, 31, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox-content {
    max-width: 800px;
    width: 100%;
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(21, 19, 31, 0.8);
    border: none;
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-img-area {
    aspect-ratio: 16 / 9;
    background-color: var(--lavender);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-area svg {
    width: 100px;
    height: 100px;
    fill: var(--bright-purple);
}

.lightbox-desc-area {
    padding: 32px;
}

.lightbox-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.lightbox-meta {
    font-size: 0.85rem;
    color: rgba(21, 19, 31, 0.5);
}

/* ==========================================================================
   Creative Branding Section
   ========================================================================== */
.branding-section {
    background-color: var(--white);
}

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

.branding-card {
    padding: 32px;
    border-radius: 12px;
    background-color: var(--off-white);
    border-left: 4px solid var(--bright-purple);
    transition: var(--transition-smooth);
}

.branding-card.alt-accent {
    border-left-color: var(--yellow);
}

.branding-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.branding-card p {
    font-size: 0.9rem;
    color: rgba(21, 19, 31, 0.6);
}

/* ==========================================================================
   Packages & Pricing Section
   ========================================================================== */
.pricing-section {
    background-color: var(--off-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 48px 40px;
    border: 1px solid rgba(21, 19, 31, 0.05);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border: 2px solid var(--bright-purple);
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
    content: "MOST POPULAR / COMPLETE";
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bright-purple);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.pricing-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(21, 19, 31, 0.5);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.pricing-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(21, 19, 31, 0.5);
}

.pricing-desc {
    font-size: 0.9rem;
    color: rgba(21, 19, 31, 0.6);
    margin-bottom: 32px;
}

.pricing-btn {
    width: 100%;
    margin-bottom: 32px;
}

.pricing-list {
    margin-top: auto;
    border-top: 1px solid rgba(21, 19, 31, 0.08);
    padding-top: 24px;
}

.pricing-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: rgba(21, 19, 31, 0.8);
}

.pricing-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Package Comparison Table */
.comparison-table-wrapper {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(21, 19, 31, 0.05);
    overflow-x: auto;
    padding: 32px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(21, 19, 31, 0.06);
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    width: 40%;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--black);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check-icon {
    color: #27c93f;
    fill: #27c93f;
}

.cross-icon {
    color: #ff5f56;
    fill: #ff5f56;
    opacity: 0.4;
}

/* ==========================================================================
   Results & Case Studies
   ========================================================================== */
.results-section {
    background-color: var(--white);
}

.results-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.case-cards-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-card {
    padding: 32px;
    background-color: var(--off-white);
    border-radius: 16px;
    border: 1px solid rgba(21, 19, 31, 0.03);
}

.case-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--bright-purple);
}

.case-card p {
    font-size: 0.95rem;
    color: rgba(21, 19, 31, 0.6);
}

.results-stats-box {
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.results-stats-box h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 32px;
}

.stat-row {
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 24px;
}

.stat-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.stat-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ==========================================================================
   How We Work (Process Timeline)
   ========================================================================== */
.process-section {
    background-color: var(--off-white);
}

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

.process-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(21, 19, 31, 0.04);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.process-step {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bright-purple);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 16px;
}

.process-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 0.9rem;
    color: rgba(21, 19, 31, 0.6);
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-section {
    background-color: var(--white);
}

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

.why-card {
    padding: 32px;
    background-color: var(--off-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.why-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.875rem;
    color: rgba(21, 19, 31, 0.6);
}

.why-statement {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bright-purple);
}

/* ==========================================================================
   FAQ Section Accordions
   ========================================================================== */
.faq-section {
    background-color: var(--off-white);
}

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

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(21, 19, 31, 0.04);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    color: var(--black);
}

.faq-trigger:focus {
    outline: none;
}

.faq-trigger .faq-icon {
    font-size: 0 !important;
    line-height: 1;
    transition: var(--transition-smooth);
}

.faq-trigger .faq-icon::before {
    content: '+';
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bright-purple);
    display: inline-block;
    transition: var(--transition-smooth);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content-inner {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    color: rgba(21, 19, 31, 0.7);
}

.faq-item.faq-open .faq-content {
    max-height: 200px; /* safety ceiling */
}

.faq-item.faq-open .faq-icon::before {
    content: '−';
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta-section {
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section h2 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.final-cta-section p {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Animated backgrounds */
.final-cta-section::before, .final-cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.15;
}

.final-cta-section::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--yellow) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    left: -100px;
}

.final-cta-section::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--bright-purple) 0%, rgba(255,255,255,0) 70%);
    bottom: -150px;
    right: -150px;
}

.final-cta-container {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Contact / Lead Form Section
   ========================================================================== */
.contact-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
}

.contact-info-col h3 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.contact-method-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-method-item h5 {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: rgba(21, 19, 31, 0.4);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-method-item a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bright-purple);
}

.contact-socials {
    display: flex;
    gap: 16px;
}

.social-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: var(--transition-smooth);
}

.social-circle-btn:hover {
    background-color: var(--bright-purple);
    color: var(--white);
    transform: scale(1.05);
}

/* Form Styles */
.contact-form-box {
    background-color: var(--off-white);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid rgba(21, 19, 31, 0.04);
}

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

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(21, 19, 31, 0.8);
}

.form-control {
    width: 100%;
    background-color: var(--white);
    border: 1px solid rgba(21, 19, 31, 0.1);
    padding: 14px 18px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--bright-purple);
    box-shadow: 0 0 0 3px rgba(99, 82, 232, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    margin-top: 10px;
}

.form-response-msg {
    margin-top: 16px;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

.form-response-msg.success {
    display: block;
    background-color: #d9fdd3;
    color: #1b5e20;
    border: 1px solid #c8e6c9;
}

.form-response-msg.error {
    display: block;
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
.main-footer {
    background-color: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 60px 24px;
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 0.7fr);
    gap: 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 76px;
    background-color: var(--black);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Animations CSS
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Mock Browser & Interactive Iframe Styling
   ========================================================================== */
.mock-browser-container {
    width: 100%;
    height: 100%;
    background: #0d0c11;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-browser-header {
    height: 30px;
    background: #1a1922;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    user-select: none;
}

.mock-browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.mock-browser-dot.red { background: #ff5f56; }
.mock-browser-dot.yellow { background: #ffbd2e; }
.mock-browser-dot.green { background: #27c93f; }

.mock-browser-address {
    flex-grow: 1;
    margin: 0 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    height: 18px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    letter-spacing: 0.5px;
}

.mock-browser-body-iframe {
    flex-grow: 1;
    height: calc(100% - 30px);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.mock-browser-body-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
    display: block;
}

/* Make sure lightbox content matches aspect ratio and contains iframes beautifully */
.lightbox-img-area .mock-browser-container {
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 0 0;
}
.lightbox-img-area {
    background-color: #0d0c11;
}

/* Lightbox sizing for Website Demos */
.lightbox-content.lightbox-large {
    max-width: 1200px;
    width: 90vw;
    height: 85vh;
    display: flex;
    flex-direction: column;
}

.lightbox-content.lightbox-large .lightbox-img-area {
    flex-grow: 1;
    aspect-ratio: auto;
    height: calc(100% - 100px);
}

.lightbox-content.lightbox-large .lightbox-desc-area {
    padding: 20px 32px;
}
