:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --accent-color: #00aaff;
    --accent-hover: #0088cc;
    --card-bg: #f8f9fa;
    --card-border: #e0e0e0;
    --success-color: #68BE57;
    --warning-color: #FF6B6B;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.2);
}

.dark {
    --bg-color: #0a0a0a;
    --text-color: #e8e8e8;
    --card-bg: #1a1a1a;
    --card-border: #2a2a2a;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.7);
}

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

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
    line-height: 1.6;
    scroll-behavior: smooth;
    padding-top: 35px; /* Add padding for fixed navbar - reduced by 50% */
    position: relative;
}

/* Background layers for visual depth */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 170, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 170, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

html:not(.dark) body::before {
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 170, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 170, 255, 0.04) 0%, transparent 40%);
}

/* Animated grid pattern */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: 
        linear-gradient(rgba(0, 170, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 170, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.5;
}

html:not(.dark) body::after {
    background-image: 
        linear-gradient(rgba(0, 170, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 170, 255, 0.02) 1px, transparent 1px);
    opacity: 0.3;
}

/* Subtle background animation */
@keyframes bgPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.7;
    }
}

.dark body::before {
    animation: bgPulse 8s ease-in-out infinite;
}

html:not(.dark) body::before {
    animation: bgPulse 8s ease-in-out infinite;
}

/* ===== NAVIGATION BAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.dark .navbar {
    background: rgba(26, 26, 26, 0.9);
}

html:not(.dark) .navbar {
    background: rgba(248, 249, 250, 0.9);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-brand {
    font-size: 1.5em;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color), #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.dark .nav-toggle span {
    background: var(--accent-color);
}

html:not(.dark) .nav-toggle span {
    background: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 10px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
    background: rgba(0, 170, 255, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--accent-color);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-color), #0088cc);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-left: 10px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 170, 255, 0.4);
    background: linear-gradient(135deg, #0088cc, var(--accent-color));
}

.nav-cta::after {
    display: none;
}

/* Navbar scroll effect */
.navbar.scrolled {
    background: rgba(var(--card-bg-rgb), 0.95);
    box-shadow: var(--shadow-lg);
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
    line-height: 1.6;
    scroll-behavior: smooth;
    padding-top: 35px; /* Add padding for fixed navbar - reduced by 50% */
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    pointer-events: none;
}

html:not(.dark) #bg-canvas {
    opacity: 0.4;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ===== HERO SECTION ===== */
header {
    text-align: center;
    padding: 50px 20px 40px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #0088cc);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(0,170,255,0.3);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

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

h1 {
    font-size: clamp(2em, 8vw, 4.5em);
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color), #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,170,255,0.2);
}

.tagline {
    font-size: clamp(1em, 3vw, 1.5em);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    padding: 0 10px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3em;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.95em;
    opacity: 0.8;
    margin-top: 8px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-color), #0088cc);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2em;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0,170,255,0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,170,255,0.5);
}

.cta-arrow {
    font-size: 1.3em;
    transition: transform 0.3s;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* ===== SECTIONS BASE ===== */
section {
    margin-bottom: 50px;
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease;
    position: relative;
    z-index: 1;
    scroll-margin-top: 40px; /* Offset for fixed navbar - reduced by 50% */
}

section h2 {
    font-size: clamp(2em, 6vw, 3em);
    margin-bottom: 20px;
    color: var(--accent-color);
    text-align: center;
    font-weight: 700;
    transform: none;
    padding: 0 10px;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1em, 2.5vw, 1.2em);
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    background: var(--bg-color);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #667eea);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.problem-card.highlighted {
    background: linear-gradient(135deg, var(--accent-color), #0088cc);
    color: white;
    border-color: transparent;
}

.problem-card.highlighted h3,
.problem-card.highlighted p {
    color: white;
}

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

.problem-card h3 {
    color: var(--accent-color);
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.problem-card.highlighted h3 {
    color: white;
}

.problem-card p {
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-color) 100%);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.trust-item {
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-color);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.trust-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.trust-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.trust-item h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
}

.trust-item p {
    line-height: 1.7;
    opacity: 0.9;
}

.highlight-number {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--accent-color);
}

.trust-proof {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--bg-color);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.proof-statement {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
}

.trust-footnote {
    font-size: 0.9em;
    opacity: 0.7;
    font-style: italic;
}

/* ===== PROJECTS SECTION ===== */
/* Projects section removed */

/* ===== DAILY FLOW SECTION ===== */
#daily-flow {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-color) 100%);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

#daily-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0,170,255,0.05), transparent 50%);
    pointer-events: none;
}

.flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    position: relative;
    padding: 40px 0;
    z-index: 1;
}

.flow-step {
    background: var(--bg-color);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    border: 2px solid transparent;
}

.flow-step:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-color), #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2em;
    box-shadow: 0 4px 20px rgba(0,170,255,0.4);
}

.step-icon {
    font-size: 3.5em;
    margin: 25px 0 20px 0;
    display: block;
}

.flow-step h3 {
    color: var(--accent-color);
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.flow-step p {
    font-size: 0.95em;
    line-height: 1.7;
    opacity: 0.9;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    animation: pulse-arrow 2s infinite;
}

.flow-arrow svg {
    filter: drop-shadow(0 2px 8px rgba(0,170,255,0.4));
}

@keyframes pulse-arrow {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
}

.flow-bonus {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--success-color);
}

.flow-bonus h3 {
    color: var(--success-color);
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.flow-bonus ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.flow-bonus li {
    padding: 12px 16px;
    background: var(--card-bg);
    border-radius: 12px;
    font-size: 0.9em;
    line-height: 1.5;
}

.flow-bonus li strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 4px;
    font-size: 1em;
}

/* ===== PROJECT EXAMPLE SECTION ===== */
#project-example {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
}

/* ===== PROJECTS GRID ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.project-widget {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.project-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #667eea);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.project-widget:hover::before {
    transform: scaleX(1);
}

.project-widget:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(0,170,255,0.3);
}

.project-widget .project-icon {
    font-size: 2.5em;
    margin-bottom: 12px;
    animation: float 3s ease-in-out infinite;
}

.project-widget h3 {
    color: var(--accent-color);
    font-size: 1.1em;
    margin-bottom: 8px;
    font-weight: 700;
}

.project-widget .project-desc {
    font-size: 0.85em;
    opacity: 0.85;
    line-height: 1.4;
    margin: 0;
}

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

/* ===== IDEAL CANDIDATE SECTION ===== */
.ideal-section {
    padding: 40px 30px;
}

.candidate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.candidate-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

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

.candidate-card.perfect-fit {
    border-color: var(--success-color);
}

.candidate-card.not-fit {
    border-color: var(--warning-color);
}

.candidate-card h3 {
    font-size: 1.8em;
    margin-bottom: 25px;
    font-weight: 700;
}

.candidate-card.perfect-fit h3 {
    color: var(--success-color);
}

.candidate-card.not-fit h3 {
    color: var(--warning-color);
}

.candidate-card ul {
    list-style: none;
    padding: 0;
}

.candidate-card li {
    padding: 15px 0 15px 35px;
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid var(--card-border);
}

.candidate-card li:last-child {
    border-bottom: none;
}

.candidate-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.perfect-fit li::before {
    content: '✓';
    background: var(--success-color);
    color: white;
}

.not-fit li::before {
    content: '✗';
    background: var(--warning-color);
    color: white;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-color) 100%);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--bg-color);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--card-border);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-12px);
}

.pricing-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), #667eea);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,170,255,0.3);
}

.pricing-card h3 {
    font-size: 1.8em;
    margin: 20px 0 15px 0;
    color: var(--accent-color);
    text-align: center;
    font-weight: 700;
}

.price {
    font-size: 3em;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 15px 0;
}

.price-note {
    text-align: center;
    font-size: 0.9em;
    opacity: 0.7;
    margin-bottom: 25px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    flex-grow: 1;
}

.pricing-card li {
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.6;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2em;
}

.savings-badge {
    background: var(--success-color);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    margin-top: auto;
}

.guarantee-box {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--success-color);
}

.guarantee-box h3 {
    color: var(--success-color);
    font-size: 2em;
    margin-bottom: 20px;
}

.guarantee-box p {
    font-size: 1.15em;
    line-height: 1.7;
    margin-bottom: 10px;
}

.guarantee-note {
    font-size: 0.95em;
    opacity: 0.7;
    font-style: italic;
}

/* ===== TESTIMONIALS SECTION ===== */
.social-section {
    padding: 40px 30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.stars {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #FFD700;
}

.testimonial-text {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--accent-color);
    font-size: 1.1em;
}

.testimonial-author span {
    font-size: 0.9em;
    opacity: 0.7;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

.faq-item {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    transform: translateX(8px);
    border-left-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--accent-color);
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    line-height: 1.8;
    opacity: 0.9;
}

/* ===== CONTACT FORM SECTION ===== */
#contact {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-color) 100%);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.cta-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 40px 0;
}

.benefit-item {
    background: var(--bg-color);
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--success-color);
    color: var(--success-color);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

#contact-form {
    max-width: 650px;
    margin: 30px auto 0;
    background: var(--bg-color);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--card-border);
}

#contact-form input,
#contact-form select,
#contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 2px solid var(--card-border);
    background: var(--card-bg);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    transition: all 0.3s;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0,170,255,0.1);
    background: var(--bg-color);
}

#contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300aaff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    cursor: pointer;
}

#contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

#contact-form button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--accent-color), #0088cc);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15em;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0,170,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,170,255,0.4);
}

.btn-arrow {
    font-size: 1.3em;
    transition: transform 0.3s;
}

#contact-form button:hover .btn-arrow {
    transform: translateX(5px);
}

.form-note {
    text-align: center;
    font-size: 0.9em;
    opacity: 0.7;
    margin-top: 15px;
    font-style: italic;
}

#other-country {
    display: none;
}

/* ===== NEXT STEPS SECTION ===== */
.next-steps-section {
    padding: 40px 30px;
    background: var(--card-bg);
    border-radius: 25px;
    margin-top: 60px;
    box-shadow: var(--shadow-lg);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-color);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-circle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3em;
    box-shadow: 0 4px 15px rgba(0,170,255,0.4);
}

.step .icon {
    width: 64px;
    height: 64px;
    fill: var(--accent-color);
    margin: 30px auto 20px;
}

.step h3 {
    font-size: 1.3em;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
    font-size: 1em;
    line-height: 1.6;
    opacity: 0.9;
}

.next-steps-note {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 15px;
    margin-top: 50px;
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.next-steps-note p {
    font-size: 1.15em;
    line-height: 1.7;
}

.next-steps-note strong {
    color: var(--accent-color);
}

/* ===== TRUST SIGNALS SECTION ===== */
.trust-signals-section {
    padding: 40px 0;
}

.signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.signal-item {
    text-align: center;
    padding: 25px;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.signal-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.signal-item h4 {
    font-size: 1.2em;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.signal-item p {
    font-size: 0.95em;
    opacity: 0.8;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--card-bg);
    padding: 20px 20px 15px;
    border-radius: 20px 20px 0 0;
    margin-top: 30px;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 15px;
    width: 100%;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
    max-width: 100%;
}

.footer-brand h3 {
    color: var(--accent-color);
    font-size: 1.3em;
    margin-bottom: 5px;
    font-weight: 700;
    word-wrap: break-word;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.4;
    font-size: 0.85em;
    word-wrap: break-word;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links h4 {
    color: var(--accent-color);
    font-size: 0.95em;
    margin-bottom: 0;
    margin-right: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 25px;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    font-size: 0.9em;
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid var(--card-border);
    opacity: 0.7;
    font-size: 0.8em;
    word-wrap: break-word;
    max-width: 100%;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

/* ===== DARK MODE TOGGLE ===== */
.mode-toggle {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 15px;
    z-index: 1001;
}

.toggle-checkbox {
    opacity: 0;
    position: absolute;
}

.toggle-label {
    background: linear-gradient(135deg, #092c3e, #1a4d6d);
    width: 60px;
    height: 32px;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.toggle-label:hover {
    box-shadow: var(--shadow-lg);
}

.toggle-button {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: 0.3s;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-checkbox:checked + .toggle-label .toggle-button {
    left: calc(100% - 28px);
    background: #ffd43b;
}

.toggle-label:active .toggle-button {
    width: 32px;
}

.toggle-checkbox:checked + .toggle-label {
    background: linear-gradient(135deg, #2a2a2a, #4a4a4a);
}

.toggle-button::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #092c3e;
    opacity: 0;
    transition: 0.3s;
}

.toggle-checkbox:checked + .toggle-label .toggle-button::before {
    opacity: 1;
}

/* ===== ANIMATIONS & EFFECTS ===== */
.flare {
    position: fixed;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0,170,255,0.4) 0%, rgba(0,170,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100;
    animation: flareAnimation 5s ease-out;
    opacity: 0;
    mix-blend-mode: screen;
}

@keyframes flareAnimation {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    25% {
        opacity: 0.7;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.sparkle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 0 8px var(--accent-color);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0,170,255,0.3);
    pointer-events: none;
    transform: scale(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nav-toggle {
        display: flex !important;
    }
}

@media (max-width: 968px) {
    .navbar {
        display: block;
        visibility: visible;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    
    .nav-toggle {
        display: flex !important;
        order: 3;
        z-index: 1002;
        margin-left: auto;
    }
    
    .nav-brand {
        order: 1;
        font-size: 1.3em;
    }
    
    .mode-toggle {
        display: none !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(15px);
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        order: 4;
        display: flex !important;
    }
    
    html:not(.dark) .nav-menu {
        background: rgba(248, 249, 250, 0.98);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        width: 100%;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px 20px;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    .flow-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .flow-step {
        max-width: 100%;
        min-width: auto;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .project-widget {
        padding: 15px;
    }
    
    .project-widget .project-icon {
        font-size: 2em;
    }
    
    .project-widget h3 {
        font-size: 0.95em;
    }
    
    .project-widget .project-desc {
        font-size: 0.75em;
    }
    
    .candidate-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .candidate-card {
        min-width: auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-12px);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        min-width: auto;
    }
    
    .flow-bonus ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    body, html {
        padding-top: 35px;
    }
    
    /* Optimize background patterns for tablets */
    body::after {
        background-size: 40px 40px;
        opacity: 0.4;
    }
    
    html:not(.dark) body::after {
        opacity: 0.25;
    }
    
    #bg-canvas {
        opacity: 0.6;
    }
    
    html:not(.dark) #bg-canvas {
        opacity: 0.35;
    }
    
    .navbar {
        display: block !important;
        visibility: visible !important;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 10px;
    }
    
    .nav-brand {
        font-size: 1.2em;
    }
    
    .nav-toggle {
        display: flex !important;
        margin-left: auto;
    }
    
    .mode-toggle {
        display: none !important;
    }
    
    .container {
        padding: 10px;
    }
    
    header {
        padding: 30px 10px 25px;
    }
    
    .hero-badge {
        font-size: 0.75em;
        padding: 8px 16px;
        margin-bottom: 20px;
        white-space: normal;
        line-height: 1.4;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 0.95em;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .problem-grid,
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-card,
    .trust-item {
        padding: 25px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 5px;
    }
    
    .project-widget {
        padding: 20px;
    }
    
    .project-widget .project-icon {
        font-size: 2.5em;
    }
    
    .project-widget h3 {
        font-size: 1.1em;
    }
    
    .project-widget .project-desc {
        font-size: 0.9em;
    }
    
    .flow-bonus ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .flow-bonus li {
        font-size: 0.85em;
        padding: 10px 14px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 0.95em;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px;
    }
    
    .faq-item h3 {
        font-size: 1.1em;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .signals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .site-footer {
        padding: 20px 15px 15px;
        margin-top: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
    }
    
    .footer-brand {
        width: 100%;
        text-align: center;
    }
    
    .footer-brand h3 {
        font-size: 1.5em;
    }
    
    .footer-brand p {
        font-size: 0.9em;
        max-width: 100%;
    }
    
    .footer-links {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links h4 {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .footer-links li {
        width: 100%;
    }
    
    .footer-links a {
        display: block;
        padding: 8px;
        font-size: 0.95em;
    }
    
    .footer-bottom {
        font-size: 0.75em;
        padding: 15px 10px 10px;
    }
    
    .footer-bottom p {
        line-height: 1.8;
    }
    
    #contact-form {
        padding: 0 10px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .toggle-label {
        width: 50px;
        height: 28px;
    }
    
    .toggle-button {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    body, html {
        padding-top: 30px;
    }
    
    /* Optimize background patterns for mobile */
    body::after {
        background-size: 30px 30px;
        opacity: 0.3;
    }
    
    html:not(.dark) body::after {
        opacity: 0.2;
    }
    
    #bg-canvas {
        opacity: 0.5;
    }
    
    html:not(.dark) #bg-canvas {
        opacity: 0.3;
    }
    
    .navbar {
        display: block !important;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 10px;
    }
    
    .nav-brand {
        font-size: 1.1em;
    }
    
    .nav-toggle {
        display: flex !important;
        margin-left: auto;
    }
    
    .mode-toggle {
        display: none !important;
    }
    
    header {
        padding: 20px 10px;
    }
    
    .hero-badge {
        font-size: 0.7em;
        padding: 6px 14px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 12px 15px;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .stat-label {
        font-size: 0.85em;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9em;
    }
    
    .flow-bonus ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .flow-bonus li {
        font-size: 0.8em;
        padding: 10px 12px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .problem-card,
    .trust-item {
        padding: 20px;
    }
    
    .problem-icon,
    .trust-icon {
        font-size: 3em;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .price {
        font-size: 2.5em;
    }
    
    .signals-grid {
        grid-template-columns: 1fr;
    }
    
    .site-footer {
        padding: 15px 10px 12px;
    }
    
    .footer-brand h3 {
        font-size: 1.3em;
    }
    
    .footer-brand p {
        font-size: 0.85em;
    }
    
    .footer-links a {
        font-size: 0.9em;
        padding: 6px;
    }
    
    .footer-bottom {
        font-size: 0.7em;
        padding: 12px 8px 8px;
    }
    
    .toggle-label {
        width: 45px;
        height: 24px;
    }
    
    .toggle-button {
        width: 18px;
        height: 18px;
        top: 3px;
        left: 3px;
    }
    
    .toggle-checkbox:checked + .toggle-label .toggle-button {
        left: calc(100% - 21px);
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== SELECTION STYLING ===== */
::selection {
    background: var(--accent-color);
    color: white;
}

::-moz-selection {
    background: var(--accent-color);
    color: white;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--card-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}