/* ============================================
   ISAAC DARMANIN — Complete Stylesheet
   Dark theme · Phthalo Green · All pages
   ============================================ */

:root {
    --bg-deep: #080b0f;
    --bg-primary: #0c1017;
    --bg-surface: #131921;
    --bg-surface-hover: #1a222e;
    --bg-elevated: #1e2836;
    --accent: #1a6b4a;
    --accent-light: #22c55e;
    --accent-mid: #1a9956;
    --accent-glow: rgba(34, 197, 94, 0.15);
    --accent-subtle: rgba(34, 197, 94, 0.06);
    --text-primary: #e8ecf1;
    --text-secondary: #94a3b8;
    --text-muted: #5a6475;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --section-pad: clamp(4rem, 8vw, 7rem);
    --container-max: 1120px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg-deep); color: var(--text-primary); line-height: 1.7; font-size: 16px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Utilities */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
.section-eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-light); margin-bottom: 0.75rem; }

/* ============================================ NAV ============================================ */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(8,11,15,0.75); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); transition: background 0.3s var(--ease); }
.nav__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav__logo { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--text-primary); letter-spacing: -0.02em; }
.nav__logo-dot { color: var(--accent-light); }
.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__link { font-size: 0.88rem; font-weight: 500; color: var(--text-secondary); transition: color 0.2s var(--ease); position: relative; }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent-light); transition: width 0.3s var(--ease); border-radius: 1px; }
.nav__link:hover, .nav__link--active { color: var(--text-primary); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__link--cta { background: var(--accent); color: #fff !important; padding: 0.5rem 1.25rem; border-radius: 6px; transition: background 0.2s var(--ease), transform 0.2s var(--ease); }
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--accent-mid); transform: translateY(-1px); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.nav__toggle-bar { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav__toggle.is-open .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle.is-open .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================ HERO ============================================ */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 7rem 1.5rem 4rem; position: relative; overflow: hidden; }
.hero__bg-glow { position: absolute; top: -30%; right: -15%; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(26,107,74,0.3) 0%, transparent 70%); filter: blur(80px); pointer-events: none; }
.hero__bg-glow--2 { top: auto; bottom: -20%; right: auto; left: -15%; background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%); width: 500px; height: 500px; }
.hero__grid-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 100%); }
.hero__content { max-width: 740px; text-align: center; position: relative; z-index: 1; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 500; color: var(--accent-light); background: var(--accent-subtle); border: 1px solid rgba(34,197,94,0.15); padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.75rem; }
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-light); animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero__headline { font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.hero__headline-accent { background: linear-gradient(135deg, var(--accent-light) 0%, #34d399 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__subheadline { font-size: clamp(1rem, 1.8vw, 1.12rem); color: var(--text-secondary); line-height: 1.75; max-width: 580px; margin: 0 auto 2.25rem; }
.hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__stats-strip { display: flex; align-items: center; justify-content: center; gap: 2rem; }
.hero__mini-stat { text-align: center; }
.hero__mini-stat-num { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; }
.hero__mini-stat-label { font-size: 0.75rem; color: var(--text-muted); }
.hero__mini-stat-divider { width: 1px; height: 32px; background: var(--border-hover); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; padding: 0.75rem 1.5rem; border-radius: 8px; transition: all 0.25s var(--ease); cursor: pointer; border: none; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-mid); transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.btn--secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border-hover); }
.btn--secondary:hover { border-color: var(--accent-mid); color: var(--accent-light); transform: translateY(-2px); }

/* ============================================ PROOF ============================================ */
.proof { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-primary); padding: 1.75rem 1.5rem; }
.proof__inner { max-width: var(--container-max); margin: 0 auto; text-align: center; }
.proof__label { font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 1rem; }
.proof__badges { display: flex; justify-content: center; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.proof__badge { display: flex; align-items: center; gap: 0.5rem; color: var(--text-secondary); font-size: 0.82rem; font-weight: 500; }
.proof__icon { width: 18px; height: 18px; color: var(--accent-light); flex-shrink: 0; }

/* ============================================ INTRO ============================================ */
.intro { padding: var(--section-pad) 1.5rem; }
.intro__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.intro__heading { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.intro__text { font-size: 1.02rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; }
.intro__link { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.92rem; font-weight: 600; color: var(--accent-light); transition: gap 0.2s var(--ease); }
.intro__link:hover { gap: 0.6rem; }

/* ============================================ SERVICES (Home) ============================================ */
.services { padding: var(--section-pad) 1.5rem; background: var(--bg-primary); }
.services__inner { max-width: var(--container-max); margin: 0 auto; }
.services__header { text-align: center; margin-bottom: 3rem; }
.services__heading { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.6rem; }
.services__subtext { color: var(--text-secondary); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.service-card { display: flex; flex-direction: column; background: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; transition: all 0.3s var(--ease); position: relative; }
.service-card:hover { border-color: var(--accent); background: var(--bg-surface-hover); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.service-card__icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--accent-subtle); border: 1px solid rgba(34,197,94,0.1); margin-bottom: 1rem; }
.service-card__icon svg { width: 20px; height: 20px; color: var(--accent-light); }
.service-card__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }
.service-card__desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; flex: 1; }
.service-card__arrow { color: var(--text-muted); font-size: 1.2rem; margin-top: 1rem; transition: color 0.2s var(--ease), transform 0.2s var(--ease); }
.service-card:hover .service-card__arrow { color: var(--accent-light); transform: translateX(4px); }

/* ============================================ RESULTS ============================================ */
.results { padding: var(--section-pad) 1.5rem; }
.results__inner { max-width: var(--container-max); margin: 0 auto; }
.results__header { text-align: center; margin-bottom: 3rem; }
.results__heading { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.6rem; }
.results__subtext { color: var(--text-secondary); font-size: 1rem; max-width: 460px; margin: 0 auto; }
.results__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.stat-card { text-align: center; padding: 2.25rem 1.25rem; background: var(--bg-primary); border: 1px solid var(--border); border-radius: 12px; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.stat-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.stat-card__number { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; background: linear-gradient(135deg, var(--accent-light), #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.4rem; }
.stat-card__label { display: block; font-size: 0.92rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.3rem; }
.stat-card__context { display: block; font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================ HOME CTA BANNER ============================================ */
.home-cta { padding: var(--section-pad) 1.5rem; background: var(--bg-primary); }
.home-cta__inner { max-width: 700px; margin: 0 auto; text-align: center; padding: 3.5rem 2.5rem; background: var(--bg-surface); border: 1px solid var(--border); border-radius: 16px; position: relative; overflow: hidden; }
.home-cta__glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 400px; height: 300px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); filter: blur(60px); pointer-events: none; }
.home-cta__heading { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 700; margin-bottom: 0.75rem; position: relative; }
.home-cta__text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.75rem; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }

/* ============================================ PAGE HERO (inner pages) ============================================ */
.page-hero { padding: 8rem 1.5rem 3.5rem; text-align: center; background: var(--bg-primary); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(26,107,74,0.2) 0%, transparent 70%); filter: blur(80px); pointer-events: none; }
.page-hero__inner { max-width: 640px; margin: 0 auto; position: relative; }
.page-hero__title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.page-hero__subtitle { font-size: clamp(1rem, 1.6vw, 1.08rem); color: var(--text-secondary); line-height: 1.75; }

/* ============================================ SERVICE BLOCKS (Services page) ============================================ */
.svc-list { padding: var(--section-pad) 1.5rem; }
.svc-list__inner { max-width: var(--container-max); margin: 0 auto; display: flex; flex-direction: column; gap: 1.75rem; }
.svc-block { display: flex; flex-direction: column; padding: 2rem; background: var(--bg-primary); border: 1px solid var(--border); border-radius: 12px; transition: border-color 0.3s var(--ease); }
.svc-block:hover { border-color: var(--accent); }
.svc-block__header { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.svc-block__icon-wrap { flex-shrink: 0; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--accent-subtle); border: 1px solid rgba(34,197,94,0.1); }
.svc-block__icon { width: 18px; height: 18px; color: var(--accent-light); }
.svc-block__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 0; }
.svc-block__desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.25rem; }
.svc-block__includes { margin-bottom: 1.25rem; }
.svc-block__includes-title { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.6rem; }
.svc-block__list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem 1.5rem; }
.svc-block__list li { font-size: 0.88rem; color: var(--text-secondary); padding-left: 1.1rem; position: relative; line-height: 1.55; }
.svc-block__list li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-mid); }
.svc-block__result { display: flex; align-items: baseline; gap: 0.65rem; padding: 0.85rem 1rem; background: var(--accent-subtle); border-left: 3px solid var(--accent-mid); border-radius: 0 8px 8px 0; }
.svc-block__result-number { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--accent-light); flex-shrink: 0; }
.svc-block__result-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.55; }

/* ============================================ SERVICES CTA ============================================ */
.svc-cta { padding: var(--section-pad) 1.5rem; background: var(--bg-primary); border-top: 1px solid var(--border); }
.svc-cta__inner { max-width: 600px; margin: 0 auto; text-align: center; }
.svc-cta__heading { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 700; margin-bottom: 0.6rem; }
.svc-cta__text { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.75rem; }
.svc-cta__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================ ABOUT — Intro ============================================ */
.about-intro { padding: var(--section-pad) 1.5rem; }
.about-intro__inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 3.5rem; align-items: start; }
.about-intro__photo-col { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 5rem; }
.about-intro__photo { width: 100%; border-radius: 12px; object-fit: cover; aspect-ratio: 3/4; border: 1px solid var(--border); }
.about-intro__cv-btn { width: 100%; gap: 0.5rem; font-size: 0.88rem; }
.about-intro__heading { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.about-intro__text { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 0.85rem; }
.about-intro__text:last-of-type { margin-bottom: 0; }

/* About section titles */
.about-section-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1.5rem; }

/* Skills */
.about-skills { padding: 0 1.5rem var(--section-pad); }
.about-skills__inner { max-width: var(--container-max); margin: 0 auto; padding: 2rem; background: var(--bg-primary); border: 1px solid var(--border); border-radius: 12px; }
.skills-grid, .interests-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.skill-tag { display: inline-block; padding: 0.4rem 0.9rem; font-size: 0.82rem; font-weight: 500; color: var(--text-secondary); background: var(--bg-surface); border: 1px solid var(--border); border-radius: 100px; transition: all 0.2s var(--ease); }
.skill-tag:hover { border-color: var(--accent); color: var(--accent-light); }

/* Work history */
.about-history { padding: var(--section-pad) 1.5rem; background: var(--bg-primary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-history__inner { max-width: var(--container-max); margin: 0 auto; }
.history-block { display: grid; grid-template-columns: 200px 1fr; gap: 2.5rem; padding: 2.25rem 0; border-bottom: 1px solid var(--border); }
.history-block:last-of-type { border-bottom: none; padding-bottom: 0; }
.history-block__meta { display: flex; flex-direction: column; gap: 0.3rem; }
.history-block__date { font-size: 0.85rem; font-weight: 600; color: var(--accent-light); }
.history-block__type { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.history-block__role { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.2rem; }
.history-block__company { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0.85rem; }
.history-block__narrative { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.72; margin-bottom: 0.65rem; }
.history-block__narrative:last-of-type { margin-bottom: 1.25rem; }
.history-block__results { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.history-block__stat { text-align: center; }
.history-block__stat-num { display: block; font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--accent-light); margin-bottom: 0.15rem; }
.history-block__stat-label { display: block; font-size: 0.75rem; color: var(--text-muted); line-height: 1.35; }

/* Education & Certs */
.about-edu { padding: var(--section-pad) 1.5rem; }
.about-edu__inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.edu-item { margin-bottom: 1.5rem; padding-left: 1rem; border-left: 2px solid var(--border); }
.edu-item__date { font-size: 0.75rem; font-weight: 600; color: var(--accent-light); text-transform: uppercase; letter-spacing: 0.06em; }
.edu-item__title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; margin: 0.15rem 0; }
.edu-item__place { font-size: 0.85rem; color: var(--text-muted); }
.cert-list { display: flex; flex-direction: column; gap: 0.65rem; }
.cert-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--text-secondary); }
.cert-item__icon { width: 16px; height: 16px; color: var(--accent-light); flex-shrink: 0; }
.lang-list { display: flex; flex-direction: column; gap: 0.4rem; }
.lang-item { display: flex; justify-content: space-between; padding: 0.45rem 0; border-bottom: 1px solid var(--border); }
.lang-item:last-child { border-bottom: none; }
.lang-item__name { font-size: 0.88rem; font-weight: 500; }
.lang-item__level { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================ CONTACT ============================================ */
.contact { padding: var(--section-pad) 1.5rem; }
.contact__inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.contact__form-title, .contact__details-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact__honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.contact__field { margin-bottom: 1.1rem; }
.contact__label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.35rem; }
.contact__input { width: 100%; padding: 0.7rem 0.9rem; font-family: var(--font-body); font-size: 0.92rem; color: var(--text-primary); background: var(--bg-surface); border: 1px solid var(--border); border-radius: 8px; outline: none; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.contact__input::placeholder { color: var(--text-muted); }
.contact__input:focus { border-color: var(--accent-mid); box-shadow: 0 0 0 3px var(--accent-glow); }
.contact__textarea { resize: vertical; min-height: 130px; }
.contact__submit { width: 100%; margin-top: 0.4rem; padding: 0.8rem; font-size: 0.95rem; }
.contact__success { text-align: center; padding: 3rem 1.5rem; background: var(--bg-surface); border: 1px solid var(--accent); border-radius: 12px; }
.contact__success svg { color: var(--accent-light); margin-bottom: 0.75rem; }
.contact__success h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; }
.contact__success p { font-size: 0.92rem; color: var(--text-secondary); }
.contact__detail { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1.35rem; }
.contact__detail-icon { flex-shrink: 0; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--accent-subtle); border: 1px solid rgba(34,197,94,0.08); }
.contact__detail-icon svg { width: 18px; height: 18px; color: var(--accent-light); }
.contact__detail-content { display: flex; flex-direction: column; gap: 0.1rem; }
.contact__detail-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.contact__detail-value { font-size: 0.92rem; color: var(--text-secondary); transition: color 0.2s var(--ease); }
a.contact__detail-value:hover { color: var(--accent-light); }
.contact__detail-value--static { color: var(--text-secondary); }
.contact__audit-box { margin-top: 1.75rem; padding: 1.25rem; background: var(--accent-subtle); border-left: 3px solid var(--accent-mid); border-radius: 0 10px 10px 0; }
.contact__audit-title { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; color: var(--accent-light); margin-bottom: 0.35rem; }
.contact__audit-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* ============================================ THANK YOU ============================================ */
.thankyou { min-height: calc(100vh - 64px - 200px); display: flex; align-items: center; justify-content: center; padding: 8rem 1.5rem 4rem; }
.thankyou__inner { max-width: 520px; text-align: center; }
.thankyou__icon { display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; border-radius: 50%; background: var(--accent-subtle); border: 1px solid rgba(34,197,94,0.15); margin-bottom: 1.5rem; }
.thankyou__icon svg { color: var(--accent-light); }
.thankyou__heading { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.thankyou__text { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 2rem; }

/* ============================================ FOOTER ============================================ */
.footer { background: var(--bg-primary); border-top: 1px solid var(--border); padding: 3rem 1.5rem 0; }
.footer__inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer__logo { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; display: block; margin-bottom: 0.4rem; }
.footer__tagline { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.footer__col-title { display: block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.85rem; }
.footer__link { display: flex; align-items: center; gap: 0.35rem; font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 0.5rem; transition: color 0.2s var(--ease); }
.footer__link:hover { color: var(--accent-light); }
.footer__social-icon { width: 15px; height: 15px; }
.footer__bottom { border-top: 1px solid var(--border); max-width: var(--container-max); margin: 0 auto; padding: 1.25rem 0; text-align: center; }
.footer__bottom p { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================ RESPONSIVE ============================================ */
@media (max-width: 768px) {
    .nav__toggle { display: flex; }
    .nav__menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--bg-surface); flex-direction: column; align-items: flex-start; padding: 5rem 2rem 2rem; gap: 0; border-left: 1px solid var(--border); transition: right 0.35s var(--ease); }
    .nav__menu.is-open { right: 0; }
    .nav__link { font-size: 1rem; padding: 0.7rem 0; width: 100%; border-bottom: 1px solid var(--border); }
    .nav__link::after { display: none; }
    .nav__link--cta { margin-top: 0.75rem; width: auto; }
    .hero { padding-top: 5.5rem; min-height: auto; padding-bottom: 3rem; }
    .hero__stats-strip { gap: 1rem; }
    .hero__mini-stat-num { font-size: 1.2rem; }
    .services__grid { grid-template-columns: 1fr; }
    .results__grid { grid-template-columns: 1fr; gap: 1rem; }
    .footer__inner { grid-template-columns: 1fr; gap: 1.75rem; }
    .proof__badges { gap: 1.25rem; }
    .svc-block { padding: 1.5rem; }
    .svc-block__list { grid-template-columns: 1fr; }
    .svc-block__result { flex-direction: column; gap: 0.3rem; }
    .svc-cta__buttons { flex-direction: column; align-items: center; }
    .about-intro__inner { grid-template-columns: 1fr; gap: 2rem; }
    .about-intro__photo-col { position: static; flex-direction: row; align-items: stretch; }
    .about-intro__photo { max-width: 160px; aspect-ratio: 1; }
    .about-intro__cv-btn { flex: 1; }
    .history-block { grid-template-columns: 1fr; gap: 0.6rem; }
    .history-block__results { grid-template-columns: repeat(2, 1fr); }
    .about-edu__inner { grid-template-columns: 1fr; gap: 2rem; }
    .about-skills__inner { padding: 1.5rem; }
    .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .home-cta__inner { padding: 2.5rem 1.5rem; }
}
@media (max-width: 480px) {
    .hero__ctas { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; }
    .proof__badges { flex-direction: column; gap: 0.85rem; }
    .hero__stats-strip { flex-direction: column; gap: 0.75rem; }
    .hero__mini-stat-divider { width: 40px; height: 1px; }
}
