/* ==========================================
   RESET & BASE STYLES
   ========================================== */
:root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-card: #16161a;
    --bg-card-hover: #1c1c21;
    --accent: #6366f1;
    --accent-light: #818cf8;
    --accent-dark: #4f46e5;
    --accent-glow: rgba(99, 102, 241, 0.4);
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border: #27272a;
    --border-light: #3f3f46;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Gradient background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    animation: gradientMove 20s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-1%, 3%) rotate(-1deg);
    }
}

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

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 12px;
    }
    
    html {
        font-size: 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 11, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    text-decoration: none;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    height: calc(100vh - 65px);
    background: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 32px 24px;
}

.mobile-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.mobile-cta {
    margin-top: 16px;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

@media (max-width: 640px) {
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-sm {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .btn {
        padding: 11px 18px;
        font-size: 13px;
        gap: 8px;
    }
    
    .btn-sm {
        padding: 7px 14px;
        font-size: 12px;
    }
    
    .btn svg {
        width: 16px;
        height: 16px;
    }
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons-centered {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.hero-stat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-icon svg {
    color: var(--accent);
}

.hero-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Hero Responsive */
@media (max-width: 900px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 32px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .btn-large {
        width: 100%;
        padding: 16px 28px;
        font-size: 15px;
    }
    
    .hero-buttons-centered {
        margin-bottom: 48px;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .hero-stat {
        padding: 16px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
    }
    
    .hero-stat-icon {
        width: 36px;
        height: 36px;
    }
    
    .hero-stat-value {
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 1.625rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 28px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 20px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .hero-buttons-centered {
        margin-bottom: 40px;
    }
    
    .hero-stat {
        padding: 14px 12px;
    }
    
    .hero-stat-icon {
        width: 32px;
        height: 32px;
    }
    
    .hero-stat-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-stat-value {
        font-size: 14px;
    }
    
    .hero-stat-label {
        font-size: 11px;
    }
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-alt {
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.02) 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.section-label svg {
    color: var(--accent);
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .section {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-label {
        font-size: 12px;
        padding: 6px 14px;
    }
}

@media (max-width: 380px) {
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    .section-label {
        font-size: 11px;
        padding: 5px 12px;
    }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.service-card-featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    color: white;
}

.service-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

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

/* ==========================================
   ZIGZAG / EDUCATIONAL SECTION
   ========================================== */
.zigzag-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.zigzag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zigzag-row-reverse {
    direction: rtl;
}

.zigzag-row-reverse > * {
    direction: ltr;
}

.zigzag-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.zigzag-icon svg {
    color: white;
}

.zigzag-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.zigzag-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.zigzag-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 15px;
}

.zigzag-list li svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}

.zigzag-list strong {
    color: var(--text-primary);
}

.zigzag-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    font-size: 13px;
    color: #f87171;
    margin-top: 24px;
}

.zigzag-warning svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.zigzag-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    font-size: 13px;
    color: var(--accent-light);
    margin-top: 24px;
}

.zigzag-note svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* Flow Diagram */
.flow-diagram {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.flow-item {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.flow-arrow {
    color: var(--accent);
    font-size: 18px;
    font-weight: 600;
}

/* Zigzag Image */
.zigzag-image {
    position: relative;
}

.zigzag-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.zigzag-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 20px;
    opacity: 0.15;
    z-index: -1;
}

/* Zigzag Responsive */
@media (max-width: 900px) {
    .zigzag-container {
        gap: 60px;
    }
    
    .zigzag-row,
    .zigzag-row-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }
    
    .zigzag-title {
        font-size: 1.5rem;
    }
    
    .zigzag-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .zigzag-container {
        gap: 48px;
    }
    
    .zigzag-row,
    .zigzag-row-reverse {
        gap: 24px;
    }
    
    .zigzag-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .zigzag-title {
        font-size: 1.375rem;
        margin-bottom: 12px;
    }
    
    .zigzag-text {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }
    
    .zigzag-list {
        margin-bottom: 20px;
    }
    
    .zigzag-list li {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .zigzag-warning,
    .zigzag-note {
        padding: 14px 16px;
        font-size: 12px;
        margin-top: 20px;
    }
    
    .flow-diagram {
        gap: 8px;
        margin-top: 20px;
    }
    
    .flow-item {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .flow-arrow {
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .zigzag-container {
        gap: 36px;
    }
    
    .zigzag-row,
    .zigzag-row-reverse {
        gap: 20px;
    }
    
    .zigzag-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .zigzag-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .zigzag-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .zigzag-text {
        font-size: 0.875rem;
        margin-bottom: 16px;
        line-height: 1.6;
    }
    
    .zigzag-list {
        margin-bottom: 16px;
    }
    
    .zigzag-list li {
        font-size: 13px;
        padding: 6px 0;
        gap: 10px;
    }
    
    .zigzag-warning,
    .zigzag-note {
        padding: 12px 14px;
        font-size: 11px;
        margin-top: 16px;
        gap: 10px;
    }
    
    .flow-diagram {
        gap: 6px;
        margin-top: 16px;
    }
    
    .flow-item {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .flow-arrow {
        font-size: 14px;
    }
}

/* ==========================================
   PRICING SECTION (ORIGINAL DESIGN)
   ========================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .pricing-card {
        padding: 28px 24px;
    }
    
    .card-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 16px;
    }
    
    .card-title {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }
    
    .card-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .card-price {
        margin-bottom: 20px;
    }
    
    .card-price .amount {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .card-price .currency {
        font-size: 1.25rem;
    }
    
    .card-delivery {
        font-size: 12px;
        margin-top: 6px;
    }
    
    .card-features {
        margin-bottom: 24px;
    }
    
    .card-features li {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .card-features .icon {
        width: 18px;
        height: 18px;
    }
    
    .card-limitations {
        padding: 12px 14px;
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .card-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .pricing-card {
        padding: 24px 20px;
    }
    
    .card-badge {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 14px;
    }
    
    .card-title {
        font-size: 1.125rem;
        margin-bottom: 6px;
    }
    
    .card-description {
        font-size: 12px;
        margin-bottom: 16px;
        line-height: 1.5;
    }
    
    .card-price {
        margin-bottom: 16px;
    }
    
    .card-price .amount {
        font-size: 2.25rem;
        letter-spacing: -0.5px;
    }
    
    .card-price .currency {
        font-size: 1.125rem;
    }
    
    .card-delivery {
        font-size: 11px;
        margin-top: 5px;
        gap: 4px;
    }
    
    .card-delivery svg {
        width: 12px;
        height: 12px;
    }
    
    .card-features {
        margin-bottom: 20px;
    }
    
    .card-features li {
        padding: 8px 0;
        font-size: 12px;
        gap: 10px;
    }
    
    .card-features .icon {
        width: 16px;
        height: 16px;
    }
    
    .card-limitations {
        padding: 10px 12px;
        font-size: 11px;
        margin-bottom: 16px;
        gap: 8px;
    }
    
    .card-limitations svg {
        width: 14px;
        height: 14px;
    }
    
    .card-btn {
        padding: 12px 18px;
        font-size: 13px;
    }
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    overflow: hidden;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--text-muted);
}

.pricing-card.basic {
    opacity: 0.6;
}

.pricing-card.basic:hover {
    opacity: 0.8;
}

.pricing-card.recommended {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, var(--bg-card) 100%);
    opacity: 1;
}

.pricing-card.recommended::before {
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    height: 3px;
}

.pricing-card.recommended::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top center, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.pricing-card.premium::before {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pricing-card.premium:hover {
    border-color: var(--gold);
}

.card-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-secondary);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
    align-self: flex-start;
    position: relative;
    z-index: 1;
}

.pricing-card.recommended .card-badge {
    background: var(--accent);
    color: white;
}

.pricing-card.premium .card-badge {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--bg-primary);
}

.card-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.card-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.card-price {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.card-price .amount {
    font-family: 'DM Mono', monospace;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-card.recommended .card-price .amount {
    color: var(--accent-light);
}

.pricing-card.premium .card-price .amount {
    color: var(--gold);
}

.card-price .currency {
    font-family: 'DM Mono', monospace;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    vertical-align: top;
}

.card-delivery {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

.card-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

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

.card-features .icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.card-features .icon.check {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.card-features .icon.x {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.card-features .highlight {
    color: var(--text-primary);
    font-weight: 500;
}

.card-limitations {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #f87171;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.card-limitations svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.card-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.pricing-card.basic .card-btn {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.pricing-card.basic .card-btn:hover {
    background: var(--border);
    color: var(--text-primary);
}

.pricing-card.recommended .card-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    box-shadow: 0 8px 32px var(--accent-glow);
}

.pricing-card.recommended .card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--accent-glow);
}

.pricing-card.premium .card-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--bg-primary);
}

.pricing-card.premium .card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
}

/* COMPARISON TABLE */
.comparison-wrapper {
    overflow-x: auto;
    margin-top: 60px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table thead th {
    background: var(--bg-secondary);
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.comparison-table thead th:nth-child(3) {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.15) 0%, var(--bg-secondary) 100%);
    color: var(--accent-light);
}

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

.comparison-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.comparison-table td {
    color: var(--text-secondary);
    font-size: 14px;
}

.comparison-table .check {
    color: var(--success);
}

.comparison-table .x {
    color: var(--text-muted);
}

.comparison-table .highlight-col {
    background: rgba(99, 102, 241, 0.03);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-wrapper {
        margin-top: 48px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .comparison-wrapper {
        margin-top: 40px;
        border-radius: 16px;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
        font-size: 12px;
    }
    
    .comparison-table thead th {
        font-size: 12px;
    }
}
   PORTFOLIO SECTION WITH SLIDER
   ========================================== */
.portfolio-bio-centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.portfolio-photo {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent);
    box-shadow: 0 8px 32px var(--accent-glow);
    margin: 0 auto 24px;
}

.portfolio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-bio-centered h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.portfolio-bio-centered p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
    text-align: center;
}

/* Projects Slider */
.projects-slider-container {
    position: relative;
    overflow: hidden;
}

.projects-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.project-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.project-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-secondary);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-slide:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 20px 0;
}

.project-title {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.project-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tag {
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: var(--accent-light);
}

/* Portfolio Responsive */
@media (max-width: 900px) {
    .portfolio-bio-centered {
        padding: 32px 24px;
    }
    
    .portfolio-photo {
        width: 280px;
        height: 280px;
    }
    
    .project-slide {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .project-description {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .portfolio-bio-centered {
        padding: 24px 20px;
        margin-bottom: 48px;
    }
    
    .portfolio-photo {
        width: 200px;
        height: 200px;
        border-width: 3px;
    }
    
    .portfolio-bio-centered h3 {
        font-size: 1.375rem;
        margin-bottom: 10px;
    }
    
    .portfolio-bio-centered p {
        font-size: 0.9375rem;
    }
    
    .project-slide {
        padding: 24px 20px;
        gap: 24px;
    }
    
    .project-content {
        padding: 0;
    }
    
    .project-title {
        font-size: 1.375rem;
        margin-bottom: 12px;
    }
    
    .project-description {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }
    
    .project-tag {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .slider-dots {
        margin-top: 24px;
        gap: 10px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 380px) {
    .portfolio-bio-centered {
        padding: 20px 16px;
        margin-bottom: 40px;
    }
    
    .portfolio-photo {
        width: 160px;
        height: 160px;
        border-width: 2px;
    }
    
    .portfolio-bio-centered h3 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }
    
    .portfolio-bio-centered p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .project-slide {
        padding: 20px 16px;
        gap: 20px;
        border-radius: 20px;
    }
    
    .project-image {
        border-radius: 12px;
    }
    
    .project-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .project-description {
        font-size: 0.875rem;
        margin-bottom: 16px;
        line-height: 1.6;
    }
    
    .project-tags {
        gap: 8px;
    }
    
    .project-tag {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .slider-dots {
        margin-top: 20px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

/* ==========================================
   TIMELINE / PROCESS SECTION
   ========================================== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent-light));
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
}

.timeline-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 32px var(--accent-glow);
}

.timeline-content {
    flex: 1;
    padding-bottom: 24px;
}

.timeline-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.timeline-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
}

.timeline-duration svg {
    color: var(--accent);
}

@media (max-width: 640px) {
    .timeline::before {
        left: 16px;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .timeline-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .timeline-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 380px) {
    .timeline::before {
        left: 14px;
    }
    
    .timeline-item {
        gap: 16px;
    }
    
    .timeline-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .timeline-title {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    
    .timeline-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .timeline-duration {
        padding: 6px 12px;
        font-size: 11px;
        gap: 6px;
    }
    
    .timeline-duration svg {
        width: 12px;
        height: 12px;
    }
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto 48px;
}

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

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    background: none;
    border: none;
    font-family: 'Syne', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--accent);
}

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

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

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

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.faq-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* FAQ Responsive */
@media (max-width: 640px) {
    .faq-container {
        margin-bottom: 40px;
    }
    
    .faq-item {
        margin-bottom: 12px;
        border-radius: 14px;
    }
    
    .faq-question {
        padding: 20px 18px;
        font-size: 1rem;
        gap: 12px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 20px;
    }
    
    .faq-answer p {
        font-size: 0.9375rem;
    }
    
    .faq-cta {
        padding: 32px 24px;
    }
    
    .faq-cta p {
        font-size: 1rem;
        margin-bottom: 16px;
    }
}

@media (max-width: 380px) {
    .faq-container {
        margin-bottom: 32px;
    }
    
    .faq-item {
        margin-bottom: 10px;
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 16px 14px;
        font-size: 0.9375rem;
        gap: 10px;
        line-height: 1.4;
    }
    
    .faq-icon {
        width: 18px;
        height: 18px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 14px 16px;
    }
    
    .faq-answer p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .faq-cta {
        padding: 28px 20px;
        border-radius: 16px;
    }
    
    .faq-cta p {
        font-size: 0.9375rem;
        margin-bottom: 14px;
        line-height: 1.5;
    }
}

/* ==========================================
   CONTACT FORM SECTION
   ========================================== */
.form-section {
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 100%);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.form-intro {
    position: sticky;
    top: 100px;
}

.form-title {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-subtitle {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.form-benefit svg {
    flex-shrink: 0;
    color: var(--success);
}

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

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

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

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

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control {
    cursor: pointer;
}

.form-success {
    display: none;
    text-align: center;
    padding: 48px 32px;
}

.form-success.show {
    display: block;
}

.form-content.hidden {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--success), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-icon svg {
    color: white;
}

.form-success h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

@media (max-width: 900px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-intro {
        position: static;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .form-wrapper {
        gap: 24px;
    }
    
    .form-intro {
        text-align: center;
    }
    
    .form-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .form-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }
    
    .form-benefits {
        gap: 12px;
    }
    
    .form-benefit {
        font-size: 13px;
        gap: 10px;
    }
    
    .form-content {
        padding: 24px 20px;
    }
    
    .lead-form {
        gap: 16px;
    }
    
    .form-label {
        font-size: 13px;
    }
    
    .form-control {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .form-success {
        padding: 40px 24px;
    }
    
    .success-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .form-success h3 {
        font-size: 1.375rem;
        margin-bottom: 12px;
    }
    
    .form-success p {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 380px) {
    .form-wrapper {
        gap: 20px;
    }
    
    .form-title {
        font-size: 1.375rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .form-subtitle {
        font-size: 0.875rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .form-benefits {
        gap: 10px;
    }
    
    .form-benefit {
        font-size: 12px;
        gap: 8px;
    }
    
    .form-benefit svg {
        width: 16px;
        height: 16px;
    }
    
    .form-content {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .lead-form {
        gap: 14px;
    }
    
    .form-label {
        font-size: 12px;
    }
    
    .form-control {
        padding: 11px 12px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    .btn.btn-block {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .form-success {
        padding: 32px 20px;
    }
    
    .success-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .success-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .form-success h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .form-success p {
        font-size: 0.875rem;
        margin-bottom: 16px;
        line-height: 1.6;
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.footer-column-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-menu,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a,
.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu a:hover,
.footer-contact a:hover {
    color: var(--accent-light);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--accent);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-copy {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-copy strong {
    color: var(--text-primary);
}

.footer-validity {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-validity svg {
    color: var(--warning);
}

.footer-credits {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 0 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

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

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ==========================================
   LOADING STATES
   ========================================== */
.btn.loading {
    pointer-events: none;
    opacity: 0.6;
}

.btn.loading .btn-text {
    opacity: 0.5;
}

.btn.loading .btn-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Logo styles */
.nav-logo-img,
.footer-logo-img {
    height: 40px;
    width: auto;
}

.project-slide {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-slide:hover {
    border-color: var(--accent);
    transform: scale(1.01);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(99, 102, 241, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-slide:hover .project-overlay {
    opacity: 1;
}

.project-overlay svg {
    color: white;
}

/* Hero centered variations */
.hero-buttons-centered {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

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

.hero-stats-centered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .btn-lg {
        width: 100%;
        padding: 16px 32px;
    }
    
    .hero-stats-centered {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==========================================
   TIMELINE / PROCESS SECTION
   ========================================== */
.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 80px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent-light));
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -80px;
    top: 0;
}

.timeline-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 32px var(--accent-glow);
    position: relative;
    z-index: 2;
}

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

.timeline-content:hover {
    border-color: var(--accent);
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.timeline-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.timeline-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.timeline-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    font-size: 14px;
    color: var(--accent-light);
    font-weight: 500;
}

.timeline-duration svg {
    flex-shrink: 0;
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .timeline-container {
        padding-left: 60px;
    }
    
    .timeline-container::before {
        left: 23px;
    }
    
    .timeline-marker {
        left: -60px;
    }
    
    .timeline-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .timeline-content {
        padding: 24px;
    }
    
    .timeline-title {
        font-size: 1.25rem;
    }
    
    .timeline-description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .timeline-container {
        padding-left: 50px;
    }
    
    .timeline-container::before {
        left: 19px;
    }
    
    .timeline-marker {
        left: -50px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .timeline-item {
        margin-bottom: 40px;
    }
}
