/* ==========================================
   POWER FIX — Full CSS (Light Theme)
   ========================================== */

/* Base Styles & Variables */
:root {
    /* Colors - Fresh Light Theme */
    --clr-bg: #FFFFFF;
    --clr-surface: #F0F7F4;
    --clr-surface-light: #F5FAFF;
    --clr-text: #1A2B3C;
    --clr-text-muted: #6B8299;
    
    /* Fresh Accents */
    --clr-primary: #2ECC71; /* Soft Green */
    --clr-secondary: #3498DB; /* Soft Blue */
    --clr-accent-1: #27AE60; /* Emerald Green */
    --clr-accent-2: #2980B9; /* Deep Sky Blue */
    
    /* Typography */
    --font-main: 'Inter', 'Zen Kaku Gothic New', sans-serif;
    --font-heading: 'Outfit', 'Inter', 'Zen Kaku Gothic New', sans-serif;
    
    /* Spacing & Layout */
    --section-pad: 7rem;
    --border-radius: 24px;
    --border-radius-sm: 14px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
    background-image: linear-gradient(rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.70)), url('images/bg_texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

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

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary), var(--clr-accent-1));
    z-index: 10000;
    transition: width 0.1s linear;
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* Typography Utilities */
.highlight {
    color: var(--clr-primary);
}

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

/* ===== HEADER & NAV ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition-normal);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(46, 204, 113, 0.08);
}

.header.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--clr-text);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    padding: 0.5rem 0;
    color: var(--clr-text);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    transition: var(--transition-normal);
    border-radius: 2px;
}

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

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

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--clr-text);
    position: absolute;
    border-radius: 3px;
    transition: var(--transition-normal);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 60px;
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: var(--font-main);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), #27AE60);
    color: #FFFFFF;
    box-shadow: 0 10px 40px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 15px 50px rgba(46, 204, 113, 0.45);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--clr-secondary), #2980B9);
    color: white;
    box-shadow: 0 10px 40px rgba(52, 152, 219, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 15px 50px rgba(52, 152, 219, 0.45);
}

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

.btn-outline:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 30px;
    font-weight: 800;
}

.btn-neon {
    background: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.1);
}

.btn-neon:hover {
    background: var(--clr-primary);
    color: #FFFFFF;
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.3);
    transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.25; }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== GENERAL SECTION STYLES ===== */
.section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(46, 204, 113, 0.08);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--clr-primary);
    margin-bottom: 1.2rem;
    border: 1px solid rgba(46, 204, 113, 0.15);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--clr-text);
}

.section-desc {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: 
        radial-gradient(ellipse at top right, rgba(52, 152, 219, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(46, 204, 113, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(52, 152, 219, 0.03) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-left: 4rem;
    padding-right: 4rem;
}

.hero-content {
    z-index: 2;
    max-width: 600px;
    flex-shrink: 0;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent-1));
    color: #FFFFFF;
    font-weight: 900;
    font-family: var(--font-heading);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    transform: rotate(-2deg);
    box-shadow: 4px 4px 0 var(--clr-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--clr-text);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.hero-note {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-weight: 700;
    margin-left: 1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(46, 204, 113, 0.15);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--clr-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-top: 0.3rem;
    font-weight: 700;
}

/* Hero Image */
.hero-image-container {
    position: relative;
    width: 500px;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(46, 204, 113, 0.15), 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.12);
    animation: float 6s ease-in-out infinite;
}

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

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: glow-pulse 4s ease-in-out infinite;
}

.shape-1 {
    width: 350px;
    height: 350px;
    background: var(--clr-primary);
    top: -5%;
    right: -10%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-2 {
    width: 280px;
    height: 280px;
    background: var(--clr-secondary);
    bottom: -5%;
    left: -10%;
    opacity: 0.1;
    animation: float 7s ease-in-out infinite 1s;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: linear-gradient(180deg, var(--clr-surface) 0%, var(--clr-bg) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #FFFFFF;
    border-radius: var(--border-radius);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(46, 204, 113, 0.2);
    box-shadow: 0 25px 50px rgba(46, 204, 113, 0.1);
}

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

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

.feature-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.feature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-card-img img {
    transform: scale(1.08);
}

.feature-card-body {
    padding: 2rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: var(--clr-surface);
}

.icon-cyan { box-shadow: inset 0 0 20px rgba(52, 152, 219, 0.1); }
.icon-pink { box-shadow: inset 0 0 20px rgba(52, 152, 219, 0.1); }
.icon-yellow { box-shadow: inset 0 0 20px rgba(46, 204, 113, 0.1); }


.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    color: var(--clr-text);
}

.feature-card p {
    color: var(--clr-text-muted);
    line-height: 1.8;
}

/* ===== MAKERS SECTION ===== */
.makers {
    background: var(--clr-bg);
    overflow: hidden;
}

.makers-marquee {
    overflow: hidden;
    margin-bottom: 3rem;
    padding: 1rem 0;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee 25s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.maker-item {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: rgba(26, 43, 60, 0.1);
    white-space: nowrap;
    padding: 0.5rem 1.5rem;
    transition: color 0.3s ease;
}

.maker-item:hover {
    color: var(--clr-primary);
}

.maker-item.accent-pink { color: rgba(52, 152, 219, 0.2); }
.maker-item.accent-pink:hover { color: var(--clr-secondary); }
.maker-item.accent-cyan { color: rgba(46, 204, 113, 0.2); }
.maker-item.accent-cyan:hover { color: var(--clr-accent-1); }
.maker-item.accent-purple { color: rgba(41, 128, 185, 0.2); }
.maker-item.accent-purple:hover { color: var(--clr-accent-2); }

.tools-showcase {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(46, 204, 113, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.tools-showcase img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.tools-showcase:hover img {
    transform: scale(1.03);
}

/* ===== FLOW SECTION ===== */
.flow {
    background-image: linear-gradient(rgba(240, 247, 244, 0.75), rgba(255, 255, 255, 0.75)), url('images/bg_repair.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    background: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    width: 100%;
    margin-bottom: 0;
    border: 1px solid rgba(46, 204, 113, 0.08);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.step-item:hover {
    border-color: rgba(46, 204, 113, 0.2);
    transform: translateX(10px);
    background: rgba(46, 204, 113, 0.02);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.08);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(46, 204, 113, 0.1);
    line-height: 1;
    margin-right: 2rem;
    transition: var(--transition-normal);
    min-width: 100px;
    text-align: center;
}

.step-item:hover .step-num {
    color: var(--clr-primary);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: var(--clr-text);
}

.step-content p {
    color: var(--clr-text-muted);
    line-height: 1.8;
}

.step-connector {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
}

.step-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--clr-primary), rgba(46, 204, 113, 0.1));
    opacity: 0.6;
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: linear-gradient(180deg, var(--clr-surface) 0%, var(--clr-bg) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(46, 204, 113, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition-bounce);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(46, 204, 113, 0.2);
    box-shadow: 0 20px 50px rgba(46, 204, 113, 0.1);
}

.price-header {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px dashed rgba(46, 204, 113, 0.15);
    color: var(--clr-primary);
}

.price-list {
    list-style: none;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(46, 204, 113, 0.06);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li span:first-child {
    color: var(--clr-text-muted);
}

.price-list li span:last-child {
    font-weight: 800;
    font-size: 1.15rem;
    font-family: var(--font-heading);
    color: var(--clr-text);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--clr-bg);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top center, rgba(52, 152, 219, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid rgba(52, 152, 219, 0.08);
    transition: var(--transition-bounce);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(52, 152, 219, 0.2);
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.08);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: serif;
    color: rgba(46, 204, 113, 0.08);
    line-height: 1;
}

.testimonial-stars {
    color: #F39C12;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.2rem;
}

.testimonial-text {
    color: var(--clr-text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--clr-text);
}

.author-role {
    color: var(--clr-text-muted);
    font-size: 0.8rem;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-surface) 100%);
}

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

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid rgba(46, 204, 113, 0.08);
    background: #FFFFFF;
    transition: var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: rgba(46, 204, 113, 0.15);
}

.faq-item.active {
    border-color: rgba(46, 204, 113, 0.3);
    background: rgba(46, 204, 113, 0.02);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-normal);
}

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

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clr-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--clr-text-muted);
    line-height: 1.9;
    font-size: 0.95rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(52, 152, 219, 0.04) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.contact-card {
    background: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--clr-text);
}

.contact-header p {
    color: var(--clr-text-muted);
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: var(--clr-text);
}

.required {
    background: var(--clr-secondary);
    color: white;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--clr-surface);
    border: 1px solid rgba(46, 204, 113, 0.12);
    border-radius: var(--border-radius-sm);
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-normal);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
    background: #FFFFFF;
}

textarea {
    resize: vertical;
}

/* File Upload */
.file-upload {
    border: 2px dashed rgba(46, 204, 113, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    background: var(--clr-surface);
}

.file-upload:hover {
    border-color: var(--clr-primary);
    background: rgba(46, 204, 113, 0.03);
}

.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.file-upload p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

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

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--clr-surface);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(46, 204, 113, 0.1);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--clr-text-muted);
    margin-top: 1rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    transition: var(--transition-normal);
    border: 1px solid rgba(46, 204, 113, 0.1);
    color: var(--clr-text-muted);
}

.social-link:hover {
    background: var(--clr-primary);
    color: #FFFFFF;
    border-color: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--clr-text);
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(46, 204, 113, 0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-desc {
        margin: 0 auto 2.5rem;
    }
    
    .hero-actions {
        align-items: center;
    }
    
    .hero-badge {
        margin: 0 auto 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-container {
        width: 400px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 4rem;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        backdrop-filter: blur(20px);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        text-align: center;
        font-size: 1.3rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero-image-container {
        width: 300px;
        height: 350px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .step-num {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }
    
    .maker-item {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-item {
        align-items: center;
    }
    
    .hero-image-container {
        width: 260px;
        height: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
