/* ========================================
   HOME PAGE STYLES - REDESIGNED
   ======================================== */

/* Hero Section - Deep Space with Purple/Cyan Glow */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0f172a 100%);
    padding: 120px 0 80px;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(168, 85, 247, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 2%) rotate(1deg); }
    66% { transform: translate(-1%, 1%) rotate(-1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 9999px;
    color: #34d399;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px #34d399;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.text-gradient {
    background: linear-gradient(135deg, #c084fc 0%, #22d3ee 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4);
    border: none;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(168, 85, 247, 0.5);
}

.hero-actions .btn-secondary {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    transition: all 0.3s ease;
}

.hero-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
}

.hero-visual-3d {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 1;
    opacity: 0.9;
}

.hero-3d-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

/* ========================================
   BASE SECTION STYLES
   ======================================== */

.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   PAIN POINTS SECTION - Warm Amber/Dark
   ======================================== */

.pain-points-section {
    background: 
        radial-gradient(ellipse at 0% 100%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #1c1917 0%, #0c0a09 100%);
}

.pain-points-section .section-label {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fbbf24;
}

.pain-points-section .section-title {
    color: #fafaf9;
}

.pain-points-section .section-description {
    color: rgba(250, 250, 249, 0.7);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.pain-point-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pain-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pain-point-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 30px rgba(245, 158, 11, 0.1);
}

.pain-point-card:hover::before {
    opacity: 1;
}

.pain-point-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.pain-point-icon svg {
    width: 28px;
    height: 28px;
    color: #fbbf24;
}

.pain-point-title {
    font-size: 1.25rem;
    color: #fafaf9;
    margin-bottom: 0.75rem;
}

.pain-point-text {
    color: rgba(250, 250, 249, 0.65);
    line-height: 1.7;
}

/* ========================================
   SERVICES SECTION - Emerald/Green Tech
   ======================================== */

.services-section {
    background: 
        radial-gradient(ellipse at 100% 100%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 0%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #064e3b 0%, #022c22 100%);
}

.services-section .section-label {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.services-section .section-title {
    color: #ecfdf5;
}

.services-section .section-description {
    color: rgba(236, 253, 245, 0.7);
}

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

.service-card-3d {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #06b6d4, #10b981);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.service-card-3d:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(16, 185, 129, 0.15);
}

.service-card-3d:hover::before {
    opacity: 1;
}

.service-icon-3d {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(6, 182, 212, 0.25) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.service-icon-3d svg {
    width: 32px;
    height: 32px;
    color: #34d399;
}

.service-title {
    font-size: 1.5rem;
    color: #ecfdf5;
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(236, 253, 245, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(236, 253, 245, 0.85);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.service-features li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #34d399;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #34d399;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
    color: #6ee7b7;
}

.service-link svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   PROCESS SECTION - Blue/Cyan Flow
   ======================================== */

.process-section {
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 0% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #0c4a6e 0%, #082f49 100%);
    position: relative;
}

.process-section .section-label {
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #22d3ee;
}

.process-section .section-title {
    color: #ecfeff;
}

.process-section .section-description {
    color: rgba(236, 254, 255, 0.7);
}

.process-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

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

.process-step-3d {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-3d:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 0 30px rgba(6, 182, 212, 0.15);
}

.process-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.875rem;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

.process-step-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.25) 0%, rgba(59, 130, 246, 0.25) 100%);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.process-step-icon svg {
    width: 32px;
    height: 32px;
    color: #22d3ee;
}

.process-step-title {
    font-size: 1.25rem;
    color: #ecfeff;
    margin-bottom: 0.75rem;
}

.process-step-text {
    color: rgba(236, 254, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ========================================
   CASES SECTION - Purple/Pink Creative
   ======================================== */

.cases-section {
    background: 
        radial-gradient(ellipse at 100% 0%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #3b0764 0%, #1e1b4b 100%);
}

.cases-section .section-label {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #c084fc;
}

.cases-section .section-title {
    color: #faf5ff;
}

.cases-section .section-description {
    color: rgba(250, 245, 255, 0.7);
}

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

.case-card-3d {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card-3d:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(168, 85, 247, 0.2);
}

.case-image-3d {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.case-image-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card-3d:hover .case-image-3d img {
    transform: scale(1.08);
}

.case-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.case-type {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.9) 0%, rgba(236, 72, 153, 0.9) 100%);
    border-radius: 9999px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.case-content {
    padding: 1.5rem;
}

.case-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.case-title a {
    color: #faf5ff;
    transition: color 0.3s ease;
}

.case-title a:hover {
    color: #c084fc;
}

.case-meta {
    margin-bottom: 1rem;
}

.case-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250, 245, 255, 0.6);
    font-size: 0.875rem;
}

.case-result-3d {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1rem;
}

.case-result-label {
    font-size: 0.75rem;
    color: rgba(250, 245, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.case-result-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #34d399;
}

/* ========================================
   TESTIMONIALS SECTION - Rose/Warm
   ======================================== */

.testimonials-section {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(244, 63, 94, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 0% 100%, rgba(251, 146, 60, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #4c0519 0%, #1c1917 100%);
}

.testimonials-section .section-label {
    background: rgba(244, 63, 94, 0.15);
    border: 1px solid rgba(244, 63, 94, 0.3);
    color: #fb7185;
}

.testimonials-section .section-title {
    color: #fff1f2;
}

.testimonials-section .section-description {
    color: rgba(255, 241, 242, 0.7);
}

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

.testimonial-card-3d {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 63, 94, 0.2);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-3d:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 63, 94, 0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 0 30px rgba(244, 63, 94, 0.1);
}

.testimonial-quote {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(244, 63, 94, 0.3);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    color: rgba(255, 241, 242, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(244, 63, 94, 0.4);
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.3);
}

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

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    color: #fff1f2;
}

.testimonial-role {
    font-size: 0.875rem;
    color: rgba(255, 241, 242, 0.6);
}

/* ========================================
   BLOG SECTION - Indigo/Deep Blue
   ======================================== */

.blog-section {
    background: 
        radial-gradient(ellipse at 100% 100%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #1e1b4b 0%, #0f172a 100%);
}

.blog-section .section-label {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #818cf8;
}

.blog-section .section-title {
    color: #eef2ff;
}

.blog-section .section-description {
    color: rgba(238, 242, 255, 0.7);
}

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

.blog-card-3d {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-3d:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(99, 102, 241, 0.15);
}

.blog-card-image-3d {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-3d:hover .blog-card-image-3d img {
    transform: scale(1.08);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
    border-radius: 9999px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(238, 242, 255, 0.5);
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.blog-card-title a {
    color: #eef2ff;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #818cf8;
}

.blog-card-excerpt {
    color: rgba(238, 242, 255, 0.65);
    line-height: 1.7;
}

/* ========================================
   CTA SECTION - Gold/Amber Premium
   ======================================== */

.cta-section {
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #451a03 0%, #78350f 50%, #451a03 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.cta-glow {
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(254, 243, 199, 0.85);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #451a03;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.4);
    border: none;
    transition: all 0.3s ease;
}

.cta-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.5);
}

.cta-actions .btn-secondary {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fef3c7;
    transition: all 0.3s ease;
}

.cta-actions .btn-secondary:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.5);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services-grid,
    .cases-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-visual-3d {
        display: none;
    }
}
