:root {
    --primary: #65C29E;
    --primary-dark: #4FA885;
    --black: #0A0A0A;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-400: #A3A3A3;
    --gray-600: #525252;
    --gray-900: #171717;
    
    --font-main: "Aeonik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --radius-sm: 12px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-main);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--black);
}

h1 { font-size: clamp(2.5rem, 7vw, 6.5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 0.75rem; }

p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    color: var(--gray-600);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: 98%;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 50px);
}

/* BUTTONS - Bold & Modern */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.btn-hero {
    padding: 12px 28px;
    font-size: 0.9375rem;
    background: var(--primary);
    color: var(--black);
}

.btn-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(101,194,158,0.3);
}

.btn-hero svg {
    transition: transform 0.3s ease;
}

.btn-hero:hover svg {
    transform: translateX(4px);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    border: none;
    padding: 12px 28px;
    font-weight: 500;
    font-size: 0.9375rem;
}

.btn-ghost:hover {
    color: var(--black);
    background: var(--gray-50);
}

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

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}

.btn-accent {
    background: var(--primary);
    color: var(--black);
}

.btn-accent:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(101,194,158,0.3);
}

.btn-lg { padding: 24px 48px; font-size: 1.25rem; }
.btn-block { width: 100%; }

/* TOP BAR - Minimal & Refined */
.top-bar {
    background: var(--black);
    color: var(--gray-400);
    padding: 10px 0;
    font-size: 0.8125rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.top-bar a:hover {
    color: var(--primary);
}

/* HEADER - Minimal Luxury Design */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px clamp(20px, 5vw, 50px);
    gap: 64px;
    flex-wrap: nowrap;
}

.logo {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.7;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.nav-links {
    display: none;
    gap: 48px;
    font-weight: 400;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--black);
}

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

header .btn {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: -0.01em;
    border-radius: 8px;
    background: var(--black);
    color: var(--white);
    border: none;
    transition: all 0.2s ease;
    min-width: fit-content;
    width: fit-content;
}

header .btn:hover {
    background: var(--gray-900);
    transform: none;
}

header .btn-accent {
    background: var(--primary);
    color: var(--black);
    box-shadow: none;
}

header .btn-accent:hover {
    background: var(--primary-dark);
    box-shadow: none;
    transform: none;
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-btn-secondary {
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--black);
    padding: 12px 24px;
    font-size: 0.9375rem;
}

.header-btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

@media(min-width: 768px) {
    .nav-links { 
        display: flex; 
    }
}

@media(max-width: 1023px) {
    .header-inner {
        gap: 20px;
        padding: 16px 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .header-cta-group {
        gap: 8px;
    }
    
    .header-btn-secondary {
        padding: 10px 18px;
        font-size: 0.875rem;
    }
}

@media(max-width: 767px) {
    header {
        position: static;
        padding: 0;
    }
    
    .header-inner {
        padding: 12px 0;
        gap: 12px;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        flex-shrink: 0;
        min-width: auto;
    }
    
    .logo img {
        height: 50px;
        width: auto;
    }
    
    .header-cta-group {
        gap: 6px;
    }
    
    header .btn {
        padding: 10px 16px;
        font-size: 0.8125rem;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .header-btn-secondary {
        padding: 10px 14px;
        font-size: 0.75rem;
    }
}

@media(max-width: 480px) {
    .header-inner {
        padding: 10px 0;
        gap: 8px;
    }
    
    .logo img {
        height: 22px;
    }
    
    .header-cta-group {
        gap: 4px;
    }
    
    header .btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .header-btn-secondary {
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

@media(max-width: 360px) {
    .header-inner {
        gap: 6px;
        padding: 8px 0;
    }
    
    .logo img {
        height: 20px;
    }
    
    header .btn {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
}

/* ============================================
   HERO SECTION - COMPLETELY REDESIGNED
   ============================================ */

.hero {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding: 40px 0 80px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(101,194,158,0.06) 0%, transparent 70%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* LEFT SIDE */
.hero-left {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #DC2626;
    margin-bottom: 24px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.hero-title {
    font-size: clamp(2.75rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.highlight-text {
    position: relative;
    color: var(--primary-dark);
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -4px;
    right: -4px;
    height: 16px;
    background: rgba(101,194,158,0.2);
    z-index: -1;
    transform: skewX(-12deg);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

.proof-avatars {
    display: flex;
    margin-left: -8px;
}

.proof-avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    object-fit: cover;
}

.proof-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proof-stars {
    color: #FFA500;
    font-size: 1rem;
    letter-spacing: 2px;
}

.proof-text span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* RIGHT SIDE - Gallery */
.hero-right {
    position: relative;
    height: 600px;
}

.hero-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.gallery-large {
    grid-row: span 2;
    animation: fadeInScale 0.8s ease-out;
}

.gallery-small {
    animation: fadeInScale 0.8s ease-out;
}

.gallery-small:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-small:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-large img {
    object-fit: cover;
    object-position: center top;
}

.gallery-small img {
    object-fit: cover;
    object-position: center;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-tag {
    background: var(--white);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 10;
}

.stat-1 {
    top: 10%;
    left: -60px;
    animation: floatStat 6s ease-in-out infinite;
}

.stat-2 {
    top: 50%;
    right: -40px;
    animation: floatStat 6s ease-in-out infinite 2s;
}

.stat-3 {
    bottom: 10%;
    left: -40px;
    animation: floatStat 6s ease-in-out infinite 4s;
}

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

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Responsive Hero */
@media(max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 40px 0 60px;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-left {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-social-proof {
        justify-content: center;
    }
    
    .hero-right {
        height: 500px;
    }
    
    .floating-stat {
        display: none;
    }
}

@media(max-width: 640px) {
    .hero {
        padding: 30px 0 40px;
    }
    
    .hero-content-wrapper {
        gap: 32px;
    }
    
    .hero-badge {
        margin-bottom: 20px;
    }
    
    .hero-title {
        margin-bottom: 16px;
    }
    
    .hero-description {
        margin-bottom: 24px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        margin-bottom: 24px;
    }
    
    .hero-social-proof {
        padding-top: 20px;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-right {
        height: 400px;
    }
    
    .hero-gallery {
        gap: 12px;
    }
}

/* FLOATING CARDS - Trust Signals */
.floating-cards {
    padding: 120px 0;
    background: var(--black);
    position: relative;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.card {
    background: rgba(255,255,255,0.05);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    text-align: center;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(101,194,158,0.12), 0 2px 4px rgba(101,194,158,0.08);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--white);
}

.card p {
    font-size: 1rem;
    color: var(--gray-400);
}

@media(max-width: 767px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .card {
        padding: 32px 20px;
    }
    
    .card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .card h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .card p {
        font-size: 0.9rem;
    }
}

@media(max-width: 480px) {
    .floating-cards {
        padding: 80px 0;
    }
    
    .cards-grid {
        gap: 12px;
    }
    
    .card {
        padding: 24px 16px;
    }
}

/* SECTION HEADER - Bold Typography */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    margin-bottom: 24px;
}

.section-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* PRICING - Modern Cards */
.pricing-section {
    padding: 120px 0;
    overflow: visible;
}

.pricing-grid {
    padding-top: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    transition: var(--transition);
    overflow: visible;
}



.pricing-card.popular {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    color: var(--white);
    border-color: var(--primary);
    border-width: 2px;
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(101,194,158,0.3);
}

.pricing-card.popular::before {
    transform: scaleX(1);
}

.pricing-card.popular h3,
.pricing-card.popular .price,
.pricing-card.popular .timeline,
.pricing-card.popular p {
    color: var(--white);
}

.pricing-card.popular .features li {
    color: var(--gray-100);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--black);
    padding: 8px 24px;
    border-radius: 24px 24px 6px 6px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 3px 12px rgba(101,194,158,0.25);
    z-index: 2;
    white-space: nowrap;
}


.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.price {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 24px 0 16px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card.popular .price {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 1rem;
}

.features {
    margin: 32px 0;
}

.features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
}

.features svg {
    min-width: 20px;
    height: 20px;
    color: var(--primary);
    margin-top: 2px;
}

.features li.excluded {
    opacity: 0.4;
    text-decoration: line-through;
}

/* COMPARISON TABLE - Clean Design */
.comparison-section {
    padding: 120px 0;
    background: var(--gray-50);
}

.comparison-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-row:first-child {
    background: var(--black);
    color: var(--white);
    font-weight: 700;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-col {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-col:first-child {
    justify-content: flex-start;
    font-weight: 600;
}

.comparison-col.highlight {
    background: rgba(101,194,158,0.1);
    font-weight: 700;
}

@media(max-width: 1024px) {
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    
    .comparison-col {
        padding: 20px 16px;
        font-size: 0.9rem;
    }
}

@media(max-width: 768px) {
    .comparison-section {
        padding: 80px 0;
    }
    
    .comparison-section .container {
        padding: 0 20px;
    }
    
    .comparison-table {
        border-radius: var(--radius-sm);
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--gray-400) transparent;
    }
    
    .comparison-table::-webkit-scrollbar {
        height: 8px;
    }
    
    .comparison-table::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .comparison-table::-webkit-scrollbar-thumb {
        background: var(--gray-400);
        border-radius: 4px;
    }
    
    .comparison-row {
        grid-template-columns: 180px 140px 140px 160px;
        min-width: 620px;
    }
    
    .comparison-col {
        padding: 16px 12px;
        font-size: 0.875rem;
        white-space: nowrap;
    }
    
    .comparison-col:first-child {
        position: sticky;
        left: 0;
        background: var(--white);
        z-index: 2;
        box-shadow: 2px 0 4px rgba(0,0,0,0.05);
    }
    
    .comparison-row:first-child .comparison-col:first-child {
        background: var(--black);
        color: var(--white);
    }
    
    .comparison-col.highlight {
        background: rgba(101,194,158,0.1);
    }
    
    .comparison-row:first-child .comparison-col.highlight {
        background: rgba(101,194,158,0.2);
    }
}

/* LOGO SHOWCASE SECTION */
.logo-showcase-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    align-items: center;
    justify-items: center;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    width: 100%;
    height: 120px;
    border: 1px solid var(--gray-100);
}

.logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.logo-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media(max-width: 1024px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media(max-width: 768px) {
    .logo-showcase-section {
        padding: 80px 0;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 40px;
    }
    
    .logo-item {
        height: 100px;
        padding: 24px;
    }
    
    .logo-item img {
        max-height: 60px;
    }
}

@media(max-width: 480px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .logo-item {
        height: 90px;
        padding: 20px;
    }
    
    .logo-item img {
        max-height: 50px;
    }
}

/* RESULTS SECTION */
.results-section {
    padding-top: 120px;
    background: var(--white);
}

.results-gallery {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 60px;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.result-screenshot {
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--gray-100);
}

.result-screenshot:nth-child(1) {
    align-self: flex-start;
}

.result-screenshot:nth-child(2) {
    align-self: flex-end;
}

.result-screenshot:nth-child(3) {
    align-self: center;
}

.result-screenshot:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.result-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media(max-width: 1024px) {
    .results-gallery {
        gap: 40px;
        max-width: 100%;
    }
    
    .result-screenshot {
        max-width: 100%;
    }
    
    .result-screenshot:nth-child(1),
    .result-screenshot:nth-child(2),
    .result-screenshot:nth-child(3) {
        align-self: center;
    }
}

@media(max-width: 768px) {
    .results-section {
        padding: 80px 0;
    }
    
    .results-gallery {
        flex-direction: column;
        gap: 24px;
        margin-top: 40px;
    }
    
    .result-screenshot:nth-child(1),
    .result-screenshot:nth-child(2),
    .result-screenshot:nth-child(3) {
        margin-top: 0;
    }
    
    .result-screenshot {
        border-radius: var(--radius-sm);
    }
}

/* PROCESS - Horizontal Timeline */
.process-section {
    padding: 120px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    position: relative;
}

@media(max-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media(max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.step {
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-4px);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(101,194,158,0.3);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0.2;
    z-index: -1;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(101,194,158,0.4);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.step p {
    font-size: 1rem;
    color: var(--gray-600);
}

/* TESTIMONIALS - Card Grid */
.testimonials-section {
    padding: 120px 0;
    background: var(--black);
}

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

.testimonial-card {
    background: var(--gray-900);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.testimonial-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 60px rgba(101,194,158,0.2);
    position: relative;
}

.testimonial-card.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    z-index: -1;
    opacity: 0.1;
}

.quote-mark {
    font-size: 4rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--white);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    color: #FFA500;
}

.testimonial-result {
    background: rgba(101,194,158,0.1);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: 24px;
    color: var(--gray-400);
}

.testimonial-result strong {
    color: var(--primary);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* UPDATED CLIENT AVATAR FOR IMAGES */
.client-avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
}

.client-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.client-name {
    font-weight: 700;
    color: var(--white);
}

.client-title {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* FORM SECTION - Modern & Clean */
.form-section {
    padding: 120px 0;
    background: var(--black);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 90px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}



.form-progress {
    height: 6px;
    background: var(--gray-100);
    border-radius: 3px;
    margin-bottom: 40px;
    overflow: hidden;
}

.form-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    width: 0%;
    transition: width 0.3s ease;
}

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

@media(min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .full-width {
        grid-column: span 2;
    }
}

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

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-900);
}

.required {
    color: var(--primary);
}

.form-control {
    padding: 16px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(101,194,158,0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.875rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 16px;
}

/* FAQ - Minimal Accordion */
.faq-section {
    padding: 120px 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: transparent;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 0;
    overflow: hidden;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 24px 0;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
    color: var(--black);
}

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

.faq-question span {
    font-size: 1.25rem;
    color: var(--gray-400);
    font-weight: 300;
    transition: transform 0.2s ease, color 0.2s ease;
    line-height: 1;
}

.faq-item.active .faq-question {
    color: var(--black);
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
    color: var(--black);
}

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

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

.faq-answer-content {
    padding: 0 0 24px;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* CTA SECTION - Wow Design */
.cta-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(101,194,158,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaFloat 20s ease-in-out infinite;
}

@keyframes ctaFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(101,194,158,0.1);
    border: 1px solid rgba(101,194,158,0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 32px;
}

.cta-section h2 {
    color: var(--black);
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.cta-subtitle {
    color: var(--gray-600);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-box-content h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: var(--black);
    font-weight: 700;
}

.cta-box-content > p {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.btn-cta-large {
    padding: 18px 40px;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-large svg {
    transition: transform 0.3s ease;
}

.btn-cta-large:hover svg {
    transform: translateX(4px);
}

.cta-note {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin: 0;
}

@media(max-width: 768px) {
    .cta-section {
        padding: 100px 0;
    }
    
    .cta-box {
        padding: 40px 32px;
    }
    
    .cta-subtitle {
        font-size: 1.125rem;
        margin-bottom: 40px;
    }
    
    .btn-cta-large {
        width: 100%;
        justify-content: center;
    }
}

/* FOOTER */
footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 80px 0 40px;
    font-size: 0.875rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-main {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 8px;
    transition: opacity 0.2s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo img {
    height: 48px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin: 0;
}

.footer-email {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
    margin-top: 8px;
}

.footer-email:hover {
    color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
    opacity: 0.7;
}

.copyright {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
    opacity: 0.7;
}

@media(max-width: 768px) {
    footer {
        padding: 60px 0 32px;
    }
    
    .footer-content {
        gap: 32px;
    }
    
    .footer-bottom {
        padding-top: 24px;
    }
}

/* STICKY CTA - Mobile */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 99;
    display: flex;
    gap: 12px;
}

@media(min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

/* EXIT POPUP */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.exit-popup.active {
    opacity: 1;
    pointer-events: all;
}

.exit-popup-content {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-400);
    transition: var(--transition);
}

.exit-popup-close:hover {
    color: var(--black);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ADDONS */
.addons {
    margin-top: 60px;
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.addons h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.addon-list {
    display: grid;
    gap: 16px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-item span:last-child {
    font-weight: 700;
    color: var(--primary);
}

/* PORTFOLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.project-card {
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

/* UPDATED PROJECT IMAGE FOR REAL IMAGES */
.project-img-real {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img-real {
    transform: scale(1.05);
}

.project-img {
    height: 300px;
    background: linear-gradient(135deg, rgba(101,194,158,0.1) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-400);
}

.project-info {
    padding: 32px;
}

.project-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--white);
}

.project-result {
    color: var(--gray-400);
    font-size: 1rem;
}