/* ============================================
   PECUNIA - Zaha Hadid Inspired Design
   Flowing Forms, Dynamic Geometry, Future Vision
   ============================================ */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Sleek Dark Blue Palette - Premium & Trustworthy */
    --primary-blue: #003D82;
    --primary-blue-dark: #002147;
    --primary-blue-light: #0052A3;
    --accent-cyan: #00A8CC;
    --accent-purple: #4338CA;
    --accent-teal: #0E7490;

    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #64748B;

    --bg-white: #FFFFFF;
    --bg-light: #F1F5F9;
    --bg-lighter: #F8FAFC;
    --bg-dark: #0F172A;
    --bg-dark-blue: #1E293B;

    --shadow-soft: 0 20px 60px rgba(0, 61, 130, 0.12);
    --shadow-dramatic: 0 30px 90px rgba(0, 61, 130, 0.2);
    --shadow-glow: 0 0 40px rgba(0, 168, 204, 0.25);

    /* Typography */
    --font-primary: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Futura', 'Helvetica Neue', sans-serif;
}

@keyframes flowIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInCurve {
    from {
        opacity: 0;
        transform: translateX(-60px) rotate(-3deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

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

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 229, 255, 0.6);
    }
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.7;
    background-color: var(--bg-white);
    font-size: 16px;
    overflow-x: hidden;
}

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

/* ============================================
   NAVIGATION - Floating, Futuristic
   ============================================ */

.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: none;
    padding: 20px 0;
    position: sticky;
    top: 20px;
    z-index: 1000;
    margin: 20px 40px;
    border-radius: 80px;
    box-shadow: var(--shadow-soft);
    animation: flowIn 0.8s ease-out;
}

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

.logo h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: skewX(-5deg);
    transition: all 0.4s ease;
}

.logo h1:hover {
    transform: skewX(0deg) scale(1.05);
    letter-spacing: 6px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 10px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--primary-blue));
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.nav-menu a.active {
    color: var(--primary-blue);
}

/* ============================================
   HERO - Dramatic, Flowing
   ============================================ */

.hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    color: white;
    padding: 180px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 168, 204, 0.12), transparent);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphShape 20s ease-in-out infinite, float 8s ease-in-out infinite;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 61, 130, 0.15), transparent);
    border-radius: 60% 40% 30% 70% / 40% 60% 50% 60%;
    animation: morphShape 15s ease-in-out infinite reverse, float 6s ease-in-out infinite;
    filter: blur(80px);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: flowIn 1s ease-out 0.3s both;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 200;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #FFFFFF 0%, #00A8CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flowIn 1.2s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: flowIn 1.2s ease-out 0.7s both;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    animation: flowIn 1.2s ease-out 0.9s both;
}

/* ============================================
   BUTTONS - Fluid, Dynamic
   ============================================ */

.btn {
    display: inline-block;
    padding: 18px 48px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-4px) scale(1.05);
}

.btn-primary-light {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    color: white;
    box-shadow: 0 10px 40px rgba(107, 78, 255, 0.3);
}

.btn-primary-light:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(107, 78, 255, 0.4);
}

/* ============================================
   SECTIONS - Flowing, Organic
   ============================================ */

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    animation: flowIn 0.8s ease-out;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 200;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

/* ============================================
   VALUE PROPOSITION - Geometric Cards
   ============================================ */

.value-prop {
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    padding: 160px 0;
}

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

.feature-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: flowIn 0.8s ease-out;
    animation-fill-mode: both;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--primary-blue), var(--accent-purple));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-12px) rotate(-1deg);
    box-shadow: var(--shadow-dramatic);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================
   HOW IT WORKS - Flowing Steps
   ============================================ */

.how-it-works {
    background: var(--bg-dark);
    color: white;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    padding: 160px 0;
}

.how-it-works .section-header h2 {
    background: linear-gradient(135deg, #FFFFFF, #00A8CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.step {
    text-align: center;
    position: relative;
    animation: flowIn 0.8s ease-out;
    animation-fill-mode: both;
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }

.step-number {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary-blue));
    color: white;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    font-size: 36px;
    font-weight: 300;
    line-height: 100px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-glow);
    animation: morphShape 8s ease-in-out infinite;
    transition: all 0.4s ease;
}

.step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
}

.step h3 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 16px;
    color: white;
    letter-spacing: -0.5px;
}

.step p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================
   CTA SECTION - Bold, Dynamic
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, #003D82, #1E293B);
    color: white;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    padding: 160px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphShape 15s ease-in-out infinite, float 10s ease-in-out infinite;
}

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

.cta-content h2 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.8;
}

/* ============================================
   FOOTER - Minimal, Modern
   ============================================ */

.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 1px;
    color: var(--accent-cyan);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-weight: 300;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-section a:hover {
    color: var(--accent-cyan);
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 300;
}

/* ============================================
   PAGE HEADER - Dramatic Entry
   ============================================ */

.page-header {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 204, 0.15), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    filter: blur(60px);
}

.page-header h1 {
    font-size: 64px;
    font-weight: 200;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: flowIn 1s ease-out;
    background: linear-gradient(135deg, #FFFFFF, #00A8CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 22px;
    opacity: 0.85;
    font-weight: 300;
    animation: flowIn 1s ease-out 0.2s both;
}

/* ============================================
   CONTENT LAYOUT
   ============================================ */

.content-layout {
    max-width: 1000px;
    margin: 0 auto;
    animation: flowIn 0.8s ease-out;
}

.content-main h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 32px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.content-main h3 {
    font-size: 28px;
    font-weight: 400;
    margin: 48px 0 20px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.content-main p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 18px;
    font-weight: 300;
}

.content-main .lead {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   SOLUTIONS PAGE
   ============================================ */

.solutions-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 50%, #FFFFFF 100%);
}

.solution-block {
    background: white;
    border-radius: 40px;
    padding: 60px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInCurve 0.8s ease-out;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.solution-block:nth-child(1) { animation-delay: 0.1s; }
.solution-block:nth-child(2) { animation-delay: 0.2s; }
.solution-block:nth-child(3) { animation-delay: 0.3s; }
.solution-block:nth-child(4) { animation-delay: 0.4s; }
.solution-block:nth-child(5) { animation-delay: 0.5s; }

.solution-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-cyan), var(--primary-blue), var(--accent-purple));
    transform: translateY(-100%);
    transition: transform 0.6s ease;
}

.solution-block:hover::before {
    transform: translateY(0);
}

.solution-block:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-dramatic);
}

.solution-content {
    max-width: 900px;
}

.solution-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.solution-block:hover .solution-icon {
    transform: scale(1.15) rotate(-5deg);
}

.solution-block h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.solution-block p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.8;
    font-weight: 300;
}

.feature-list {
    list-style: none;
    margin-top: 28px;
}

.feature-list li {
    padding: 14px 0 14px 40px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 400;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.feature-list li:hover:before {
    transform: translateX(5px);
}

/* Benefits Grid */
.benefits-section {
    background: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    padding: 50px 40px;
    background: linear-gradient(135deg, #F1F5F9 0%, #FFFFFF 100%);
    border-radius: 30px;
    border-left: none;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-dramatic);
}

.benefit-card h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.values-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: flowIn 0.8s ease-out;
    animation-fill-mode: both;
}

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

.value-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-dramatic);
}

.value-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(-10deg);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: white;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    padding: 160px 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    text-align: center;
}

.stat {
    animation: flowIn 0.8s ease-out;
    animation-fill-mode: both;
}

.stat:nth-child(1) { animation-delay: 0.1s; }
.stat:nth-child(2) { animation-delay: 0.2s; }
.stat:nth-child(3) { animation-delay: 0.3s; }
.stat:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 64px;
    font-weight: 200;
    background: linear-gradient(135deg, #00A8CC, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 300;
    letter-spacing: -1px;
}

.contact-form-container p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s ease;
}

.contact-form:hover {
    box-shadow: var(--shadow-dramatic);
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--text-primary);
    font-size: 15px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: all 0.3s ease;
    background: #F8FAFC;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00A8CC;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 168, 204, 0.1);
}

.contact-info-container h3 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
    font-weight: 300;
    letter-spacing: -0.5px;
}

.contact-info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.contact-info-block:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-info-block h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.contact-info-block p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 6px;
    font-weight: 300;
}

.contact-info-block a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-block a:hover {
    color: var(--accent-cyan);
}

.contact-note {
    background: linear-gradient(135deg, #F1F5F9, #FFFFFF);
    padding: 32px;
    border-radius: 25px;
    border-left: none;
    margin-top: 50px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.contact-note::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
}

.contact-note h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: -0.5px;
}

.contact-note p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.faq-item {
    padding: 40px 35px;
    background: linear-gradient(135deg, #F1F5F9, #FFFFFF);
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s ease;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dramatic);
}

.faq-item h4 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

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

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

    .navbar {
        margin: 15px 20px;
        border-radius: 50px;
    }

    .nav-wrapper {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 56px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 38px;
    }

    .features-grid,
    .benefits-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 42px;
    }

    .solution-block {
        padding: 40px 30px;
    }
}

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

    .navbar {
        margin: 10px 15px;
        padding: 15px 0;
    }

    .nav-wrapper {
        padding: 0 20px;
        flex-direction: column;
        gap: 20px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 35px 25px;
    }
}
