@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500&family=Outfit:wght@300;400;600;700;900&display=swap');

/* ═══════════════════════════════════════════════════
   DESIGN TOKENS — Brandose Brand Language
   Green (#7CC983) from the capsule in the logo.
   Serif headings (Playfair Display) echo the logo's
   elegant serif letterforms.
   ═══════════════════════════════════════════════════ */
:root {
    /* Sophisticated Dark Mode Palette */
    --bg-color: #0a0a0a;
    --bg-elevated: #111111;
    --bg-card: #161616;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent-color: #7CC983;
    --accent-hover: #5fb568;
    --accent-glow: rgba(124, 201, 131, 0.15);
    --accent-soft: rgba(124, 201, 131, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.06);

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 60px;
    --space-2xl: 100px;
    --space-3xl: 140px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 100px;

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, .brand-font {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 20px;
}

h1 span {
    background: linear-gradient(135deg, #fff 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.subheadline {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
}

.eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: var(--space-sm);
    display: block;
}

.section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

/* ═══════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

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

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

.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: #000;
    font-weight: 700;
}

.btn-accent:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--text-primary);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    padding: 12px 0;
    font-size: 0.95rem;
}

.btn-ghost::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s var(--ease-out);
    display: inline-block;
}

.btn-ghost:hover::after {
    transform: translateX(6px);
}

.btn-group {
    display: flex;
    gap: 20px;
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 14px 5%;
    background: rgba(10, 10, 10, 0.95);
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 72px;
    width: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo img:hover {
    opacity: 0.85;
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.nav-links a.highlight {
    color: var(--accent-color);
    opacity: 1;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: '▾';
    margin-left: 6px;
    font-size: 0.7rem;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    opacity: 0.8;
}

.dropdown-menu a:hover {
    background: var(--glass-bg);
    opacity: 1;
}

/* Nav CTA Button */
.nav-cta {
    padding: 10px 24px !important;
    font-size: 0.85rem !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5.5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5.5px);
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 70vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle, rgba(124, 201, 131, 0.06) 0%, rgba(255, 255, 255, 0.03) 30%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: glow-pulse 8s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 1;
}

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

.hero--center .hero-content {
    text-align: center;
    max-width: 900px;
}

.hero--center .hero-content p {
    margin-left: auto;
    margin-right: auto;
}

.hero--center .btn-group {
    justify-content: center;
}

/* Page Hero (smaller, for interior pages) */
.page-hero {
    min-height: auto;
    padding: 180px 0 100px;
}

.page-hero .hero-content {
    max-width: 800px;
}

/* ═══════════════════════════════════════════════════
   GLASS CARDS
   ═══════════════════════════════════════════════════ */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: var(--space-xl);
}

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

.grid-layout--3 {
    grid-template-columns: repeat(3, 1fr);
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all 0.5s var(--ease-out);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.15);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.glass-card p {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.glass-card--accent {
    border-color: rgba(124, 201, 131, 0.2);
}

.glass-card--accent:hover {
    border-color: rgba(124, 201, 131, 0.4);
    box-shadow: 0 0 40px var(--accent-glow);
}

.glass-card .card-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    display: block;
}

.glass-card .card-number {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

/* Large service tile cards */
.service-tile {
    padding: var(--space-xl) var(--space-lg);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-tile h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.service-tile .btn-ghost {
    margin-top: var(--space-sm);
    padding: 0;
    align-self: flex-start;
}

/* ═══════════════════════════════════════════════════
   TEXT FOCUS SECTIONS
   ═══════════════════════════════════════════════════ */
.text-focus-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.text-focus-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--text-primary);
}

.text-focus-section p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.text-focus-section.muted h2 {
    color: var(--text-secondary);
}

.text-focus-section.muted p {
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    color: var(--text-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   SERVICE DETAIL PAGE LAYOUT
   ═══════════════════════════════════════════════════ */
.service-flow {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.service-block {
    max-width: 800px;
}

.service-block.centered {
    margin: 0 auto;
    text-align: center;
}

.service-block.centered p {
    margin-left: auto;
    margin-right: auto;
}

.service-block h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.service-block p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.service-list li {
    padding: var(--space-md) var(--space-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out);
}

.service-list li:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.service-list li h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-list li p {
    font-size: 1rem;
    margin-bottom: 0;
}

.outcome-box {
    background: linear-gradient(135deg, rgba(124, 201, 131, 0.08), rgba(124, 201, 131, 0.02));
    border: 1px solid rgba(124, 201, 131, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-lg);
}

.outcome-box h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.outcome-box p {
    margin-bottom: 0;
    max-width: 100%;
}

/* ═══════════════════════════════════════════════════
   PROCESS / STEPS
   ═══════════════════════════════════════════════════ */
.step-card {
    border-top: 3px solid var(--text-primary);
}

.step-card .step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

/* ═══════════════════════════════════════════════════
   CASE STUDY CARDS
   ═══════════════════════════════════════════════════ */
.case-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.case-card .case-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
}

.case-card .case-body {
    padding: var(--space-lg);
}

.case-card .case-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.case-card h3 {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
}

.case-card p {
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.case-card .metric {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(124, 201, 131, 0.1);
    border: 1px solid rgba(124, 201, 131, 0.25);
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-right: 8px;
    margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════ */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 500px;
    margin: 0 auto;
}

.form-group.form-wide {
    max-width: 600px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.4);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-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='%23a1a1aa' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form-select option {
    background: var(--bg-color);
    color: var(--text-primary);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

/* ═══════════════════════════════════════════════════
   SPLIT LAYOUT (for contact, about pages)
   ═══════════════════════════════════════════════════ */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.split-layout .split-content {
    padding-right: var(--space-lg);
}

/* ═══════════════════════════════════════════════════
   METRICS BAR
   ═══════════════════════════════════════════════════ */
.metrics-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

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

.metric-item .metric-value {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-item .metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Outfit', sans-serif;
}

/* ═══════════════════════════════════════════════════
   SECTION DIVIDER
   ═══════════════════════════════════════════════════ */
.divider {
    width: 100%;
    height: 1px;
    background: var(--glass-border);
    border: none;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
    border-top: 1px solid var(--glass-border);
    padding: var(--space-xl) 0 var(--space-lg);
    margin-top: var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════ */
.cta-banner {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 201, 131, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner h2 {
    position: relative;
    z-index: 1;
}

.cta-banner p {
    position: relative;
    z-index: 1;
    margin: 0 auto var(--space-lg);
    max-width: 600px;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Fade in from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .grid-layout--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .split-layout .split-content {
        padding-right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta-wrap {
        display: none;
    }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-color);
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 999;
    }

    .nav-links.mobile-open a {
        font-size: 1.2rem;
        opacity: 1;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        background: transparent;
        border: none;
        padding: 0 0 0 20px;
        min-width: 0;
    }

    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }

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

    .grid-layout--2,
    .grid-layout--3 {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

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

    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .metrics-bar {
        grid-template-columns: 1fr;
    }

    .glass-card {
        padding: var(--space-md);
    }
}

/* Image Icons */
.s-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 12px;
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: drop-shadow(0 2px 8px rgba(124, 201, 131, 0.2));
}

.s-tile:hover .s-icon-img,
.service-tile:hover .s-icon-img,
.glass-card:hover .s-icon-img {
    transform: translateY(-6px);
    filter: drop-shadow(0 6px 16px rgba(124, 201, 131, 0.4));
}

