/* ==========================================
   WAYDIS - Professional Financial Website
   Official Brand Design System
   ========================================== */

/* ==========================================
   BRAND COLORS - Official WayDIS Palette
   ========================================== */

:root {
    /* Primary Colors */
    --waydis-blue: #0075FF;
    --waydis-green: #29A744;
    --waydis-light-blue: #05A5FF;
    --waydis-light-green: #D4EDDA;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0075FF 0%, #05A5FF 100%);
    --gradient-secondary: linear-gradient(135deg, #29A744 0%, #5DD879 100%);
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0d2847 50%, #0075FF 100%);
    --gradient-dark: linear-gradient(180deg, #0a1628 0%, #152642 100%);
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --light-gray: #E2E8F0;
    --medium-gray: #94A3B8;
    --dark-gray: #475569;
    --dark-blue: #0a1628;
    --navy: #0d2847;
    
    /* Text Colors */
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    --text-white: #FFFFFF;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 117, 255, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 117, 255, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 117, 255, 0.16);
    --shadow-xl: 0 24px 64px rgba(0, 117, 255, 0.2);
    --shadow-glow: 0 0 40px rgba(0, 117, 255, 0.3);
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
}

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

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--waydis-blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding: 8px 20px;
    background: rgba(0, 117, 255, 0.1);
    border-radius: var(--radius-full);
}

.section-header h2 {
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.125rem;
    margin-top: 1rem;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    color: var(--white);
}

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

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

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

.btn-secondary:hover {
    background: var(--waydis-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--waydis-blue);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--waydis-blue);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--waydis-blue);
    border-color: var(--white);
}

.btn-green {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(41, 167, 68, 0.3);
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(41, 167, 68, 0.4);
    color: var(--white);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.875rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo img {
    height: 46px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-normal);
}

.navbar.scrolled .logo span {
    color: var(--waydis-blue);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    position: relative;
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-links a {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--waydis-blue);
    transition: var(--transition-normal);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--waydis-blue);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--waydis-blue);
}

.lang-btn {
    background: rgba(255, 255, 255, 0.15) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    backdrop-filter: blur(10px);
}

.navbar.scrolled .lang-btn {
    background: rgba(0, 117, 255, 0.1) !important;
    color: var(--waydis-blue) !important;
}

.lang-btn:hover {
    background: var(--waydis-blue) !important;
    color: var(--white) !important;
}

.lang-btn::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.navbar.scrolled .hamburger span {
    background: var(--text-primary);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(41, 167, 68, 0.2);
    color: var(--waydis-light-green);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(41, 167, 68, 0.3);
}

.hero-badge::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--waydis-green);
    border-radius: 50%;
    font-size: 12px;
    color: white;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.hero-stat {
    text-align: left;
}

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

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

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-phone {
    position: relative;
    z-index: 0;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #0a0a0a;
    border-radius: 20px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.phone-logo {
    font-size: 3rem;
    margin-bottom: 20px;
}

.phone-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 25%;
    right: -20px;
    animation-delay: 1.5s;
}

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

.floating-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.floating-icon.blue {
    background: rgba(0, 117, 255, 0.1);
}

.floating-icon.green {
    background: rgba(41, 167, 68, 0.1);
}

.floating-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.floating-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    background: var(--off-white);
    padding: var(--section-padding) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 117, 255, 0.1) 0%, rgba(5, 165, 255, 0.1) 100%);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-link {
    color: var(--waydis-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */

.features {
    background: var(--white);
    padding: var(--section-padding) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    background: var(--off-white);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--light-gray);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.feature-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    padding: var(--section-padding) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .subtitle {
    display: inline-block;
    color: var(--waydis-blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius-md);
    background: rgba(0, 117, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.875rem;
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.about-image-placeholder .large-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.about-image-placeholder h3 {
    color: var(--white);
    font-size: 2rem;
}

.about-stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-stat {
    text-align: center;
}

.about-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--waydis-blue);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ==========================================
   TIMELINE SECTION
   ========================================== */

.timeline {
    background: var(--gradient-dark);
    color: var(--white);
    padding: var(--section-padding) 0;
}

.timeline .section-header h2,
.timeline .section-header p {
    color: var(--white);
}

.timeline .section-header .subtitle {
    background: rgba(41, 167, 68, 0.2);
    color: var(--waydis-light-green);
}

.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.timeline-progress {
    height: 100%;
    background: var(--gradient-primary);
    width: 100%;
    border-radius: 2px;
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-item {
    text-align: center;
    flex: 1;
    padding: 0 20px;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    background: var(--waydis-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.25rem;
    box-shadow: 0 0 0 8px rgba(0, 117, 255, 0.2);
    position: relative;
    z-index: 1;
}

.timeline-item h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.timeline-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
}

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

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   PRICING SECTION
   ========================================== */

.pricing {
    background: var(--off-white);
    padding: var(--section-padding) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.price-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    border: 2px solid var(--light-gray);
    transition: all var(--transition-normal);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--waydis-blue);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 10px;
}

.price-amount {
    margin-bottom: 30px;
}

.price-amount .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    vertical-align: top;
}

.price-amount .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--waydis-blue);
    line-height: 1;
}

.price-amount .period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.price-features {
    text-align: left;
    margin-bottom: 30px;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

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

.price-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: rgba(41, 167, 68, 0.1);
    color: var(--waydis-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.price-features li.disabled {
    color: var(--text-light);
}

.price-features li.disabled::before {
    content: '✕';
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-light);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
    background: var(--white);
    padding: var(--section-padding) 0;
}

.contact-section {
    padding: var(--section-padding) 0;
}

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

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 24px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.contact-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-item h4 {
    margin-bottom: 8px;
}

.contact-item p {
    margin: 0;
    color: var(--text-secondary);
}

.contact-item a {
    color: var(--waydis-blue);
    font-weight: 600;
}

.contact-form-wrapper {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: 50px;
}

.contact-form h2,
.contact-form-wrapper h3,
.contact-form-wrapper h2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--waydis-blue);
    box-shadow: 0 0 0 4px rgba(0, 117, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 15px;
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq {
    background: var(--off-white);
    padding: var(--section-padding) 0;
}

.faq-section {
    background: var(--off-white);
    padding: var(--section-padding) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--light-gray);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--waydis-blue);
}

.faq-item h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1.125rem;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.faq-item h3::before {
    content: 'Q';
    min-width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.faq-item p {
    padding-left: 46px;
    margin: 0;
}

/* ==========================================
   TEAM SECTION
   ========================================== */

.team {
    background: var(--white);
    padding: var(--section-padding) 0;
}

.team-section {
    background: var(--off-white);
    padding: var(--section-padding) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.team-member:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    border-color: transparent;
}

.team-avatar,
.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    box-shadow: var(--shadow-md);
}

.team-member h3 {
    margin-bottom: 8px;
}

.team-member .role,
.team-member p {
    color: var(--waydis-blue);
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0;
}

/* ==========================================
   PAGE HERO (Internal Pages)
   ========================================== */

.page-hero {
    background: var(--gradient-hero);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--waydis-blue);
}

/* ==========================================
   CONTENT SECTIONS
   ========================================== */

.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-main h2 {
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.content-main h2:first-of-type {
    margin-top: 0;
}

.content-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card,
.stats-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: var(--white);
}

.sidebar-card h3,
.stats-box h3 {
    color: var(--white);
    margin-bottom: 24px;
}

.sidebar-stat,
.stat {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-stat:last-child,
.stat:last-child {
    border-bottom: none;
}

.sidebar-stat-value,
.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}

.sidebar-stat-label,
.stat p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.9);
}

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

.values-list li {
    padding: 16px 0;
    padding-left: 35px;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
}

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

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 16px;
    width: 24px;
    height: 24px;
    background: rgba(41, 167, 68, 0.1);
    color: var(--waydis-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* ==========================================
   SERVICE DETAILS
   ========================================== */

.main-services {
    padding: 60px 0;
}

.service-detail {
    margin-bottom: 40px;
    background: var(--off-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: var(--transition-normal);
}

.service-detail:hover {
    box-shadow: var(--shadow-md);
}

.service-detail-header,
.service-header {
    background: var(--gradient-primary);
    padding: 30px 40px;
}

.service-detail-header h2,
.service-header h2 {
    color: var(--white);
    margin: 0;
    font-size: 1.5rem;
}

.service-detail-body,
.service-body {
    padding: 40px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(41, 167, 68, 0.1);
    color: var(--waydis-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* ==========================================
   FOOTER
   ========================================== */

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

.footer-grid,
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p,
.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--waydis-blue);
    transform: translateY(-3px);
}

.footer-column h4,
.footer-section h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--waydis-blue);
    border-radius: 2px;
}

.footer-column ul li,
.footer-section ul li {
    margin-bottom: 14px;
}

.footer-column a,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column a:hover,
.footer-section a:hover {
    color: var(--waydis-blue);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--waydis-blue);
}

/* ==========================================
   SERVICES PREVIEW
   ========================================== */

.services-preview {
    padding: var(--section-padding) 0;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 60px;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.bg-dark {
    background: var(--gradient-dark);
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Social Links */
.social-links h3 {
    margin-bottom: 15px;
}

.social-icon {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--off-white);
    border-radius: var(--radius-full);
    color: var(--waydis-blue);
    font-weight: 500;
    transition: var(--transition-normal);
}

.social-icon:hover {
    background-color: var(--waydis-blue);
    color: var(--white);
}

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

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-visual {
        order: -1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .price-card.featured {
        transform: none;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--dark-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);
        transition: var(--transition-normal);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--white) !important;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .timeline-items {
        flex-direction: column;
        gap: 40px;
    }

    .timeline-line {
        display: none;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .about-stats-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -40px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .footer-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .btn {
        width: 100%;
    }

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

    .hero-stats {
        flex-direction: column;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .page-hero {
        padding: 140px 0 60px;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease forwards;
}

/* Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
