
:root {
    /* Color Palette - Warm, Trustworthy Light Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --border-hover: #0891b2;
    
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    
    --primary: #0891b2;
    --primary-rgb: 8, 145, 178;
    --secondary: #0d9488;
    --secondary-rgb: 13, 148, 136;
    --accent: #4f46e5;
    
    --gradient-primary: linear-gradient(135deg, #0891b2 0%, #0d9488 100%);
    --gradient-accent: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --gradient-light: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Plus Jakarta Sans', var(--font-sans);
    
    /* Box Model & Shadows */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --card-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04), 0 8px 12px -6px rgba(15, 23, 42, 0.04);
    --glow-shadow: 0 0 25px rgba(8, 145, 178, 0.08);
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
    border: 2px solid var(--bg-secondary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-top: 10px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary);
}

/* Layout Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    width: 100%;
}

.section {
    padding: 7rem 0;
    position: relative;
}

.section-alt {
    background-color: var(--bg-secondary);
}

/* Background Soft Flares */
.flare {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
}

.flare-1 {
    top: 10%;
    left: -100px;
    background: var(--primary);
}

.flare-2 {
    top: 40%;
    right: -100px;
    background: var(--accent);
}

.flare-3 {
    bottom: 5%;
    left: 20%;
    background: var(--secondary);
}

/* Personable Card Styling */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-hover);
    box-shadow: var(--glow-shadow), var(--card-shadow);
    transform: translateY(-4px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 30px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.25);
    color: #ffffff;
}

.btn-secondary {
    background: #f1f5f9;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Header & Navigation */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

header.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    height: 70px;
}

header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-img:hover {
    transform: scale(1.02);
}

header.site-header.scrolled .logo-img {
    height: 38px;
}

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

nav.main-nav a {
    color: var(--text-secondary);
    font-weight: 550;
    font-family: var(--font-display);
    position: relative;
    padding: 0.5rem 0;
}

nav.main-nav a:hover, nav.main-nav a.active {
    color: var(--primary);
}

nav.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    position: absolute;
    transition: var(--transition-fast);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 22px; }

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 11px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    padding: 2rem;
}

.mobile-nav-overlay.open {
    right: 0;
}

.mobile-nav-overlay ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.mobile-nav-overlay a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.mobile-nav-overlay a:hover, .mobile-nav-overlay a.active {
    color: var(--primary);
}

.mobile-nav-overlay .contact-info {
    text-align: center;
}

.mobile-nav-overlay .contact-info p {
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 1rem);
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f0f7f9 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(8, 145, 178, 0.08);
    border: 1px solid rgba(8, 145, 178, 0.15);
    color: var(--primary);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 650;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

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

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.2rem;
    max-width: 600px;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat-item h3 {
    font-size: 2.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    font-weight: 500;
}

/* Personable Image Frame */
.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-bg-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    z-index: 1;
}

.hero-img-frame {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border: 8px solid #ffffff;
    transform: rotate(1deg);
    transition: var(--transition-smooth);
}

.hero-img-frame:hover {
    transform: rotate(0deg) scale(1.01);
}

/* Service Cards */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.split-card {
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #ffffff;
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #f0fdfa;
    border: 1px solid #ccfbf1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: var(--secondary);
    transition: var(--transition-smooth);
}

.split-card:hover .card-icon {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
}

.split-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.split-card ul {
    list-style: none;
    margin: 1.5rem 0 2.2rem 0;
}

.split-card li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-secondary);
}

.split-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2.2rem;
    height: 100%;
    background: #ffffff;
}

.feature-card .card-icon {
    margin-bottom: 1.5rem;
}

/* Team Section - Adding Personable Element */
.team-intro-box {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.team-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.team-image-container img {
    border-radius: 16px;
    width: 100%;
    max-width: 380px;
    border: 6px solid #ffffff;
    box-shadow: var(--card-shadow);
}

.team-text-content h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Pricing cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
    margin-top: 4rem;
}

.pricing-card {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    background: #ffffff;
}

.pricing-card.popular {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(8, 145, 178, 0.06);
}

.badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--text-primary);
    margin: 1.5rem 0 0.5rem 0;
}

.price span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0 2.5rem 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-features li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Partners section */
.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.partner-card {
    padding: 2.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
}

.partner-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.partner-logo-box {
    width: 48px;
    height: 48px;
    background: #f0fdfa;
    border: 1px solid #ccfbf1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-weight: bold;
}

.partner-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-family: var(--font-display);
    margin-top: 1.5rem;
    align-self: flex-start;
}

.partner-link svg {
    transition: transform var(--transition-fast);
}

.partner-link:hover svg {
    transform: translate(3px, -3px);
}

/* FAQs */
.faq-container {
    max-width: 800px;
    margin: 3.5rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-fast);
    background: #ffffff;
}

.faq-question {
    width: 100%;
    padding: 1.4rem 2rem;
    background: #ffffff;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform var(--transition-fast);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--glow-shadow);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-secondary);
}

.faq-answer p {
    padding: 1.4rem 2rem;
    margin-bottom: 0;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
    align-items: flex-start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1.2rem;
}

.detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(8, 145, 178, 0.06);
    border: 1px solid rgba(8, 145, 178, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.detail-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.detail-text p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.95rem 1.15rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(8, 145, 178, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.alert-box {
    padding: 1rem 1.4rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.4rem;
    display: none;
    font-weight: 500;
}

.alert-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* Footer */
footer.site-footer {
    background-color: #0f172a;
    border-top: 1px solid #1e293b;
    padding: 4.5rem 0 2.5rem 0;
    color: #94a3b8;
}

footer.site-footer p {
    color: #94a3b8;
}

footer.site-footer h1, footer.site-footer h2, footer.site-footer h3, footer.site-footer h4 {
    color: #ffffff;
}

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

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-links h4 {
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
}

/* Badges */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.area-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #94a3b8;
    transition: var(--transition-fast);
}

.area-badge:hover {
    background: rgba(8, 145, 178, 0.15);
    border-color: var(--primary);
    color: #ffffff;
}

/* Call to Action Banner */
.cta-banner {
    padding: 4.5rem;
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--radius-md);
}

.cta-banner h2 {
    color: #ffffff;
    font-size: 2.1rem;
    margin-bottom: 0.8rem;
}

.cta-banner h2::after {
    display: none;
}

.cta-banner p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-tagline {
        justify-content: center;
    }
    
    .hero-content h1 span {
        display: inline;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2.5rem;
    }
    
    .split-grid {
        grid-template-columns: 1fr;
    }
    
    .team-intro-box {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }
    
    header.site-header {
        height: 70px;
    }
    
    header .btn-primary {
        display: none;
    }
    
    nav.main-nav {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner {
        padding: 3rem 1.5rem;
    }
}
