/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a1a;
    --secondary: #2a2a2a;
    --accent: #ff6b35;
    --accent-light: #ff8c61;
    --accent-dark: #e54d1e;
    --text: #1a1a1a;
    --text-light: #666;
    --text-lighter: #999;
    --bg: #ffffff;
    --bg-dark: #0f0f0f;
    --bg-light: #f8f9fa;
    --bg-gray: #f5f5f5;
    --border: #e0e0e0;
    --gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-hover: 0 16px 48px rgba(0,0,0,0.15);
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

section {
    padding: var(--spacing-xxl) 0;
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 100px 0;
    }
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
    flex-shrink: 0;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo:hover {
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.4));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: clamp(13px, 1.5vw, 14px);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links .cta-button {
    background: var(--accent);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-links .cta-button::after {
    display: none;
}

.nav-links .cta-button:hover {
    background: var(--accent-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 968px) {
    .logo {
        height: 45px;
        padding: 6px 10px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.4s ease;
        gap: 0;
    }
    
    .nav-links.active {
        max-height: 500px;
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-links a {
        display: block;
        padding: var(--spacing-sm) 0;
        font-size: 16px;
    }
    
    .nav-links .cta-button {
        width: 100%;
        margin-top: var(--spacing-sm);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    color: white;
    padding: 100px var(--spacing-md) var(--spacing-xxl);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, var(--accent) 2px, var(--accent) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, var(--accent) 2px, var(--accent) 4px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid var(--accent);
    border-radius: 50px;
    font-size: clamp(10px, 2vw, 12px);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--accent);
}

.hero-title {
    font-size: clamp(28px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(14px, 3vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    font-weight: 300;
    line-height: 1.6;
    padding: 0 var(--spacing-sm);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
    padding: var(--spacing-md);
}

.stat-number {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: clamp(11px, 2vw, 14px);
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.btn {
    display: inline-block;
    padding: clamp(14px, 2vw, 18px) clamp(28px, 4vw, 40px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 2vw, 16px);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(20px); opacity: 1; }
}

@media (max-width: 640px) {
    .hero {
        min-height: 100vh;
        padding: 80px var(--spacing-sm) var(--spacing-lg);
    }
    
    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: var(--spacing-md);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .btn {
        width: 100%;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xxl);
    padding: 0 var(--spacing-sm);
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-gray);
    border-radius: 50px;
    font-size: clamp(10px, 2vw, 12px);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
    color: var(--primary);
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(15px, 2.5vw, 18px);
    color: var(--text-light);
    line-height: 1.7;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    background: var(--bg-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
}

.about-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: clamp(40px, 6vw, 48px);
    margin-bottom: var(--spacing-md);
}

.about-card h3 {
    font-size: clamp(18px, 3vw, 22px);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    line-height: 1.3;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: clamp(14px, 2vw, 16px);
}

.guarantee-box {
    background: var(--gradient-dark);
    padding: var(--spacing-xl);
    border-radius: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: start;
    box-shadow: var(--shadow-lg);
}

.guarantee-icon {
    font-size: clamp(48px, 8vw, 60px);
    line-height: 1;
}

.guarantee-content h3 {
    font-size: clamp(22px, 4vw, 28px);
    margin-bottom: var(--spacing-sm);
    color: var(--accent);
    line-height: 1.3;
}

.guarantee-content p {
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(14px, 2vw, 16px);
}

.guarantee-note {
    font-size: clamp(12px, 2vw, 14px);
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

@media (min-width: 768px) {
    .guarantee-box {
        flex-direction: row;
        padding: var(--spacing-xxl);
        gap: var(--spacing-xl);
    }
}

/* ==================== PHILOSOPHY SECTION ==================== */
.philosophy {
    background: var(--primary);
    color: white;
}

.philosophy-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.philosophy-content h2 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.philosophy-lead {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--accent);
    margin-bottom: var(--spacing-xxl);
    font-weight: 300;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.philosophy-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.4);
}

.phi-number {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 800;
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
}

.philosophy-item h4 {
    font-size: clamp(15px, 2.5vw, 18px);
    font-weight: 600;
    line-height: 1.4;
}

.philosophy-tagline {
    font-size: clamp(16px, 3vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--spacing-xl);
    font-style: italic;
}

/* ==================== PLANS SECTION ==================== */
.plans {
    background: var(--bg);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    align-items: start;
}

.plan-card {
    background: white;
    border-radius: 25px;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.plan-card.featured {
    border: 2px solid var(--accent);
}

.featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: clamp(10px, 2vw, 12px);
    font-weight: 700;
    letter-spacing: 1px;
}

.plan-badge {
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.plan-card.diamond .plan-badge {
    color: var(--accent);
}

.plan-price {
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.plan-price .currency {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
}

.plan-price .amount {
    font-size: clamp(44px, 6vw, 56px);
    font-weight: 800;
    line-height: 1;
}

.plan-price .period {
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--text-light);
    font-weight: 400;
}

.plan-couple {
    font-size: clamp(13px, 2vw, 14px);
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.plan-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border);
    font-size: clamp(14px, 2vw, 15px);
}

.plan-section {
    margin-bottom: var(--spacing-lg);
}

.plan-section h4 {
    font-size: clamp(15px, 2.5vw, 16px);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.plan-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.plan-features li {
    padding: 10px 0;
    color: var(--text);
    font-size: clamp(13px, 2vw, 15px);
    line-height: 1.6;
}

.plan-features li:before {
    content: '✓ ';
    color: var(--accent);
    font-weight: 700;
    margin-right: 8px;
}

.btn-plan {
    width: 100%;
    text-align: center;
    margin-top: var(--spacing-md);
    background: var(--primary);
    color: white;
}

.btn-plan:hover {
    background: var(--accent);
    color: white;
}

.plan-card.featured .btn-plan {
    background: var(--accent);
    color: white;
}

.plan-card.featured .btn-plan:hover {
    background: var(--accent-dark);
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .plan-card {
        padding: var(--spacing-lg);
    }
}

/* ==================== METHOD SECTION ==================== */
.method {
    background: var(--bg-gray);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
}

.method-step {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
}

.method-step:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    font-size: clamp(40px, 6vw, 48px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--spacing-md);
    opacity: 0.3;
}

.method-step h3 {
    font-size: clamp(17px, 3vw, 20px);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.method-step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: clamp(14px, 2vw, 15px);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    background: var(--bg-gray);
}

.before-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.before-img,
.after-img {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.before-img {
    border-right: 2px solid white;
}

.before-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

.img-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.before-img .img-label {
    background: rgba(255, 107, 53, 0.9);
}

.after-img .img-label {
    background: rgba(34, 197, 94, 0.9);
}

.testimonial-card:hover .before-after img {
    transform: scale(1.05);
}

.testimonial-content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rating {
    color: var(--accent);
    font-size: clamp(18px, 3vw, 20px);
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-size: clamp(14px, 2vw, 15px);
    line-height: 1.8;
    color: var(--text);
    margin-bottom: var(--spacing-md);
    font-style: italic;
    flex: 1;
}

.testimonial-author h4 {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: clamp(13px, 2vw, 14px);
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.testimonial-results {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.result-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50px;
    font-size: clamp(11px, 2vw, 12px);
    font-weight: 600;
    color: var(--accent);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* ==================== WHY CHOOSE SECTION ==================== */
.why-choose {
    background: var(--bg-gray);
    text-align: center;
}

.why-choose h2 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    margin-bottom: var(--spacing-xxl);
    padding: 0 var(--spacing-sm);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.why-item {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.why-icon {
    font-size: clamp(40px, 6vw, 48px);
    margin-bottom: var(--spacing-md);
}

.why-item h3 {
    font-size: clamp(17px, 3vw, 20px);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: clamp(14px, 2vw, 15px);
}

.why-tagline {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    line-height: 1.6;
    color: var(--primary);
    padding: 0 var(--spacing-sm);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: var(--bg-dark);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.contact-lead {
    font-size: clamp(16px, 2.5vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.contact-lead strong {
    color: var(--accent);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: start;
}

.contact-icon {
    font-size: clamp(24px, 4vw, 28px);
    line-height: 1;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--accent);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(13px, 2vw, 15px);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-item a[href^="tel"] {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-decoration-style: dotted;
}

.contact-item a[href^="tel"]:hover {
    color: white;
    text-decoration-style: solid;
}

.contact-cta {
    margin-top: var(--spacing-xl);
}

.btn-large {
    padding: clamp(16px, 3vw, 20px) clamp(36px, 6vw, 50px);
    font-size: clamp(14px, 2vw, 16px);
}

.contact-form-wrapper {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.contact-form > p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    font-size: clamp(14px, 2vw, 15px);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: clamp(12px, 2vw, 15px) clamp(16px, 3vw, 20px);
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: clamp(14px, 2vw, 15px);
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-gray);
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
}

.btn-full {
    width: 100%;
    margin-top: var(--spacing-sm);
}

.form-note {
    text-align: center;
    margin-top: var(--spacing-md);
    font-size: clamp(13px, 2vw, 14px);
    color: var(--text-light);
}

.form-note a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xxl);
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary);
    color: white;
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand .footer-logo {
    height: 80px;
    margin-bottom: var(--spacing-md);
    padding: 12px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-brand .footer-logo:hover {
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.footer-brand .footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(255, 107, 53, 0.3));
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: clamp(14px, 2vw, 15px);
}

.footer-tagline {
    color: var(--accent);
    font-weight: 600;
    margin-top: var(--spacing-sm);
}

.footer-links h4,
.footer-contact h4 {
    font-size: clamp(15px, 2.5vw, 16px);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(13px, 2vw, 14px);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
    font-size: clamp(13px, 2vw, 14px);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact a[href^="tel"] {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-decoration-style: dotted;
}

.footer-contact a[href^="tel"]:hover {
    color: white;
    text-decoration-style: solid;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(12px, 2vw, 14px);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

/* Smooth transitions for all interactive elements */
a, button, .card, .plan-card, .testimonial-card, .about-card, .method-step, .why-item {
    transition: all 0.3s ease;
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

/* ==================== PRINT STYLES ==================== */
@media print {
    .navbar,
    .mobile-menu-toggle,
    .scroll-indicator,
    .btn,
    .contact-form {
        display: none;
    }
}
