/* ===========================================
   THE DRAGONS CHIPS - PREMIUM STATIC WEBSITE
   =========================================== */

/* CSS Custom Properties - Exact Match to Original */
:root {
    /* Core Colors - oklch values from original */
    --background: oklch(0.18 0.003 270);
    --foreground: oklch(0.96 0.005 270);
    --card: oklch(0.20 0.004 270);
    --card-foreground: oklch(0.96 0.005 270);
    --popover: oklch(0.20 0.004 270);
    --popover-foreground: oklch(0.96 0.005 270);
    
    /* Gold Primary - Premium amber/gold */
    --primary: oklch(0.75 0.15 75);
    --primary-foreground: oklch(0.12 0.005 270);
    
    /* Secondary & Muted */
    --secondary: oklch(0.22 0.01 270);
    --secondary-foreground: oklch(0.96 0.005 270);
    --muted: oklch(0.22 0.01 270);
    --muted-foreground: oklch(0.65 0.01 270);
    
    /* Accent */
    --accent: oklch(0.25 0.02 75);
    --accent-foreground: oklch(0.96 0.005 270);
    
    /* Borders & Inputs */
    --border: oklch(0.28 0.01 270);
    --input: oklch(0.28 0.01 270);
    --ring: oklch(0.75 0.15 75);
    
    /* Custom Gold Variables */
    --gold: oklch(0.75 0.15 75);
    --gold-foreground: oklch(0.12 0.005 270);
    --gold-light: oklch(0.85 0.12 80);
    --gold-dark: oklch(0.55 0.15 70);
    
    /* Radius */
    --radius: 0.625rem;
    --radius-sm: calc(var(--radius) - 4px);
    --radius-md: calc(var(--radius) - 2px);
    --radius-lg: var(--radius);
    --radius-xl: calc(var(--radius) + 4px);
    
    /* Font */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: oklch(0.35 0.01 270);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Container System */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Gold Gradient Text - Signature Style */
.gold-gradient-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gold Glow Effect */
.gold-glow {
    box-shadow: 0 0 20px oklch(0.75 0.15 75 / 20%), 0 0 40px oklch(0.75 0.15 75 / 10%);
}

/* Gold Highlight Hover Effect */
.gold-highlight {
    position: relative;
    overflow: hidden;
}

.gold-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, oklch(0.75 0.15 75 / 10%), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.gold-highlight:hover::before {
    left: 100%;
}

/* Card Hover Effect */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px oklch(0 0 0 / 30%), 0 0 20px oklch(0.75 0.15 75 / 15%);
}

/* ===========================================
   BUTTONS - Proper Sizing & Style
   =========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: var(--radius-md);
    text-decoration: none;
}

.btn-sm {
    height: 2.25rem;
    padding: 0 0.875rem;
    font-size: 0.8125rem;
}

.btn-md {
    height: 2.5rem;
    padding: 0 1rem;
}

.btn-lg {
    height: 3rem;
    padding: 0 1.5rem;
    font-size: 1rem;
}

.btn-xl {
    height: 3.5rem;
    padding: 0 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 14px 0 oklch(0.75 0.15 75 / 25%);
}

.btn-primary:hover {
    background: oklch(0.70 0.15 75);
    box-shadow: 0 6px 20px 0 oklch(0.75 0.15 75 / 35%);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: oklch(0.75 0.15 75 / 5%);
}

.btn-ghost {
    background: transparent;
    color: var(--muted-foreground);
}

.btn-ghost:hover {
    color: var(--primary);
    background: oklch(0.75 0.15 75 / 10%);
}

.btn-block {
    width: 100%;
}

.btn svg {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

/* ===========================================
   NAVIGATION - Exact Match to Original
   =========================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 5rem;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: oklch(0.18 0.003 270 / 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgb(0 0 0 / 20%);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .nav-inner {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .nav-inner {
        padding: 0 3rem;
    }
}

@media (min-width: 1280px) {
    .nav-inner {
        padding: 0 4rem;
    }
}

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

.nav-logo img {
    height: 3rem;
    width: auto;
}

@media (min-width: 768px) {
    .nav-logo img {
        height: 3.5rem;
    }
}

.nav-right {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-right {
        display: flex;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    flex-shrink: 0;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: none;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: oklch(0.18 0.003 270 / 0.95);
    backdrop-filter: blur(12px);
}

.mobile-menu-content {
    position: relative;
    padding: 6rem 1.5rem 2rem;
}

.mobile-menu-content nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-content a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
    transition: color 0.2s ease;
}

.mobile-menu-content a:hover {
    color: var(--primary);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--background);
}

/* Decorative Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-orb-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: var(--primary);
    opacity: 0.05;
}

.hero-orb-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: var(--primary);
    opacity: 0.05;
}

.hero-orb-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50rem;
    height: 50rem;
    background: var(--primary);
    opacity: 0.03;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.hero-logo {
    width: 10rem;
    height: auto;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@media (min-width: 768px) {
    .hero-logo {
        width: 13rem;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 14px oklch(0.75 0.15 75 / 25%);
    transition: all 0.2s ease;
    text-decoration: none;
}

.hero-btn-primary:hover {
    background: oklch(0.70 0.15 75);
    box-shadow: 0 6px 20px oklch(0.75 0.15 75 / 35%);
    transform: translateY(-2px);
}

.hero-btn-primary svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s ease;
}

.hero-btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    text-decoration: none;
}

.hero-btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 40rem;
    margin: 0 auto 4rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.5s forwards;
}

@media (min-width: 768px) {
    .hero-stats {
        margin-bottom: 5rem;
    }
}

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

.hero-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .hero-stat-value {
        font-size: 2.5rem;
    }
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 0.6s ease 1s forwards;
    z-index: 10;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid oklch(0.65 0.01 270 / 0.3);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.375rem;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 9999px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(0.5rem); opacity: 0.5; }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===========================================
   SECTIONS - Common Styles
   =========================================== */

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

@media (min-width: 768px) {
    .section {
        padding: 8rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section Backgrounds - Smooth without banding */
.section-alt {
    background: var(--background);
    position: relative;
}

.section-card {
    background: var(--background);
    position: relative;
}

#team {
    position: relative;
}

#team::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--background) 0%, oklch(0.20 0.004 270 / 0.5) 50%, var(--background) 100%);
    pointer-events: none;
    z-index: -1;
}

#credentials {
    position: relative;
}

#credentials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--background) 0%, oklch(0.20 0.004 270 / 0.3) 50%, var(--background) 100%);
    pointer-events: none;
    z-index: -1;
}

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

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-story h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-story h3 {
        font-size: 1.875rem;
    }
}

.about-story p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: oklch(0.75 0.15 75 / 10%);
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.highlight-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.highlight-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Values Grid */
.values-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.value-icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

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

.services-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding-top: 2rem;
}

.service-card.featured {
    border-color: oklch(0.75 0.15 75 / 30%);
    background: linear-gradient(135deg, var(--card) 0%, var(--card) 100%);
    box-shadow: 0 0 20px oklch(0.75 0.15 75 / 20%), 0 0 40px oklch(0.75 0.15 75 / 10%);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 9999px;
    box-shadow: 0 2px 8px oklch(0.75 0.15 75 / 30%);
}

.service-icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card > p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

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

.service-features li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.service-cta {
    margin-top: auto;
}

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

.services-cta p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

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

.team-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.team-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.team-header {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--card) 0%, oklch(0.25 0.02 75 / 10%) 100%);
}

.team-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    border-radius: 9999px;
    flex-shrink: 0;
}

.team-avatar.rob {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.team-avatar.steve {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.team-location svg {
    width: 1rem;
    height: 1rem;
}

.team-bio {
    padding: 0 2rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.team-section {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
}

.team-section-alt {
    background: oklch(0.22 0.01 270 / 30%);
}

.team-connect {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
}

.team-connect .btn {
    width: 100%;
    height: 2.5rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.team-connect .btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.team-section h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.team-achievements {
    list-style: none;
}

.team-achievements li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.team-achievements svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.team-positions {
    list-style: none;
}

.team-positions li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.team-positions li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.375rem;
    height: 0.375rem;
    background: var(--primary);
    border-radius: 9999px;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-expertise span {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 9999px;
    transition: all 0.2s ease;
    cursor: default;
}

.team-expertise span:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Team Stats */
.team-stats-wrapper {
    text-align: center;
    margin-top: 4rem;
}

.team-stats {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
}

.team-stat {
    text-align: center;
    min-width: 120px;
}

.team-stat-value {
    font-size: 2rem;
    font-weight: 700;
}

.team-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.team-stat-divider {
    display: none;
    width: 1px;
    height: 3rem;
    background: var(--border);
}

@media (min-width: 640px) {
    .team-stat-divider {
        display: block;
    }
}

/* ===========================================
   CREDENTIALS SECTION
   =========================================== */

.credentials-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

@media (min-width: 640px) {
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .credentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.credential-card {
    padding: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
}

.credential-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: oklch(0.75 0.15 75 / 10%);
    border-radius: var(--radius-lg);
    color: var(--primary);
    margin-bottom: 1rem;
    transition: background 0.2s ease;
}

.credential-card:hover .credential-icon {
    background: oklch(0.75 0.15 75 / 20%);
}

.credential-icon svg {
    width: 2rem;
    height: 2rem;
}

.credential-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.credential-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.credential-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Highlights Section */
.highlights-section {
    margin-bottom: 4rem;
}

.highlights-section h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .highlights-section h3 {
        font-size: 1.875rem;
    }
}

.highlights-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.highlight-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: oklch(0.75 0.15 75 / 10%);
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-item-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.highlight-item-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.highlight-item-content .highlight-subtitle {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.highlight-item-content .highlight-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Trust Statement */
.trust-statement {
    max-width: 48rem;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, var(--card) 0%, oklch(0.25 0.02 75 / 10%) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
}

.trust-statement p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.8;
}

.trust-statement strong {
    color: var(--primary);
}

/* ===========================================
   PROCESS SECTION
   =========================================== */

.process-timeline {
    position: relative;
    max-width: 50rem;
    margin: 0 auto;
}

/* Vertical Line - Desktop Only */
.process-line {
    display: none;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
    transform: translateX(-50%);
}

@media (min-width: 1024px) {
    .process-line {
        display: block;
    }
}

.process-step {
    position: relative;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .process-step {
        display: flex;
        align-items: flex-start;
    }
    
    .process-step:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.process-number {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 9999px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px oklch(0.75 0.15 75 / 30%);
    z-index: 1;
}

@media (min-width: 1024px) {
    .process-number {
        display: flex;
    }
}

.process-content {
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

@media (min-width: 1024px) {
    .process-content {
        width: calc(50% - 3rem);
    }
    
    .process-step:nth-child(odd) .process-content {
        margin-left: auto;
    }
    
    .process-step:nth-child(even) .process-content {
        margin-right: auto;
    }
}

.process-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: oklch(0.75 0.15 75 / 10%);
    border-radius: var(--radius-md);
    color: var(--primary);
}

.process-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.process-duration {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
}

.process-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Process CTA */
.process-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--card) 0%, oklch(0.25 0.02 75 / 10%) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 40rem;
    margin: 3rem auto 0;
}

@media (min-width: 640px) {
    .process-cta {
        flex-direction: row;
        text-align: left;
    }
}

.process-cta-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.process-cta-content p {
    color: var(--muted-foreground);
}

/* ===========================================
   TESTIMONIALS SECTION
   =========================================== */

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    position: relative;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: oklch(0.75 0.15 75 / 20%);
}

.quote-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.125rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonial-rating svg {
    width: 1rem;
    height: 1rem;
}

.testimonial-card blockquote {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: oklch(0.75 0.15 75 / 10%);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
}

.testimonial-name {
    font-size: 0.875rem;
    font-weight: 600;
}

.testimonial-company {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

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

.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-card {
    padding: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.contact-form-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px oklch(0.75 0.15 75 / 10%);
}

.form-group textarea {
    resize: none;
    min-height: 8rem;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a3a3a5' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.form-submit {
    margin-top: 0.5rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 4rem;
    height: 4rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.form-success h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* Contact Info */
.contact-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-info-items {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: oklch(0.75 0.15 75 / 10%);
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-info-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.contact-info-item a,
.contact-info-item span {
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-cta-box {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--card) 0%, oklch(0.25 0.02 75 / 10%) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.contact-cta-box h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-cta-box p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.response-time {
    font-size: 0.875rem;
}

.response-time strong {
    color: var(--primary);
}

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

.footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-logo {
    height: 3rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--muted-foreground);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-social a svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-cta h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-cta p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ===========================================
   ANIMATIONS - Replacing Framer Motion
   =========================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(1.875rem);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 40;
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.scroll-to-top svg {
    width: 1.25rem;
    height: 1.25rem;
}
