/* =========================================
   ClickCease-Inspired SATMEDIA Theme
   White, Black, and Yellow Palette
   ========================================= */

:root {
    /* Core Layout Colors */
    --bg-main: #f8fafc; /* Very light slate-blue for modern SaaS feel */
    --bg-card: #ffffff;
    --bg-dark: #0f172a; /* Deep modern slate (not pure black) */

    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #f8fafc;
    --text-muted-dark: #94a3b8;

    /* Accent Colors */
    --clr-yellow: #facc15;
    --clr-yellow-dark: #eab308;
    --clr-yellow-light: #fef08a;

    /* Layout & Shadows */
    --radius-sm: 8px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.08);
    --shadow-yellow: 0 8px 25px rgba(250, 204, 21, 0.3);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-norm: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 800; /* ClickCease style extra bolding */
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-yellow { color: var(--clr-yellow-dark); }

/* =========================================
   Buttons & Utils
   ========================================= */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-weight: 700;
    border-radius: var(--radius-pill); /* Pill shaped! */
    transition: all var(--transition-norm);
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--clr-yellow);
    color: var(--text-primary);
    box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
    background-color: var(--clr-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(234, 179, 8, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--bg-card);
    transform: translateY(-2px);
}

.btn-large { padding: 1.2rem 3rem; font-size: 1.1rem; }
.btn-full { width: 100%; padding: 1.2rem; font-size: 1.1rem; }

.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-size: 3rem; margin-bottom: 1rem; letter-spacing: -1px; }
.section-title p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.15rem; }

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-norm);
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900; letter-spacing: -0.5px; color: var(--text-primary); }
.logo-accent { color: var(--clr-yellow-dark); }

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { font-weight: 600; font-size: 1rem; color: var(--text-primary); }
.nav-links a:not(.btn):hover { color: var(--clr-yellow-dark); }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-primary); }

/* =========================================
   Hero Section
   ========================================= */
.hero {
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-main) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }

.hero-title { font-size: 5rem; font-weight: 900; letter-spacing: -2px; margin-bottom: 1.5rem; line-height: 1.05; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 2.5rem; max-width: 90%; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1.5rem; margin-bottom: 3rem; }

.hero-stats {
    display: flex; gap: 3rem; padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item h3 { font-size: 2.5rem; color: var(--text-primary); margin-bottom: 0.25rem; }
.stat-item p { color: var(--text-secondary); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.5px; }

/* Hero Graphic */
.hero-image-wrapper { position: relative; height: 500px; display: flex; justify-content: center; align-items: center; }
.glow-effect {
    position: absolute; width: 400px; height: 400px;
    background: var(--clr-yellow); border-radius: 50%;
    filter: blur(100px); opacity: 0.25; z-index: 1;
    animation: pulse 4s infinite alternate;
}

.hero-graphic { position: relative; width: 350px; height: 350px; z-index: 2; }
.circle { position: absolute; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.c1 { width: 100%; height: 100%; border: 2px dashed rgba(234, 179, 8, 0.5); animation: rotate 20s linear infinite; }
.c2 { width: 70%; height: 70%; border: 3px solid rgba(234, 179, 8, 0.3); animation: rotate 15s linear infinite reverse; }
.c3 { 
    width: 130px; height: 130px; 
    background-color: var(--bg-card); 
    border: 3px solid var(--clr-yellow-dark);
    display: flex; justify-content: center; align-items: center;
    font-size: 3.5rem; color: var(--clr-yellow-dark);
    box-shadow: var(--shadow-yellow);
    border-radius: var(--radius-lg); /* Not a circle anymore! Soft square for SaaS look */
}

@keyframes rotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes pulse { 0% { transform: scale(0.9); opacity: 0.15; } 100% { transform: scale(1.1); opacity: 0.35; } }

/* =========================================
   Services Section (3x3 Grid)
   ========================================= */
.services { padding: 8rem 0; background-color: var(--bg-main); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }

.service-card {
    background-color: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg); /* Large ClickCease radius */
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-top: 4px solid var(--clr-yellow-dark);
    transition: transform var(--transition-norm), box-shadow var(--transition-norm);
}

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

.highlight-card {
    border-top: 4px solid var(--clr-yellow-dark);
}

.icon-wrapper {
    width: 70px; height: 70px;
    background-color: var(--clr-yellow-light);
    border-radius: 16px;
    display: flex; justify-content: center; align-items: center;
    font-size: 2rem; color: var(--clr-yellow-dark);
    margin-bottom: 2rem;
}

.service-card h3 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--text-primary); }
.service-card p { color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.7; }

.service-features li {
    margin-bottom: 0.85rem; display: flex; align-items: flex-start; gap: 0.75rem;
    color: var(--text-primary); font-size: 0.95rem; font-weight: 500;
}
.service-features li i { padding-top: 4px; font-size: 1rem; color: var(--clr-yellow-dark); }

/* =========================================
   Profitability Focus Section
   ========================================= */
.profit-section { padding: 10rem 0; background-color: var(--bg-card); position: relative; }
.profit-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: center; }

.image-box {
    width: 100%; aspect-ratio: 1;
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    display: flex; justify-content: center; align-items: center;
    position: relative;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.02);
}

.image-box::after {
    content: ''; position: absolute;
    top: -20px; left: -20px; right: 20px; bottom: 20px;
    border: 2px dashed var(--clr-yellow-dark);
    border-radius: var(--radius-lg); z-index: -1;
    animation: pulse-border 4s ease-in-out infinite alternate;
}

@keyframes pulse-border {
    0% { transform: scale(1); opacity: 0.2; box-shadow: 0 0 0 rgba(234, 179, 8, 0); }
    100% { transform: scale(1.02); opacity: 0.6; box-shadow: 0 0 30px rgba(234, 179, 8, 0.2); }
}

.huge-icon {
    font-size: 8rem; color: var(--clr-yellow-dark);
    animation: float-growth 4s ease-in-out infinite;
}

@keyframes float-growth {
    0% { transform: translateY(0) scale(1); filter: drop-shadow(0 5px 10px rgba(234, 179, 8, 0.2)); }
    50% { transform: translateY(-15px) scale(1.05); filter: drop-shadow(0 15px 25px rgba(234, 179, 8, 0.4)); }
    100% { transform: translateY(0) scale(1); filter: drop-shadow(0 5px 10px rgba(234, 179, 8, 0.2)); }
}

.profit-content h2 { font-size: 3.5rem; margin-bottom: 1.5rem; letter-spacing: -1px; }
.profit-content > p { color: var(--text-secondary); font-size: 1.2rem; margin-bottom: 3.5rem; line-height: 1.8; }

.profit-steps .step { display: flex; gap: 2rem; margin-bottom: 2.5rem; }

.step-num {
    font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900;
    color: var(--bg-card); /* White inside text */
    -webkit-text-stroke: 2px var(--clr-yellow-dark); /* Thick Yellow outline */
    line-height: 1;
}

.step-text h4 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.step-text p { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; }

/* =========================================
   Marketing Packages Comparison
   ========================================= */
.pricing-section { padding: 8rem 0; background-color: var(--bg-main); }

.comparison-wrapper {
    max-width: 1100px; 
    margin: 0 auto;
    position: relative;
    padding: 3rem;
    background-color: var(--bg-card);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

/* The magic floating white background for the middle column */
/* Removed full background by user request */

.comparison-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    position: relative;
    z-index: 2;
    text-align: center;
}

.comparison-table th, .comparison-table td {
    padding: 1.5rem 0.5rem;
    vertical-align: middle;
    font-size: 1.1rem;
}

/* Feature Name Column */
.comparison-table .col-feature, .comparison-table td.text-left {
    text-align: left;
    width: 32%;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-table td:not(.text-left) {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--text-secondary);
}

/* Remove bottom borders for last row */
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Table Headers */
.col-plan { width: 22.6%; }
.plan-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--text-primary); }
.plan-desc { font-size: 0.95rem; color: var(--text-secondary); margin-top: 0.5rem; }

/* Attractive Dark Header Row Style */
.comparison-table thead th {
    background-color: var(--bg-dark);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: none !important;
}
.comparison-table thead th.col-feature {
    color: var(--text-light) !important;
}
/* Dark pill shape for the header */
.comparison-table thead th:first-child { border-radius: 16px 0 0 16px; padding-left: 2rem; }
.comparison-table thead th:last-child { border-radius: 0 16px 16px 0; padding-right: 2rem; }
.comparison-table thead th .plan-title { color: var(--text-light) !important; }
.comparison-table thead th .plan-desc { color: var(--text-muted-dark) !important; }

/* Removed premium header styles by user request */
.plan-brand { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 900; line-height: 1.3; }
.premium-cell { color: var(--text-primary) !important; font-weight: 600; border-bottom: 1px solid rgba(0,0,0,0.03) !important; }

.price-box {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 200px;
}
.price-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: var(--clr-yellow);
}
.price-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-primary);
    font-family: var(--font-heading);
    line-height: 1.1;
}
.price-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 0.25rem;
}

.text-muted { color: #cbd5e1; }
.font-bold { font-weight: 800; }

@media (max-width: 768px) {
    .highlight-bg { display: none; }
    .comparison-table { display: block; overflow-x: auto; white-space: nowrap; }
    .comparison-table th, .comparison-table td { padding: 1rem; }
}

/* =========================================
   Contact Section
   ========================================= */
.contact-section { padding: 8rem 0; background-color: var(--bg-main); }

.contact-wrapper {
    display: grid; grid-template-columns: 1fr 1fr;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.contact-info { padding: 5rem; background: var(--bg-dark); color: var(--text-light); }
.contact-info h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--text-light); }
.contact-info p { color: var(--text-muted-dark); margin-bottom: 3rem; font-size: 1.1rem; }

.detail-item { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 2rem; font-size: 1.1rem; }
.detail-item i { color: var(--clr-yellow); font-size: 1.5rem; width: 25px; text-align: center; }
.detail-item span { color: var(--text-light); }

.contact-form-container { padding: 5rem; background-color: var(--bg-card); }
.contact-form h3 { margin-bottom: 2.5rem; font-size: 2rem; color: var(--text-primary); }

.form-group { margin-bottom: 1.5rem; }
.form-group input, .form-group select {
    width: 100%; padding: 1.2rem;
    background-color: #f8fafc; /* Very light slate */
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body); font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus, .form-group select:focus {
    outline: none; border-color: var(--clr-yellow-dark); background-color: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.2);
}

/* =========================================
   Footer
   ========================================= */
footer {
    background-color: var(--bg-dark); /* Keep it dark for premium grounding */
    color: var(--text-muted-dark);
    padding: 6rem 0 2rem;
}

.footer-container { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 5rem; margin-bottom: 4rem; }
.footer-brand .logo { color: var(--text-light); margin-bottom: 1rem; }
.footer-brand p { margin: 1.5rem 0; line-height: 1.8; color: var(--text-muted-dark); }

.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-links a {
    width: 45px; height: 45px; border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex; justify-content: center; align-items: center;
    color: var(--text-light); transition: all var(--transition-fast);
}
.social-links a:hover { background-color: var(--clr-yellow); color: var(--bg-dark); transform: translateY(-3px); }

.footer-links h4 { margin-bottom: 2rem; font-size: 1.2rem; color: var(--text-light); }
.footer-links ul li { margin-bottom: 1rem; }
.footer-links ul li a { color: var(--text-muted-dark); }
.footer-links ul li a:hover { color: var(--clr-yellow); }

.footer-bottom {
    text-align: center; padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { 
        display: flex; flex-direction: column; position: absolute; 
        top: 80px; left: -100%; width: 100%; background: rgba(255,255,255,0.98); 
        padding: 2rem; box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
        transition: 0.3s ease; backdrop-filter: blur(10px); z-index: 1000;
    }
    .nav-links.active { left: 0; }
    .menu-toggle { display: block; font-size: 1.8rem; }
    
    .hero { padding-top: 120px; padding-bottom: 40px; }
    .hero-container, .profit-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    
    .hero-title { font-size: 3rem; letter-spacing: -1px; }
    .hero-subtitle { margin: 0 auto 2rem; font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; }
    .hero-buttons .btn { width: 100%; }
    .hero-stats { flex-direction: column; gap: 1.5rem; justify-content: center; }
    
    .hero-image-wrapper { height: 350px; }
    .hero-graphic { width: 250px; height: 250px; }
    .c3 { width: 100px; height: 100px; font-size: 2.5rem; }
    
    .section-title h2 { font-size: 2.2rem; }
    .profit-content h2 { font-size: 2.5rem; }
    
    .profit-steps .step { flex-direction: column; text-align: center; gap: 1rem; align-items: center; }
    .huge-icon { font-size: 5rem; }
    
    .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .service-card { padding: 2rem 1.5rem; }
    
    /* Make table scrollable but keep it looking like a card inside */
    .pricing-section { padding: 4rem 0; }
    .comparison-wrapper { padding: 2rem 1rem; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 16px; }
    .comparison-table { width: 800px; display: table; }
    .comparison-table th, .comparison-table td { padding: 1rem 0.5rem; }
    
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info, .contact-form-container { padding: 2.5rem 1.5rem; }
    .contact-info h2 { font-size: 2rem; }
    .footer-container { gap: 2.5rem; display: flex; flex-direction: column; }
}

/* =========================================
   Floating WhatsApp Button
   ========================================= */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform var(--transition-norm), background-color var(--transition-fast), box-shadow var(--transition-norm);
}

.floating-wa:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #1ebd5b;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }
}
