/* ========================================
   DIGIZION MEDIA - MARKETING DETECTIVES
   Custom Detective-Themed Design
   Color Palette:
   - Primary: #6366F1 (Detective Indigo)
   - Secondary: #EC4899 (Clue Pink)
   - Success: #10B981 (Mystery Solved Green)
   - Warning: #F59E0B (Evidence Amber)
   - Dark BG: #0F172A
   - Card BG: #1E293B
   ======================================== */

/* ========================================
   RESET & BASE
   ======================================== */

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

:root {
    --primary: #6366F1;
    --secondary: #EC4899;
    --success: #10B981;
    --warning: #F59E0B;
    --dark-bg: #0F172A;
    --card-bg: #1E293B;
    --border: #334155;
    --text: #FFFFFF;
    --text-muted: #94A3B8;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.6);
}

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

.btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

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

.detective-icon {
    color: var(--primary);
    font-size: 24px;
}

.logo h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
}

.accent-dot {
    color: var(--secondary);
    font-size: 36px;
}

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

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text);
    cursor: pointer;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.clue {
    position: absolute;
    font-size: 40px;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.clue-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.clue-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.clue-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.clue-4 {
    top: 30%;
    right: 25%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 32px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
}

.mystery-text {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--warning) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.mystery-questions {
    margin-bottom: 24px;
}

.mystery-q {
    font-size: 20px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 32px;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 15px;
}

.feature i {
    color: var(--success);
    font-size: 20px;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */

.problem-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(30, 41, 59, 0.5) 100%);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    transition: left 0.5s ease;
}

.problem-card:hover::before {
    left: 100%;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
}

.problem-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text);
}

.problem-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.clue-tag {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.truth-bomb {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.truth-bomb i {
    font-size: 48px;
    color: var(--warning);
    margin-bottom: 20px;
    display: block;
}

.truth-bomb h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.truth-bomb p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.team-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.team-story h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.team-story p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.team-philosophy {
    background: var(--card-bg);
    border-left: 4px solid var(--primary);
    padding: 24px;
    margin-top: 32px;
    border-radius: 8px;
}

.team-philosophy i {
    color: var(--secondary);
    margin: 0 8px;
}

.credentials {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.credentials h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.cred-category {
    margin-bottom: 32px;
}

.cred-category h4 {
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cred-category h4 i {
    color: var(--primary);
}

.cred-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.tool {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tool:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

.tool i {
    color: var(--secondary);
    font-size: 20px;
}

.tool span {
    font-size: 14px;
    color: var(--text-muted);
}

.experience-badge {
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.exp-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ========================================
   METHOD SECTION
   ======================================== */

.method-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.5) 0%, var(--dark-bg) 100%);
}

.method-timeline {
    max-width: 900px;
    margin: 0 auto 60px;
}

.method-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 80px;
}

.method-step::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -80px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
}

.method-step:last-child::before {
    display: none;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.step-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.step-content {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.step-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.step-tagline {
    font-size: 18px;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 24px;
}

.what-we-do,
.example-box,
.tracking-dashboard,
.optimization-cycle {
    margin: 24px 0;
}

.what-we-do h4,
.example-box h4,
.tracking-dashboard h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.what-we-do ul,
.example-box p,
.tracking-dashboard p {
    color: var(--text-muted);
    line-height: 1.8;
}

.what-we-do ul {
    list-style: none;
}

.what-we-do li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.what-we-do i {
    color: var(--success);
    margin-top: 4px;
}

.example-box {
    background: rgba(245, 158, 11, 0.05);
    border-left: 4px solid var(--warning);
    padding: 20px;
    border-radius: 8px;
}

.example-box p {
    margin-bottom: 8px;
}

.example-box strong {
    color: var(--text);
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
}

.metric i {
    color: var(--success);
    font-size: 24px;
}

.metric span {
    font-size: 14px;
    color: var(--text-muted);
}

.guarantee-text {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.guarantee-text i {
    color: var(--success);
    font-size: 24px;
}

.outcome-box {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--success);
    padding: 16px;
    border-radius: 8px;
    margin-top: 24px;
}

.outcome-box strong {
    color: var(--success);
}

.method-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.method-cta h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.method-cta > p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cta-guarantee {
    margin-top: 16px;
    font-size: 14px;
    color: var(--success);
    font-weight: 600;
}

/* ========================================
   CASE FILES SECTION
   ======================================== */

.cases-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.case-file {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.case-file:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

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

.case-label {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.case-status {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
}

.case-status.solved {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.case-file h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.case-client {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 15px;
}

.case-client i {
    color: var(--secondary);
}

.case-mystery,
.case-investigation,
.case-solution,
.case-results {
    margin-bottom: 24px;
}

.case-mystery h4,
.case-investigation h4,
.case-solution h4,
.case-results h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.case-mystery p,
.case-investigation ul,
.case-solution ul {
    color: var(--text-muted);
    line-height: 1.7;
}

.case-investigation ul,
.case-solution ul {
    list-style: none;
    padding-left: 0;
}

.case-investigation li,
.case-solution li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.case-investigation li::before,
.case-solution li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}

.metric-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.metric-value {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.case-closed {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.case-file-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border);
    background: transparent;
}

.placeholder-content {
    text-align: center;
}

.placeholder-content i {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.placeholder-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.placeholder-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(30, 41, 59, 0.5) 100%);
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.service-featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-tagline {
    font-size: 16px;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 16px;
}

.service-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.service-features i {
    color: var(--success);
}

.service-outcome {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--success);
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
}

.service-outcome strong {
    color: var(--success);
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--warning) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.pricing-tagline {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 32px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 18px;
    color: var(--text-muted);
    margin-left: 8px;
}

.pricing-features h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--success);
}

.pricing-best-for {
    background: rgba(99, 102, 241, 0.05);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-best-for strong {
    color: var(--text);
}

.pricing-guarantee {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 2px solid var(--success);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.guarantee-content i {
    font-size: 48px;
    color: var(--success);
    flex-shrink: 0;
}

.guarantee-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.guarantee-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

.pricing-note {
    text-align: center;
    background: var(--card-bg);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.pricing-note strong {
    color: var(--warning);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.5) 0%, var(--dark-bg) 100%);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 16px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-answer ul,
.faq-answer ol {
    margin-left: 20px;
    margin-bottom: 12px;
}

.faq-answer li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 8px;
}

.faq-answer strong {
    color: var(--text);
}

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.contact-header {
    margin-bottom: 60px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(8px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.method-details h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.method-details a {
    color: var(--secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.method-details a:hover {
    text-decoration: underline;
}

.method-details p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-bg);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-message {
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.form-success {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
}

.form-success i {
    font-size: 50px;
    color: var(--success);
    margin-bottom: 16px;
    display: block;
}

.form-success h4 {
    font-size: 24px;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.form-success ul {
    text-align: left;
    max-width: 400px;
    margin: 12px auto;
    list-style: none;
}

.form-success li {
    padding: 6px 0;
    color: var(--text-muted);
}

.form-success a {
    color: var(--success);
    font-weight: 600;
    text-decoration: underline;
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
}

.form-error i {
    font-size: 50px;
    color: #ef4444;
    margin-bottom: 16px;
    display: block;
}

.form-error h4 {
    font-size: 24px;
    margin-bottom: 12px;
}

.form-error a {
    color: #ef4444;
    font-weight: 600;
    text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-logo h3 {
    font-size: 28px;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 15px;
    color: var(--secondary);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

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

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: bounce-float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

@keyframes bounce-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 9999;
    transform-origin: left;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.5);
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    
    /* Navigation */
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--card-bg);
        flex-direction: column;
        padding: 80px 0 30px;
        gap: 0;
        border-left: 1px solid var(--border);
        transition: right 0.3s ease;
        z-index: 1000;
        align-items: stretch;
    }
    
    .nav-menu.menu-open {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-menu a {
        display: block;
        padding: 20px 30px;
        font-size: 16px;
    }
    
    .nav-btn {
        margin: 20px 30px;
        text-align: center;
    }
    
    .menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        z-index: 999;
        display: none;
    }
    
    .menu-backdrop.show {
        display: block;
    }
    
    /* Typography */
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* Hero */
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .mystery-q {
        font-size: 16px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Problems */
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    /* Team */
    .team-intro {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    /* Method */
    .method-step {
        padding-left: 60px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .method-step::before {
        left: 25px;
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
    }
    
    /* Cases */
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .results-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-featured {
        transform: scale(1);
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .btn {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
}