@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Quicksand:wght@500;600;700&display=swap');

:root {
    --primary: #FD771B;
    --primary-rgb: 253, 119, 27;
    --logo-grey: #808080;
    --bg-light-grey: #DCD9D6;
    --bg-dark: #0A0C10;
    --bg-card: #121620;
    --bg-card-border: rgba(253, 119, 27, 0.1);
    
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --text-dark: #1F2937;
    
    --whatsapp-green: #25D366;
    --whatsapp-dark: #075E54;
    --whatsapp-light: #DCF8C6;
    --whatsapp-bg: #efeae2;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #222530;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo svg {
    height: 36px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--logo-grey);
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(253, 119, 27, 0.3);
}

.btn-primary:hover {
    background: #e6620f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 119, 27, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 6rem 0;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(253, 119, 27, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(37, 211, 102, 0.03) 0%, transparent 40%);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--primary);
    background: linear-gradient(135deg, #FD771B 0%, #FF9E59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Interactive Workspace Section */
.workspace-sec {
    padding: 6rem 0;
    background: #0D0F14;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-title-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-title-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title-center h2 span {
    color: var(--primary);
}

.section-title-center p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Niche Switcher Tabs */
.switcher-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted);
    padding: 0.8rem 1.6rem;
    border-radius: 40px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-btn:hover {
    background: rgba(253, 119, 27, 0.05);
    border-color: rgba(253, 119, 27, 0.3);
    color: var(--text-main);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(253, 119, 27, 0.3);
}

/* Demo Workspace Layout */
.workspace-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* WhatsApp Simulator (Left) */
.phone-mockup {
    background: #000000;
    border-radius: 44px;
    padding: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8),
                0 0 0 4px #1c1d22,
                0 0 20px rgba(253, 119, 27, 0.1);
    position: relative;
    height: 700px;
    width: 340px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* iPhone Dynamic Island */
.dynamic-island {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 22px;
    background: #000000;
    border-radius: 20px;
    z-index: 100;
}

.phone-header {
    height: 32px;
    display: flex;
    justify-content: space-between;
    padding: 8px 1.5rem 0 1.5rem;
    align-items: center;
    color: #888;
    font-size: 0.75rem;
    position: relative;
    z-index: 10;
}

.phone-screen {
    flex: 1;
    background: var(--whatsapp-bg);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* WhatsApp App Header */
.wa-header {
    background: #075E54;
    color: white;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #075E54;
    font-family: var(--font-heading);
}

.wa-status-info h4 {
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.wa-status-info span {
    font-size: 0.7rem;
    opacity: 0.8;
    display: block;
}

/* WhatsApp Chat Area */
.wa-chat-area {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: contain;
}

/* Message Bubbles */
.wa-msg {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    color: #1f2937;
    animation: fadeInMsg 0.3s ease forwards;
}

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

.wa-msg.incoming {
    background: white;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.wa-msg.outgoing {
    background: var(--whatsapp-light);
    align-self: flex-end;
    border-top-right-radius: 0;
}

.wa-time {
    font-size: 0.65rem;
    color: #888;
    text-align: right;
    margin-top: 4px;
    display: block;
}

/* WhatsApp Interactive Layout elements */
.wa-interactive {
    margin-top: 8px;
    border-top: 1px solid #f3f4f6;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wa-btn {
    background: white;
    color: #00a5f4;
    border: 1px solid #e5e7eb;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.wa-btn:hover {
    background: #f9fafb;
}

.wa-list-header {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 2px;
}

.wa-list-item {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.wa-list-item:hover {
    background: #f9fafb;
}

.wa-list-item i {
    color: var(--whatsapp-green);
}

/* WhatsApp Input Area */
.wa-input-area {
    background: #f0f0f0;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-input-box {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.85rem;
    color: #555;
    border: none;
}

.wa-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #075E54;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

/* Dashboard Mockup (Right) */
.dashboard-mockup {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 600px;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1.2rem;
}

.dash-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-title i {
    color: var(--primary);
    font-size: 1.4rem;
}

.dash-title h3 {
    font-size: 1.3rem;
}

.dash-badge {
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp-green);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dash-badge span {
    width: 6px;
    height: 6px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.4; }
    100% { transform: scale(1); opacity: 1; }
}

/* Dashboard Metrics Row */
.dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.metric-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.2rem;
    transition: var(--transition);
}

.metric-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(253, 119, 27, 0.15);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    display: block;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.metric-trend {
    font-size: 0.75rem;
    color: var(--whatsapp-green);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 5px;
}

/* Dashboard Body Grid */
.dash-body-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.5rem;
    flex: 1;
}

/* Analytics Graph Card */
.analytics-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.chart-legend {
    display: flex;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.legend-color {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-color.orange { background: var(--primary); }
.legend-color.green { background: var(--whatsapp-green); }

.chart-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 180px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
}

.chart-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    gap: 5px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    width: 100%;
    height: 100%;
}

.chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    transition: height 1s ease-out;
    min-height: 5px;
}

.chart-bar.orange {
    background: linear-gradient(0deg, var(--primary) 0%, #ff9e59 100%);
}

.chart-bar.green {
    background: linear-gradient(0deg, #128C7E 0%, var(--whatsapp-green) 100%);
}

.chart-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Activity Feed Card */
.activity-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
}

.activity-header {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    overflow-y: auto;
    max-height: 220px;
}

.activity-item {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    animation: slideInActivity 0.3s ease forwards;
}

@keyframes slideInActivity {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.activity-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(253, 119, 27, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.activity-icon.success {
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp-green);
}

.activity-details {
    flex: 1;
}

.activity-title {
    font-weight: 600;
    color: var(--text-main);
}

.activity-desc {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.activity-time {
    font-size: 0.7rem;
    color: #6b7280;
}

/* Niche Showcase Section */
.niche-sec {
    padding: 6rem 0;
}

.niche-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.niche-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.niche-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.niche-card:hover {
    transform: translateY(-5px);
    border-color: rgba(253, 119, 27, 0.25);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.niche-card:hover::before {
    transform: scaleX(1);
}

.niche-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.niche-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.niche-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.niche-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.niche-features li {
    font-size: 0.85rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.niche-features li i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Features Grid Section */
.features-sec {
    padding: 6rem 0;
    background: #0D0F14;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(253, 119, 27, 0.1);
    border: 1px solid rgba(253, 119, 27, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About / Heritage Section */
.about-sec {
    padding: 8rem 0;
    background: radial-gradient(circle at 80% 20%, rgba(253, 119, 27, 0.04) 0%, transparent 40%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item h4 {
    font-size: 2.2rem;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.about-graphics {
    position: relative;
    display: flex;
    justify-content: center;
}

.graphics-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    max-width: 420px;
    position: relative;
    z-index: 2;
}

.graphics-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    border: 2px solid var(--primary);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
}

.heritage-badge {
    background: rgba(253, 119, 27, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Contact / Form Section */
.contact-sec {
    padding: 6rem 0;
    background: #0D0F14;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 24px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(253, 119, 27, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.channel-details h4 {
    font-size: 0.95rem;
    color: var(--text-main);
}

.channel-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Contact Form styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-input {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 0 10px rgba(253, 119, 27, 0.1);
}

select.form-input {
    cursor: pointer;
}

select.form-input option {
    background-color: var(--bg-card);
    color: var(--text-main);
}

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

/* Footer Section */
footer {
    background: #07090D;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-links h4 {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links ul a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Reveal Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsiveness Settings */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .workspace-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .phone-mockup {
        height: 700px;
        margin: 0 auto;
    }
    
    .niche-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .stats-grid {
        justify-content: center;
    }
    
    .contact-card {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-dark);
        flex-direction: column;
        padding: 3rem 0;
        transition: var(--transition);
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .niche-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* WhatsApp Bottom Sheet */
.wa-bottom-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.15);
    z-index: 50;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    max-height: 70%;
    color: #1f2937;
}

.wa-bottom-sheet.active {
    transform: translateY(0);
}

.wa-sheet-header {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-sheet-header span {
    font-weight: 700;
    font-size: 0.95rem;
    color: #374151;
    font-family: var(--font-body);
}

.wa-sheet-close {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
}

.wa-sheet-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px 16px;
    text-align: left;
}

.wa-sheet-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #075E54;
    text-transform: uppercase;
    margin: 12px 0 6px 0;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

.wa-sheet-row {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-bottom: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-sheet-row:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.wa-sheet-row.selected {
    background: #eefdf4;
    border-color: #25D366;
}

.wa-sheet-row-text {
    display: flex;
    flex-direction: column;
}

.wa-sheet-row-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1f2937;
}

.wa-sheet-row-desc {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 2px;
}

.wa-sheet-row-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.wa-sheet-row.selected .wa-sheet-row-radio {
    border-color: #25D366;
    background: #25D366;
}

.wa-sheet-row.selected .wa-sheet-row-radio::after {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.wa-sheet-footer {
    padding: 12px 16px;
    border-top: 1px solid #f3f4f6;
    background: #f9fafb;
}

.btn-wa-send {
    width: 100%;
    background: #d1d5db;
    color: #9ca3af;
    border: none;
    padding: 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: not-allowed;
    transition: var(--transition);
}

.btn-wa-send.active {
    background: #075E54;
    color: white;
    cursor: pointer;
}

.btn-wa-send.active:hover {
    background: #128C7E;
}

/* WhatsApp List CTA Button styling */
.wa-list-cta-btn {
    background: white;
    color: #00a5f4;
    border: 1px solid #e5e7eb;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.wa-list-cta-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.wa-list-cta-btn i {
    font-size: 0.95rem;
}

/* Partners Carousel */
.partners-sec {
    padding: 3.5rem 0;
    background: #0D0F14;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.partners-title {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.partners-carousel {
    display: flex;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
}

.partners-track {
    display: flex;
    gap: 2.5rem;
    animation: scrollLogos 45s linear infinite;
    width: max-content;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 90px;
    opacity: 0.55;
    transition: var(--transition);
    filter: grayscale(1) brightness(1.4);
}

.partner-logo:hover {
    opacity: 0.98;
    filter: none;
}

.partner-logo img {
    max-width: 180px;
    max-height: 65px;
    object-fit: contain;
    width: auto;
    height: auto;
}

/* Visually scale down the solid PNG Signit logo to balance it with thin SVG vector logos */
.partner-logo.signit-logo img {
    max-width: 110px;
    max-height: 40px;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Testimonials Section */
.testimonials-sec {
    padding: 6rem 0;
    background: #0D0F14;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(253, 119, 27, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.06;
    pointer-events: none;
}

.rating-stars {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    flex: 1;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.testimonial-client img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    background: #1f2937;
}

.client-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.client-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* Responsiveness for Testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Additional Mobile Responsiveness Fixes */

/* 1. Stack Dashboard body layout on tablets & mobile */
@media (max-width: 768px) {
    .dash-body-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .dashboard-mockup {
        padding: 1.2rem;
        min-height: auto;
    }
    
    .dash-metrics {
        gap: 1rem;
    }
}

/* 2. Squeeze prevention for dashboard metrics, hero texts & inputs on small phones */
@media (max-width: 480px) {
    .dash-metrics {
        grid-template-columns: 1fr !important;
        gap: 0.8rem;
    }
    
    .metric-card {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .chart-container {
        height: 140px;
        gap: 8px;
    }
    
    .hero-content h1 {
        font-size: 2.1rem !important;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .graphics-card {
        padding: 1.5rem;
    }
}

/* 3. Scale down phone mockup & graphics cards on extremely small viewports to prevent overflow */
@media (max-width: 360px) {
    .phone-mockup {
        max-width: 290px !important;
        height: 600px !important;
        padding: 8px !important;
    }
    
    .dynamic-island {
        width: 70px;
        height: 18px;
        top: 10px;
    }
    
    .wa-avatar {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .wa-status-info h4 {
        font-size: 0.8rem;
    }
}

/* Ensure graphics cards are fluid and scale down on screen widths < 420px */
.graphics-card {
    width: 100%;
}

/* 4. About section statistics grid stacking on mobile */
@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 1.5rem;
    }
    
    .stat-item h4 {
        font-size: 2rem;
    }
}

