/* ============================================
   KODA Fiduciaire — Stylesheet
   Apple-inspired: minimal, bold, magnetic
   ============================================ */

:root {
    --navy: #1B2A4A;
    --navy-light: #243556;
    --navy-dark: #111D35;
    --teal: #3D7B6F;
    --teal-light: #4A9486;
    --teal-dark: #2E5F55;
    --white: #FFFFFF;
    --gray-50: #FAFBFC;
    --gray-100: #F5F5F7;
    --gray-200: #E8E8ED;
    --gray-400: #9CA3AF;
    --gray-500: #86868B;
    --gray-600: #6E6E73;
    --gray-800: #1D1D1F;
    --gray-900: #111827;
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1180px;
    --header-height: 72px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(61, 123, 111, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
}

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

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

body {
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body.nav-open {
    overflow: hidden;
}

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

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

ul {
    list-style: none;
}

::selection {
    background: rgba(61, 123, 111, 0.15);
    color: var(--navy);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* --- Typography (Apple-inspired: large, bold, spacious) --- */
h1, h2, h3, h4 {
    color: var(--navy);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 2.4rem;
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}

h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
}

/* --- Buttons (pill-shaped, Swiss refined) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 40px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border: none;
    border-radius: 980px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(61, 123, 111, 0.2);
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(61, 123, 111, 0.3);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 1.5px solid rgba(61, 123, 111, 0.25);
}

.btn-outline:hover {
    border-color: var(--teal);
    background: rgba(61, 123, 111, 0.05);
    transform: translateY(-2px);
}

.btn-outline:active {
    transform: translateY(0) scale(0.98);
}

/* Light variant for dark backgrounds — glassmorphism */
.hero .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   HEADER (frosted glass, Apple-style)
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    transition: border-color var(--transition);
}

.site-header.scrolled {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    flex-shrink: 0;
    transition: opacity var(--transition);
}

.logo:hover {
    opacity: 0.7;
}

.logo-desktop {
    height: 52px;
    width: auto;
}

.logo-mobile {
    display: none;
    height: 40px;
    width: auto;
}

/* Navigation — outside header, overlays header area on desktop */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    pointer-events: none;
}

.nav-list {
    display: flex;
    gap: 40px;
    pointer-events: auto;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-600);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: all var(--transition-slow);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--gray-800);
}

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

.nav-link.active {
    color: var(--gray-800);
    font-weight: 500;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--gray-100);
    border-radius: 980px;
    padding: 4px 4px;
}

.lang-link {
    color: var(--gray-500);
    padding: 4px 12px;
    border-radius: 980px;
    transition: all var(--transition);
}

.lang-link.active {
    color: var(--gray-800);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.lang-link:hover:not(.active) {
    color: var(--gray-800);
}

.lang-sep {
    display: none;
}

/* Bottom sheet elements — hidden on desktop */
.nav-overlay {
    display: none;
}

.nav-sheet-extras {
    display: none;
}

.nav-arrow {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--gray-800);
    transition: all var(--transition);
    transform-origin: center;
    border-radius: 2px;
}

.nav-open .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO (Apple-style: massive typography, centered)
   ============================================ */
.hero {
    padding: 220px 0 160px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--navy) url('../img/anis1969-geneva-6597611.jpg') center center / cover no-repeat;
}

.hero::before,
.page-header-services::before,
.page-header-contact::before,
.page-header-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

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

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal-light);
    margin-bottom: 20px;
}

.hero-title {
    max-width: 720px;
    margin: 0 auto 24px;
    color: var(--white);
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 44px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 140px 0;
}

.section-alt {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    margin-bottom: 18px;
}

.section-header p {
    color: var(--gray-500);
    max-width: 480px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- Values Grid V2 --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card-v2 {
    position: relative;
    padding: 44px 36px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.value-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card-v2:hover {
    border-color: rgba(61, 123, 111, 0.12);
    box-shadow: 0 20px 52px rgba(27, 42, 74, 0.08), 0 4px 16px rgba(61, 123, 111, 0.06);
    transform: translateY(-6px);
}

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

.value-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
    letter-spacing: -0.04em;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.value-card-v2:hover .value-number {
    color: rgba(61, 123, 111, 0.08);
    transform: scale(1.1);
}

.value-icon-v2 {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.value-icon-trust {
    background: linear-gradient(135deg, rgba(61, 123, 111, 0.1), rgba(61, 123, 111, 0.05));
    color: var(--teal);
}

.value-icon-expertise {
    background: linear-gradient(135deg, rgba(27, 42, 74, 0.1), rgba(27, 42, 74, 0.05));
    color: var(--navy);
}

.value-icon-proximity {
    background: linear-gradient(135deg, rgba(74, 148, 134, 0.12), rgba(61, 123, 111, 0.05));
    color: var(--teal-light);
}

.value-card-v2:hover .value-icon-v2 {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(61, 123, 111, 0.15);
}

.value-icon-v2 svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-content h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.value-content p {
    color: var(--gray-500);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Services Grid V2 --- */
.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card-v2 {
    position: relative;
    padding: 44px 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-v2-glow {
    position: absolute;
    top: -40%;
    right: -40%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(61, 123, 111, 0.06) 0%, transparent 70%);
    pointer-events: none;
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card-v2:hover .service-card-v2-glow {
    opacity: 1;
    transform: scale(1.5);
}

.service-card-v2:hover {
    border-color: rgba(61, 123, 111, 0.12);
    box-shadow: 0 24px 56px rgba(27, 42, 74, 0.08), 0 4px 16px rgba(61, 123, 111, 0.06);
    transform: translateY(-6px);
}

.service-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.05em;
    transition: color var(--transition);
}

.service-card-v2:hover .service-num {
    color: var(--teal);
}

.service-icon-v2 {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-icon-accounting {
    background: linear-gradient(135deg, #E8F5F2, #D4EDE8);
    color: var(--teal);
}

.service-icon-creation {
    background: linear-gradient(135deg, #E4EAF5, #D4DCF0);
    color: var(--navy);
}

.service-icon-admin {
    background: linear-gradient(135deg, #E8F5F2, #D4EDE8);
    color: var(--teal-dark);
}

.service-icon-tax {
    background: linear-gradient(135deg, #ECE8F5, #DED4F0);
    color: #5B4A8A;
}

.service-icon-recovery {
    background: linear-gradient(135deg, #E4EAF5, #D4DCF0);
    color: var(--navy-light);
}

.service-card-v2:hover .service-icon-v2 {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-icon-v2 svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card-v2 h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    transition: color var(--transition);
}

.service-card-v2:hover h3 {
    color: var(--teal);
}

.service-card-v2 p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    font-size: 1.2rem;
    color: var(--teal);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-v2:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-card-v2-wide {
    grid-column: 1 / -1;
}

/* --- Featured Service Card --- */
.service-card-v2-featured {
    grid-column: 1 / -1;
    border: 2px solid var(--teal);
    background: linear-gradient(135deg, rgba(61, 123, 111, 0.03) 0%, var(--white) 100%);
    position: relative;
}

.service-card-v2-featured:hover {
    border-color: var(--teal);
    box-shadow: 0 24px 56px rgba(61, 123, 111, 0.14), 0 4px 16px rgba(61, 123, 111, 0.08);
}

.service-featured-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--teal);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 12px;
}

.service-icon-featured {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark, #2a6b5e));
    color: var(--white);
}

/* --- Featured Service Detail --- */
.service-detail-featured {
    border-bottom: 2px solid var(--teal);
    padding-bottom: 48px;
    margin-bottom: 16px;
}

.service-detail-featured .service-featured-badge {
    margin-bottom: 8px;
}

/* --- Service Detail Sections --- */
.service-detail {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 36px;
    align-items: start;
    padding: 64px 0;
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail:hover .service-detail-icon {
    transform: scale(1.15);
    color: var(--teal-light);
}

.service-detail-icon {
    width: 48px;
    height: 48px;
    color: var(--teal);
    margin-top: 4px;
    transition: all var(--transition-slow);
}

.service-detail-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-detail p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* --- CTA Section --- */
.cta-section {
    padding: 120px 0;
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    display: none;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 2.8rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 44px;
    font-size: 1.1rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--teal);
    padding: 19px 48px;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(61, 123, 111, 0.35);
}

.cta-section .btn-primary:hover {
    background: var(--teal-light);
    box-shadow: 0 8px 32px rgba(61, 123, 111, 0.4);
    transform: translateY(-3px);
}

/* --- Page Header --- */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    margin-bottom: 20px;
}

.page-header p {
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* About page header with background image */
/* Services page header with background image */
.page-header-services {
    background: var(--navy) url('../img/business-sales-meeting.jpg') center center / cover no-repeat;
}


.page-header-services h1 {
    color: var(--white);
}

.page-header-services p {
    color: rgba(255, 255, 255, 0.7);
}

/* Contact page header with background image */
.page-header-contact {
    background: var(--navy) url('../img/business-man-checks-mobile.jpg') center 30% / cover no-repeat;
}


.page-header-contact h1 {
    color: var(--white);
}

.page-header-contact p {
    color: rgba(255, 255, 255, 0.7);
}

/* About page header with background image */
.page-header-about {
    background: var(--navy) url('../img/csr_ch-city-3967963.jpg') center center / cover no-repeat;
}


.page-header-about h1 {
    color: var(--white);
}

.page-header-about p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
    max-width: 720px;
    margin: 0 auto;
}

.about-content h2 {
    margin-top: 56px;
    margin-bottom: 16px;
    font-size: 1.6rem;
}

.about-content p {
    color: var(--gray-600);
    line-height: 1.85;
    font-size: 1.05rem;
}

/* --- About Intro Block --- */
.about-intro-block {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--gray-600);
}

/* --- About Narrative (Philosophy + Location side by side) --- */
.about-narrative {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-narrative-block {
    padding: 44px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-narrative-block:hover {
    box-shadow: 0 16px 48px rgba(27, 42, 74, 0.08);
    transform: translateY(-4px);
    border-color: rgba(61, 123, 111, 0.12);
}

.about-narrative-block h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--navy);
}

.about-narrative-block p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0 60px;
}

.about-value {
    padding: 36px 32px;
    background: var(--gray-50);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-value:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 12px 40px rgba(27, 42, 74, 0.07);
    transform: translateY(-4px);
}

.about-value h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--teal);
}

.about-value p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Founder Card --- */
.founder-card {
    display: flex;
    gap: 36px;
    padding: 44px;
    margin: 36px 0 60px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal), var(--teal-light));
    border-radius: 4px 0 0 4px;
}

.founder-card:hover {
    border-color: rgba(61, 123, 111, 0.2);
    box-shadow: var(--shadow-lg);
}

.founder-avatar {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: transform var(--transition);
}

.founder-card:hover .founder-avatar {
    transform: scale(1.05);
}

.founder-avatar svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.founder-info {
    flex: 1;
    min-width: 0;
}

.founder-name {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.founder-role {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 16px;
}

.founder-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 980px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all var(--transition);
}

.founder-badge svg {
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.founder-card:hover .founder-badge {
    border-color: rgba(61, 123, 111, 0.2);
}

.founder-bio {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--navy);
    color: var(--white);
    border-radius: 980px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition);
}

.founder-linkedin svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.founder-linkedin:hover {
    background: #0a66c2;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.3);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font);
    font-size: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--gray-50);
    color: var(--gray-800);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(61, 123, 111, 0.1);
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.06);
}

.form-error {
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 6px;
    display: none;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

.alert {
    padding: 18px 24px;
    border-radius: var(--radius);
    margin-bottom: 36px;
    font-size: 0.95rem;
    font-weight: 500;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

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

.contact-info {
    padding-top: 8px;
}

.contact-info h3 {
    margin-bottom: 28px;
    font-size: 1.2rem;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
    transition: transform var(--transition);
}

.contact-info-item:hover {
    transform: translateX(4px);
}

.contact-info-icon {
    width: 20px;
    height: 20px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-item p {
    margin-bottom: 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.contact-info-item a {
    color: var(--gray-600);
    transition: color var(--transition);
}

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

.contact-map {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition);
}

.contact-map:hover {
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: none;
}

/* ============================================
   LEGAL PAGE
   ============================================ */
.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.legal-content p {
    color: var(--gray-600);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Animated gradient glow at the top */
.footer-glow {
    height: 2px;
    background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--teal-light), var(--teal), var(--teal-dark));
    background-size: 200% 100%;
    animation: footerGlow 4s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Subtle background orb */
.site-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61, 123, 111, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.site-footer .container {
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 64px;
    padding-bottom: 64px;
}

/* Brand column */
.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    transition: all var(--transition);
}

.footer-logo:hover {
    opacity: 0.8;
    transform: scale(1.03);
}

.footer-tagline {
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--transition);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social-link:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(61, 123, 111, 0.3);
}

/* Headings */
.site-footer h4 {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
    font-size: 0.7rem;
    position: relative;
    display: inline-block;
}

.site-footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}

/* Nav links with arrows */
.site-footer ul li {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.site-footer ul li a {
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: all var(--transition);
}

.site-footer ul li a:hover {
    color: var(--white);
    transform: translateX(6px);
}

.footer-link-arrow {
    display: inline-block;
    margin-right: 8px;
    font-size: 1.1rem;
    color: var(--teal);
    transition: transform var(--transition);
    line-height: 1;
}

.site-footer ul li a:hover .footer-link-arrow {
    transform: translateX(3px);
}

/* Contact items with icons */
.footer-contact-list li {
    margin-bottom: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    transition: all var(--transition);
}

a.footer-contact-item:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(61, 123, 111, 0.12);
    color: var(--teal-light);
    transition: all var(--transition);
}

.footer-contact-item:hover .footer-contact-icon {
    background: rgba(61, 123, 111, 0.2);
    transform: scale(1.08);
}

.footer-contact-icon svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-item span:last-child {
    padding-top: 6px;
    font-size: 0.88rem;
    line-height: 1.4;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.25);
    transition: all var(--transition);
}

.footer-bottom a:hover {
    color: var(--teal-light);
}

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

/* --- Tablet (768-1023px) --- */
@media (max-width: 1023px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .cta-section h2 { font-size: 2.2rem; }

    .container { padding: 0 20px; }

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

    .service-card-full,
    .service-card-v2-wide {
        grid-column: auto;
    }

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

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

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

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

    .section { padding: 100px 0; }
    .section-header { margin-bottom: 64px; }
}

/* --- Mobile (max 767px — iPhone, Android avg) --- */
@media (max-width: 767px) {
    :root {
        --header-height: 60px;
    }

    body { font-size: 15px; }

    h1 { font-size: 1.95rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.15rem; }
    .cta-section h2 { font-size: 1.8rem; }

    .container { padding: 0 24px; }

    .section {
        padding: 72px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    /* Header mobile — above overlay/sheet so hamburger & logo stay clickable */
    .site-header {
        height: var(--header-height);
        z-index: 1003;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
        height: 36px;
    }

    .hamburger {
        display: flex;
    }

    /* --- Bottom sheet navigation --- */
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-open .nav-overlay {
        opacity: 1;
        visibility: visible;
    }

    .nav {
        top: auto;
        bottom: 0;
        height: auto;
        display: block;
        pointer-events: auto;
        background: var(--white);
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
        padding: 36px 28px 32px;
        padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
        z-index: 1002;
        transform: translateY(100%);
        visibility: hidden;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                    visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        max-height: 85vh;
    }

    .nav-open .nav {
        transform: translateY(0);
        visibility: visible;
    }

    .nav-sheet-extras {
        display: block;
    }

    .nav-handle {
        display: block;
        width: 36px;
        height: 4px;
        background: var(--gray-200);
        border-radius: 2px;
        margin: 0 auto 24px;
        position: absolute;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-open .nav-list li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-open .nav-list li:nth-child(1) { transition-delay: 0.05s; }
    .nav-open .nav-list li:nth-child(2) { transition-delay: 0.10s; }
    .nav-open .nav-list li:nth-child(3) { transition-delay: 0.15s; }
    .nav-open .nav-list li:nth-child(4) { transition-delay: 0.20s; }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
        font-size: 17px;
        font-weight: 600;
        color: var(--navy);
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-link.active {
        color: var(--teal);
        font-weight: 700;
    }

    .nav-link::after {
        display: none;
    }

    .nav-arrow {
        display: inline;
        font-size: 14px;
        opacity: 0.3;
        font-weight: 400;
    }

    .nav-cta {
        margin-top: 20px;
        width: 100%;
        padding: 16px 32px;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        display: block;
    }

    .nav-lang {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 16px;
    }

    .nav-lang-link {
        font-size: 12px;
        font-weight: 600;
        color: var(--gray-400);
        padding: 4px 8px;
    }

    .nav-lang-link.active {
        color: var(--navy);
    }

    .nav-lang-sep {
        color: var(--gray-200);
        font-size: 12px;
    }

    .lang-switch {
        padding: 2px 2px;
    }

    .lang-link {
        padding: 3px 8px;
        font-size: 0.7rem;
    }

    /* Hero mobile — centré immersif */
    .hero {
        padding: 0;
        min-height: 100svh;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-position: center center;
    }

    .hero::before {
        background: linear-gradient(
            180deg,
            rgba(17, 29, 53, 0.35) 0%,
            rgba(27, 42, 74, 0.55) 50%,
            rgba(17, 29, 53, 0.75) 100%
        );
    }

    .hero .container {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .hero-label {
        display: block;
        color: var(--teal-light);
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        margin-bottom: 16px;
    }

    .hero-title {
        max-width: 100%;
        font-size: 1.95rem;
    }

    .hero p {
        font-size: 1rem;
        max-width: 320px;
        margin-bottom: 36px;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.75);
    }

    /* Page header about mobile */
    .page-header-about {
        background-position: center center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 0;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 16px 32px;
        font-size: 15px;
        font-weight: 600;
        min-height: 52px;
        letter-spacing: -0.01em;
    }

    .hero .btn-primary {
        box-shadow: 0 4px 16px rgba(61, 123, 111, 0.25);
    }

    .hero .btn-outline {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--white);
    }

    /* Values mobile — horizontal compact */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card-v2 {
        padding: 22px 24px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        border: none;
        border-radius: 16px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .value-card-v2::before {
        display: none;
    }

    .value-icon-v2 {
        width: 44px;
        height: 44px;
        min-width: 44px;
        margin-bottom: 0;
        border-radius: 12px;
    }

    .value-icon-v2 svg {
        width: 22px;
        height: 22px;
    }

    .value-number {
        display: none;
    }

    .value-content h3 {
        font-size: 15px;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 4px;
    }

    .value-content p {
        font-size: 13px;
        line-height: 1.55;
    }

    /* Services grid mobile — horizontal compact */
    .services-grid-v2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card-v2 {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border: none;
        border-radius: 16px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
        background: var(--gray-50);
    }

    .service-card-v2-wide {
        grid-column: auto;
    }

    .service-card-v2-featured {
        grid-column: auto;
        border: none;
        border-left: 3px solid var(--teal);
    }

    .service-featured-badge {
        display: none;
    }

    .service-card-v2-glow {
        display: none;
    }

    .service-icon-v2 {
        width: 44px;
        height: 44px;
        min-width: 44px;
        margin-bottom: 14px;
        border-radius: 12px;
    }

    .service-icon-v2 svg {
        width: 20px;
        height: 20px;
    }

    .service-card-v2 h3 {
        font-size: 15px;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 6px;
    }

    .service-card-v2 p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .service-arrow {
        display: none;
    }

    /* Service detail mobile */
    .service-detail {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 36px 0;
    }

    .service-detail-icon {
        width: 36px;
        height: 36px;
    }

    .service-detail h3 {
        font-size: 1.15rem;
    }

    .service-detail p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Page header mobile */
    .page-header {
        padding: 100px 0 40px;
    }

    .page-header p {
        font-size: 1rem;
        max-width: 100%;
    }

    /* CTA mobile */
    .cta-section {
        padding: 64px 0;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .cta-section .btn-primary {
        padding: 16px 32px;
        font-size: 15px;
        font-weight: 600;
        min-height: 52px;
        letter-spacing: -0.01em;
    }

    /* About mobile */
    .about-content h2 {
        margin-top: 40px;
        font-size: 1.3rem;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 28px 0 40px;
    }

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

    .about-narrative-block {
        padding: 28px 24px;
    }

    .about-intro-text {
        font-size: 1.05rem;
    }

    .about-value {
        padding: 22px 24px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        border-radius: 16px;
    }

    .about-value h3 {
        font-size: 15px;
        font-weight: 700;
    }

    .about-value p {
        font-size: 13px;
        line-height: 1.55;
    }

    /* Founder card mobile */
    .founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
    }

    .founder-badges {
        justify-content: center;
    }

    .founder-bio {
        text-align: left;
    }

    /* Contact mobile */
    .contact-grid {
        gap: 48px;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px 18px;
        font-size: 16px; /* prevents iOS zoom on focus */
        border-radius: 12px;
    }

    .form-group textarea {
        min-height: 140px;
    }

    .contact-info h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .contact-map iframe {
        height: 220px;
    }

    /* Footer mobile */
    .site-footer .container {
        padding-top: 56px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-logo {
        height: 32px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-social-link {
        width: 48px;
        height: 48px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 24px 0;
    }

    /* Legal mobile */
    .legal-content h2 {
        margin-top: 28px;
        font-size: 1.05rem;
    }

    .legal-content p {
        font-size: 0.9rem;
    }
}

/* --- Small phones (max 374px — iPhone SE, small Androids) --- */
@media (max-width: 374px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }
    .cta-section h2 { font-size: 1.55rem; }

    .container { padding: 0 20px; }

    .hero {
        padding: 100px 0 56px;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-label {
        font-size: 10px;
    }

    .section {
        padding: 56px 0;
    }

    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .service-card-v2 {
        padding: 20px 20px;
    }

    .service-icon-v2 {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .service-card-v2 h3 {
        font-size: 14px;
    }

    .service-card-v2 p {
        font-size: 12px;
    }

    .value-card-v2 {
        padding: 20px 20px;
    }

    .value-icon-v2 {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .value-content h3 {
        font-size: 14px;
    }

    .value-content p {
        font-size: 12px;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 16px 0;
    }
}

/* --- Safe area for notched phones (iPhone X+) --- */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .site-footer .footer-bottom {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

/* --- Touch device optimizations --- */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .service-card-v2:hover,
    .about-value:hover,
    .value-card:hover,
    .value-card-v2:hover {
        transform: none;
        box-shadow: none;
    }

    .service-card:active,
    .service-card-v2:active {
        transform: scale(0.98);
        transition-duration: 0.1s;
    }

    .about-value:active {
        transform: scale(0.98);
        transition-duration: 0.1s;
    }

    .btn:active {
        transform: scale(0.96);
        transition-duration: 0.1s;
    }

    .contact-info-item:hover {
        transform: none;
    }

    /* Larger touch targets */
    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .btn {
        min-height: 48px;
    }
}
