/* ============================================
   GMG - General Management Group
   Brand Colors: Navy, Teal, Cream, Salmon, Orange (#ff751f)
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colors */
    --navy: #15344A;
    --navy-dark: #0e2435;
    --navy-light: #1d4563;
    --teal: #11829E;
    --teal-dark: #0d6a82;
    --teal-light: #14a0c2;
    --cream: #F2E8D5;
    --cream-light: #f8f3ea;
    --cream-dark: #e8d9bf;
    --salmon: #D97E6A;
    --salmon-light: #e09a8a;
    --coral: #ff751f;
    --coral-dark: #e5680f;
    --coral-light: #ff9147;
    --orange: #ff751f; /* Logo orange */

    /* Neutral Colors */
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    /* Semantic */
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    --container-padding: 24px;

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-base); }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Utilities ---------- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }

.text-gradient {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, var(--cream), var(--cream-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--navy-dark);
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }

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

.preloader-logo-img {
    width: 136px; height: 136px;
    border-radius: var(--radius-md);
    margin: 0 auto 24px;
}

.preloader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.preloader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--coral), var(--teal));
    border-radius: 2px;
    animation: preloaderFill 1.5s ease-in-out infinite;
}
@keyframes preloaderFill {
    0% { width: 0; transform: translateX(0); }
    50% { width: 100%; transform: translateX(0); }
    100% { width: 0; transform: translateX(200px); }
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 12px 0;
    transition: all var(--transition-base);
}

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

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { width: 68px; height: 68px; border-radius: var(--radius-sm); }
.logo-text-wrap { display: flex; flex-direction: column; justify-content: center; height: 68px; line-height: 1.15; }
.logo-text {
    font-family: var(--font-display); font-size: 19px; font-weight: 700;
    color: var(--white); transition: var(--transition-base); letter-spacing: 0.5px;
}
.logo-subtext { display: none; }

.navbar.scrolled .logo-text { color: var(--navy); }

/* Nav Links */
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
    padding: 8px 14px; font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,0.8); border-radius: var(--radius-sm);
    transition: var(--transition-base); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-link { color: var(--gray-600); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--navy); background: var(--cream-light); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-link-dropdown i { font-size: 10px; margin-left: 4px; transition: var(--transition-base); }
.nav-dropdown:hover .nav-link-dropdown i { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 240px;
    background: var(--white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl); border: 1px solid var(--gray-100);
    padding: 8px; opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition-base);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500; color: var(--gray-700);
    transition: var(--transition-base);
}
.dropdown-menu a:hover { background: var(--cream-light); color: var(--navy); }
.dropdown-menu a i { width: 20px; text-align: center; color: var(--teal); font-size: 14px; }

/* Nav CTA */
.nav-cta {
    display: flex; align-items: center; gap: 8px; padding: 10px 20px;
    background: var(--coral); color: var(--white);
    font-size: 14px; font-weight: 600; border-radius: var(--radius-sm);
    transition: var(--transition-base); white-space: nowrap;
}
.nav-cta:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,117,31,0.4); }
.nav-cta i { font-size: 12px; transition: transform var(--transition-base); }
.nav-cta:hover i { transform: translateX(3px); }

/* Mobile Toggle */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition-base); }
.navbar.scrolled .mobile-toggle span { background: var(--gray-800); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Overlay */
.mobile-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-dark); z-index: 999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition-base);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav { text-align: center; display: flex; flex-direction: column; gap: 8px; }
.mobile-nav-link { display: block; padding: 12px 24px; font-size: 20px; font-weight: 500; color: rgba(255,255,255,0.8); transition: var(--transition-base); }
.mobile-nav-link:hover { color: var(--white); }
.mobile-cta { margin-top: 24px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 12px 28px; font-size: 15px; font-weight: 600;
    border-radius: var(--radius-sm); transition: all var(--transition-base);
    cursor: pointer; border: 2px solid transparent; white-space: nowrap;
}
.btn i { font-size: 13px; transition: transform var(--transition-base); }
.btn:hover i { transform: translateX(3px); }

.btn-accent { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-accent:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,117,31,0.35); }

.btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(17,130,158,0.35); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }

.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--cream-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.2); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; }

/* ---------- Section Common ---------- */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }

.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; background: rgba(17,130,158,0.08);
    color: var(--teal); font-size: 13px; font-weight: 600;
    border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display); font-size: 42px; font-weight: 700;
    color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}

.section-description { font-size: 17px; color: var(--gray-500); line-height: 1.7; }

/* ---------- Hero Section ---------- */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

/* Photo background variant */
.hero-photo-bg .hero-bg { overflow: hidden; }
.hero-bg-image {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: brightness(0.6) saturate(0.8);
    transform: scale(1.03);
    animation: heroBgZoom 25s ease-in-out infinite alternate;
}
@keyframes heroBgZoom {
    0% { transform: scale(1.03); }
    100% { transform: scale(1.08); }
}
.hero-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(14,36,53,0.55) 0%,
        rgba(21,52,74,0.45) 35%,
        rgba(17,130,158,0.10) 100%
    );
}

/* Gradient background variant (for SVG illo) */
.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, #1a4560 70%, var(--navy-light) 100%);
}
.hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 32px 32px;
}

.hero-shapes { position: absolute; inset: 0; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; }
.shape-1 { width: 500px; height: 500px; background: var(--teal); top: -200px; right: -100px; animation: float 20s infinite ease-in-out; }
.shape-2 { width: 400px; height: 400px; background: var(--coral); bottom: -150px; left: -100px; animation: float 25s infinite ease-in-out reverse; }
.shape-3 { width: 300px; height: 300px; background: var(--salmon); top: 50%; left: 50%; animation: float 18s infinite ease-in-out 5s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Hero content — default 2-column for SVG variant */
.hero-content {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

/* Centered layout for photo bg variant */
.hero-content-centered {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; max-width: 820px; margin: 0 auto;
}
.hero-content-centered .hero-text { max-width: 100%; }
.hero-content-centered .hero-subtitle { margin-left: auto; margin-right: auto; max-width: 620px; }
.hero-content-centered .hero-actions { justify-content: center; }
.hero-content-centered .hero-trust { justify-content: center; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px; color: var(--cream); font-size: 13px; font-weight: 500;
    margin-bottom: 24px; backdrop-filter: blur(10px);
}
.hero-badge i { font-size: 14px; color: var(--coral-light); }

.hero h1 {
    font-family: var(--font-display); font-size: 52px; font-weight: 700;
    line-height: 1.15; color: var(--white); margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px; color: rgba(255,255,255,0.7);
    line-height: 1.7; margin-bottom: 36px; max-width: 520px;
}

.hero-actions { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }

/* Hero Trust Stats */
.hero-trust { display: flex; align-items: center; }
.trust-stats { display: flex; align-items: center; gap: 20px; }
.trust-stat { text-align: center; }
.trust-stat strong { display: block; font-size: 20px; font-weight: 700; color: var(--white); }
.trust-stat span { font-size: 12px; color: rgba(255,255,255,0.5); }
.trust-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }

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

.hero-illustration { width: 100%; max-width: 500px; }
.illo-svg { width: 100%; height: auto; overflow: visible; }

/* Ambient glow breathing */
.illo-ambient { animation: ambientBreath 8s ease-in-out infinite; }
.illo-ambient-1 { animation-delay: 0s; }
.illo-ambient-2 { animation-delay: 4s; }
@keyframes ambientBreath {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.08); }
}

/* Building entrance animation */
.illo-building {
    opacity: 0; transform: translateY(30px);
    animation: illoFadeUp 1s ease-out 0.5s forwards;
}
@keyframes illoFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Window twinkle */
.illo-window { animation: windowTwinkle 4s ease-in-out infinite; }
.illo-win-1 { animation-delay: 0s; }
.illo-win-2 { animation-delay: 0.8s; }
.illo-win-3 { animation-delay: 1.5s; }
.illo-win-4 { animation-delay: 0.3s; }
.illo-win-5 { animation-delay: 2.1s; }
.illo-win-6 { animation-delay: 1.2s; }
.illo-win-7 { animation-delay: 0.6s; }
.illo-win-8 { animation-delay: 1.8s; }
.illo-win-9 { animation-delay: 2.4s; }
.illo-win-10 { animation-delay: 0.4s; }
.illo-win-11 { animation-delay: 1.7s; }
.illo-win-12 { animation-delay: 3.0s; }
.illo-win-13 { animation-delay: 0.9s; }
.illo-win-14 { animation-delay: 2.6s; }
@keyframes windowTwinkle {
    0%,100% { opacity: 1; }
    40% { opacity: 0.3; }
    60% { opacity: 1; }
}

/* EU stars entrance + shimmer */
.illo-eu {
    opacity: 0; transform: translateY(30px);
    animation: illoFadeUp 1s ease-out 0.9s forwards;
}
.illo-star { animation: starShimmer 3s ease-in-out infinite; }
.illo-star-1 { animation-delay: 0s; }
.illo-star-2 { animation-delay: 0.25s; }
.illo-star-3 { animation-delay: 0.5s; }
.illo-star-4 { animation-delay: 0.75s; }
.illo-star-5 { animation-delay: 1s; }
.illo-star-6 { animation-delay: 1.25s; }
.illo-star-7 { animation-delay: 1.5s; }
.illo-star-8 { animation-delay: 1.75s; }
.illo-star-9 { animation-delay: 2s; }
.illo-star-10 { animation-delay: 2.25s; }
.illo-star-11 { animation-delay: 2.5s; }
@keyframes starShimmer {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

/* Bridge line dash animation */
.illo-bridge {
    opacity: 0;
    animation: illoFadeUp 1s ease-out 1.3s forwards;
}
.illo-bridge-line {
    stroke-dashoffset: 200;
    animation: bridgeDash 20s linear infinite;
}
@keyframes bridgeDash {
    to { stroke-dashoffset: -200; }
}

/* GMG node pulse */
.illo-gmg-node { animation: gmgPulse 3s ease-in-out infinite; }
.illo-gmg-pulse {
    animation: gmgRing 3s ease-in-out infinite;
    transform-origin: 295px 218px;
}
@keyframes gmgPulse {
    0%,100% { filter: drop-shadow(0 0 4px rgba(255,117,31,0.3)); }
    50% { filter: drop-shadow(0 0 12px rgba(255,117,31,0.6)); }
}
@keyframes gmgRing {
    0%,100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.35); opacity: 0; }
}

/* Floating nodes */
.illo-node { animation: nodeFloat 6s ease-in-out infinite; }
.illo-node-1 { animation-delay: 0s; }
.illo-node-2 { animation-delay: 1.5s; }
.illo-node-3 { animation-delay: 3s; }
.illo-node-4 { animation-delay: 4.5s; }
.illo-node-5 { animation-delay: 2s; }
@keyframes nodeFloat {
    0%,100% { transform: translate(0,0); }
    25% { transform: translate(4px,-6px); }
    50% { transform: translate(-3px,4px); }
    75% { transform: translate(5px,2px); }
}
.illo-node-ring { animation: ringExpand 4s ease-in-out infinite; }
.illo-ring-1 { animation-delay: 0.5s; transform-origin: 180px 160px; }
.illo-ring-2 { animation-delay: 2s; transform-origin: 340px 340px; }
.illo-ring-3 { animation-delay: 3.5s; transform-origin: 440px 310px; }
@keyframes ringExpand {
    0%,100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.6); opacity: 0; }
}

/* Labels fade */
.illo-label { animation: labelFade 1s ease-out 1.8s both; opacity: 0; }
@keyframes labelFade { to { opacity: 0.3; } }

/* Particles along bridge */
.illo-particle { filter: url(#softGlow); }

/* Scroll Indicator */
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 11px; text-transform: uppercase; letter-spacing: 2px; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce { 0%, 100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.5; transform: scaleY(0.6); } }

/* ---------- Stats Bar ---------- */
.stats-bar { background: var(--cream-light); padding: 48px 0; border-bottom: 1px solid var(--cream-dark); position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; padding: 16px; }
.stat-number { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--teal); line-height: 1; display: inline; }
.stat-suffix { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--teal-light); display: inline; }
.stat-label { font-size: 14px; color: var(--gray-500); margin-top: 8px; font-weight: 500; }

/* ---------- Services Section ---------- */
.services { padding: var(--section-padding) 0; background: var(--white); }

.services-grid { display: flex; flex-direction: column; gap: 32px; }

/* Featured Service Card */
.service-card-featured {
    position: relative; background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: var(--radius-xl); overflow: hidden;
    padding: 3px;
}
.service-card-featured::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--coral), var(--teal));
    border-radius: var(--radius-xl); z-index: 0;
}

.service-card-inner {
    position: relative; z-index: 1;
    background: var(--navy);
    border-radius: calc(var(--radius-xl) - 3px);
    padding: 48px;
    display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: start;
}

.service-icon-wrap {
    position: relative;
}

.service-card-featured .service-icon {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: var(--cream);
}

.service-content h3 {
    font-family: var(--font-display); font-size: 28px; font-weight: 700;
    color: var(--white); margin-bottom: 16px;
}
.service-content > p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 20px; }

.service-content .service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.service-content .service-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: rgba(255,255,255,0.8);
}
.service-content .service-features li i { color: var(--teal-light); font-size: 14px; flex-shrink: 0; }

/* Secondary Service Cards */
.services-secondary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px;
    border: 1px solid var(--gray-200); transition: all var(--transition-base);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--coral));
    transform: scaleX(0); transform-origin: left; transition: transform var(--transition-base);
}
.service-card:hover { border-color: var(--teal); box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.services-secondary .service-icon {
    width: 52px; height: 52px;
    background: rgba(17,130,158,0.08); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--teal); margin-bottom: 16px;
    transition: var(--transition-base);
}
.service-card:hover .service-icon { background: var(--teal); color: var(--white); }

.services-secondary .service-card h3 {
    font-family: var(--font-display); font-size: 20px; font-weight: 600;
    color: var(--navy); margin-bottom: 10px;
}
.services-secondary .service-card > p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; }

.service-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--coral);
    transition: var(--transition-base);
}
.service-link:hover { gap: 12px; color: var(--coral-dark); }
.service-link i { font-size: 12px; }

/* ---------- About Section ---------- */
.about { padding: var(--section-padding) 0; background: var(--cream-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-image-main { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.about-logo-display { width: 300px; height: 300px; border-radius: var(--radius-xl); }
.about-image-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }

.about-experience-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--coral); color: var(--white);
    padding: 24px; border-radius: var(--radius-lg); text-align: center;
    box-shadow: var(--shadow-xl);
}
.experience-number { display: block; font-family: var(--font-display); font-size: 40px; font-weight: 700; line-height: 1; }
.experience-text { font-size: 13px; font-weight: 500; opacity: 0.9; line-height: 1.3; }

.about-mini-cards { display: flex; gap: 12px; margin-top: 24px; }
.mini-card {
    flex: 1; display: flex; align-items: center; gap: 10px; padding: 14px 16px;
    background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md);
    font-size: 13px; font-weight: 500; color: var(--gray-700);
}
.mini-card i { color: var(--teal); font-size: 16px; }

.about-content .section-tag { display: inline-flex; }
.about-content .section-title { text-align: left; }
.about-text { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }

.about-highlights { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.highlight-item { display: flex; gap: 16px; align-items: flex-start; }
.highlight-icon {
    width: 44px; height: 44px; background: rgba(17,130,158,0.1);
    border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--teal); font-size: 18px;
}
.highlight-item h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.highlight-item p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ---------- Process Section ---------- */
.process { padding: var(--section-padding) 0; background: var(--white); }
.process-timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 40px; }
.timeline-line { position: absolute; top: 60px; left: 12.5%; right: 12.5%; height: 2px; background: var(--gray-200); }
.timeline-line::after { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%; background: linear-gradient(90deg, var(--teal), var(--coral)); transition: width 1.5s ease; }
.timeline-line.animate::after { width: 100%; }

.process-step { text-align: center; position: relative; }
.step-number { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--teal); margin-bottom: 16px; }
.step-content { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; border: 1px solid var(--gray-200); transition: var(--transition-base); }
.step-content:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-icon { width: 56px; height: 56px; background: rgba(17,130,158,0.08); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--teal); font-size: 20px; transition: var(--transition-base); }
.step-content:hover .step-icon { background: var(--teal); color: var(--white); }
.step-content h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.step-content p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ---------- Blog Preview ---------- */
.blog-preview { padding: var(--section-padding) 0; background: var(--cream-light); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }

.blog-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--gray-200); transition: all var(--transition-base);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--teal); }

.blog-card-image {
    height: 200px; background: linear-gradient(135deg, var(--navy), var(--teal));
    display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.blog-card-image i { font-size: 40px; color: rgba(255,255,255,0.15); }
.blog-card-category {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 12px; border-radius: 50px;
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-card-category.cat-fonduri { background: var(--coral); color: var(--white); }
.blog-card-category.cat-noutati { background: var(--teal); color: var(--white); }
.blog-card-category.cat-ai { background: var(--navy); color: var(--white); }

.blog-card-content { padding: 24px; }
.blog-card-date { font-size: 12px; color: var(--gray-400); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.blog-card-date i { font-size: 11px; }
.blog-card-content h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-card-content p { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.blog-card-content .service-link { color: var(--coral); }

.blog-preview-cta { text-align: center; }

/* Blog placeholder when no posts */
.blog-empty {
    grid-column: 1 / -1; text-align: center; padding: 60px 20px;
    background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
}
.blog-empty i { font-size: 48px; color: var(--gray-300); margin-bottom: 16px; }
.blog-empty h3 { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.blog-empty p { font-size: 15px; color: var(--gray-500); }

/* ---------- Testimonials Section ---------- */
.testimonials { padding: var(--section-padding) 0; background: var(--white); }
.testimonials-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
    background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
    padding: 32px; transition: var(--transition-base);
}
.testimonial-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-stars { margin-bottom: 16px; }
.testimonial-stars i { color: var(--coral); font-size: 14px; margin-right: 2px; }
.testimonial-card blockquote { font-size: 15px; line-height: 1.7; color: var(--gray-600); font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px; border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--teal), var(--navy));
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.author-info strong { display: block; font-size: 14px; color: var(--navy); }
.author-info span { font-size: 12px; color: var(--gray-500); }

/* ---------- CTA Section ---------- */
.cta-section { position: relative; padding: 100px 0; background: linear-gradient(135deg, var(--navy-dark), var(--navy)); overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0); background-size: 24px 24px; }
.cta-content { text-align: center; position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-content h2 { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-content p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact Section ---------- */
.contact { padding: var(--section-padding) 0; background: var(--cream-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: flex-start; }
.contact-info .section-tag { display: inline-flex; }
.contact-info .section-title { text-align: left; }
.contact-description { font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; background: rgba(17,130,158,0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--teal); font-size: 16px; }
.contact-item strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--gray-500); line-height: 1.5; }
.contact-social { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--white); border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; color: var(--gray-600); font-size: 16px; transition: var(--transition-base); }
.social-link:hover { background: var(--teal); border-color: var(--teal); color: var(--white); transform: translateY(-2px); }

/* Contact Form */
.contact-form { background: var(--white); border-radius: var(--radius-xl); padding: 40px; border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); }
.form-header { margin-bottom: 28px; }
.form-header h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.form-header p { font-size: 14px; color: var(--gray-500); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; background: var(--cream-light);
    border: 1px solid var(--gray-200); border-radius: var(--radius-md);
    color: var(--gray-800); transition: var(--transition-base); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { background: var(--white); border-color: var(--teal); box-shadow: 0 0 0 3px rgba(17,130,158,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; margin-top: 12px; font-size: 12px; color: var(--gray-400); display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo .logo-text { color: var(--white); }
.footer-tagline { font-size: 14px; color: var(--gray-400); line-height: 1.7; margin-top: 16px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: var(--gray-400); font-size: 14px; transition: var(--transition-base); }
.footer-social a:hover { background: var(--teal); color: var(--white); }
.footer-links h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: var(--gray-400); transition: var(--transition-base); }
.footer-links a:hover { color: var(--teal-light); padding-left: 4px; }
.footer-newsletter h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.footer-newsletter p { font-size: 14px; color: var(--gray-400); line-height: 1.6; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { flex: 1; padding: 10px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); color: var(--white); font-size: 14px; outline: none; transition: var(--transition-base); }
.newsletter-form input:focus { border-color: var(--teal); background: rgba(255,255,255,0.1); }
.newsletter-form input::placeholder { color: var(--gray-500); }
.newsletter-form button { padding: 10px 16px; background: var(--coral); border: none; border-radius: var(--radius-sm); color: var(--white); font-size: 14px; cursor: pointer; transition: var(--transition-base); }
.newsletter-form button:hover { background: var(--coral-dark); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: var(--gray-500); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--gray-500); transition: var(--transition-base); }
.footer-bottom-links a:hover { color: var(--teal-light); }

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px;
    background: var(--coral); color: var(--white); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; font-size: 16px;
    z-index: 100; opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all var(--transition-base); box-shadow: var(--shadow-lg);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--coral-dark); transform: translateY(-4px); }

/* ---------- Page Header (for subpages) ---------- */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 140px 0 80px; position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 32px 32px;
}
.page-header .container { position: relative; z-index: 1; }
.page-header-content { max-width: 700px; }
.page-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 13px; color: rgba(255,255,255,0.5); }
.page-breadcrumb a { color: rgba(255,255,255,0.7); }
.page-breadcrumb a:hover { color: var(--white); }
.page-header h1 { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.page-header p { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* Service Detail Page */
.service-detail { padding: var(--section-padding) 0; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 64px; }
.service-detail-content h2 { font-family: var(--font-display); font-size: 30px; color: var(--navy); margin-bottom: 16px; margin-top: 40px; }
.service-detail-content h2:first-child { margin-top: 0; }
.service-detail-content p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.service-detail-content ul { margin-bottom: 24px; }
.service-detail-content ul li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 15px; color: var(--gray-600); }
.service-detail-content ul li i { color: var(--teal); margin-top: 4px; flex-shrink: 0; }

/* Service Sidebar */
.service-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--cream-light); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; border: 1px solid var(--cream-dark); }
.sidebar-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy); margin-bottom: 16px; }
.sidebar-card ul li { margin-bottom: 8px; }
.sidebar-card ul li a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--gray-600); transition: var(--transition-base); }
.sidebar-card ul li a:hover, .sidebar-card ul li a.active { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }
.sidebar-card ul li a i { color: var(--teal); width: 20px; text-align: center; }

.sidebar-cta { background: var(--navy); border-radius: var(--radius-lg); padding: 28px; text-align: center; color: var(--white); }
.sidebar-cta h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.sidebar-cta p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }

/* Blog Page */
.blog-page { padding: var(--section-padding) 0; background: var(--cream-light); }
.blog-filters { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.blog-filter-btn {
    padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600;
    color: var(--gray-600); background: var(--white); border: 1px solid var(--gray-200);
    cursor: pointer; transition: var(--transition-base);
}
.blog-filter-btn:hover { border-color: var(--teal); color: var(--navy); }
.blog-filter-btn.active { background: var(--teal); color: var(--white); border-color: var(--teal); }

.blog-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.blog-article-content { padding: var(--section-padding) 0; }
.blog-article-content .container { max-width: 800px; }
.blog-article-content h1 { font-family: var(--font-display); font-size: 38px; color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
.blog-article-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--gray-500); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-200); }
.blog-article-meta i { color: var(--teal); }
.blog-article-body h2 { font-family: var(--font-display); font-size: 26px; color: var(--navy); margin: 32px 0 16px; }
.blog-article-body p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; color: var(--gray-600); }
.blog-article-body ul, .blog-article-body ol { margin: 16px 0; padding-left: 20px; }
.blog-article-body li { margin-bottom: 8px; font-size: 16px; line-height: 1.7; color: var(--gray-600); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    :root { --section-padding: 80px; }
    .section-title { font-size: 36px; }
    .hero h1 { font-size: 42px; }
    .hero-content { gap: 40px; }
    .service-card-inner { grid-template-columns: 1fr; gap: 24px; }
    .service-content .service-features { grid-template-columns: 1fr; }
    .services-secondary { grid-template-columns: repeat(3, 1fr); }
    .about-grid { gap: 48px; }
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .timeline-line { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    :root { --section-padding: 64px; --container-padding: 20px; }
    .nav-menu, .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    .hero { padding: 100px 0 60px; }
    .hero h1 { font-size: 32px; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { max-width: 340px; margin: 0 auto; }
    .hero-scroll { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-number { font-size: 36px; }
    .section-title { font-size: 30px; }
    .section-title br { display: none; }
    .services-secondary { grid-template-columns: 1fr; }
    .service-card-inner { padding: 28px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-content .section-title { text-align: center; }
    .about-content .section-tag { margin-left: auto; margin-right: auto; }
    .about-content { text-align: center; }
    .highlight-item { text-align: left; }
    .process-timeline { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .blog-grid, .blog-page-grid { grid-template-columns: 1fr; }
    .testimonials-track { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .cta-section { padding: 64px 0; }
    .cta-content h2 { font-size: 30px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-info .section-title { text-align: center; }
    .contact-info .section-tag { margin-left: auto; margin-right: auto; }
    .contact-info { text-align: center; }
    .contact-item { text-align: left; }
    .contact-social { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
    .page-header h1 { font-size: 32px; }
    .service-sidebar { grid-template-columns: 1fr; }
    .blog-article-content h1 { font-size: 28px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
    .trust-stats { gap: 12px; }
    .trust-stat strong { font-size: 16px; }
    .section-title { font-size: 26px; }
    .about-mini-cards { flex-direction: column; }
}

/* Selection */
::selection { background: rgba(17,130,158,0.2); color: var(--navy); }
*:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; border-radius: 2px; }

@media print {
    .navbar, .back-to-top, .hero-scroll, .mobile-toggle, .mobile-overlay { display: none !important; }
    .hero { min-height: auto; padding: 40px 0; }
}
