/* ========================================
   Turaco Fund Administration — Stylesheet
   Deep Emerald Theme | Geometric Wireframe | Premium
   Inspired by angular polygon aesthetic
   ======================================== */

/* ---------- Variables ---------- */
:root {
    --emerald-900: #062e1f;
    --emerald-850: #073d29;
    --emerald-800: #0a4d33;
    --emerald-700: #0d6b46;
    --emerald-600: #11865a;
    --emerald-500: #1a9e6c;
    --emerald-400: #3ec88a;
    --emerald-300: #6edba8;
    --emerald-100: #d1f5e0;
    --emerald-50:  #edfaf3;

    --gold-400: #c9a84c;
    --gold-300: #d4ba6e;
    --gold-200: #e0cc91;

    --white: #ffffff;
    --gray-50:  #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --container: 1200px;
    --section-pad: 140px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--gray-900);
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; color: var(--gray-500); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background: var(--emerald-700);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--emerald-800);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(13, 107, 70, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--emerald-700);
}
.btn-white:hover {
    background: var(--emerald-50);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-full { width: 100%; }

/* ---------- Section ---------- */
.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--emerald-700);
    margin-bottom: 20px;
    position: relative;
    padding-left: 28px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 1px;
    background: var(--emerald-700);
}

.section-header {
    max-width: 640px;
    margin-bottom: 80px;
}
.section-header h2 { margin-bottom: 20px; }
.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8;
}

.section-grid {
    display: grid;
    gap: 80px;
    align-items: center;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}
.logo-img {
    height: 44px;
    width: auto;
    filter: invert(1);
    transition: filter var(--transition);
}
.navbar.scrolled .logo-img {
    filter: invert(31%) sepia(94%) saturate(487%) hue-rotate(121deg) brightness(92%) contrast(89%);
}
.logo-text {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--white);
    transition: var(--transition);
}
.logo-light { font-weight: 400; }
.navbar.scrolled .logo-text { color: var(--gray-900); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-links a {
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.02em;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a { color: var(--gray-600); }
.navbar.scrolled .nav-links a:hover { color: var(--gray-900); }

.nav-cta {
    padding: 10px 18px !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 2px;
    white-space: nowrap;
}
.nav-cta:hover {
    background: rgba(255,255,255,0.1);
}
.navbar.scrolled .nav-cta {
    border-color: var(--emerald-700) !important;
    color: var(--emerald-700) !important;
}
.navbar.scrolled .nav-cta:hover {
    background: var(--emerald-700);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--gray-900); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--emerald-900) 0%, var(--emerald-850) 40%, #041f15 100%);
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 46, 31, 0.2) 0%,
        rgba(6, 46, 31, 0.05) 40%,
        rgba(4, 31, 21, 0.4) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    padding-top: 120px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--emerald-300);
    border: 1px solid rgba(110, 219, 168, 0.3);
    padding: 8px 20px;
    margin-bottom: 32px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 28px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.hero-scroll span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.35);
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.stat-item { text-align: center; }

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--emerald-700);
    line-height: 1;
}
.stat-suffix {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-700);
}
.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-200);
}

/* ---------- About ---------- */
.about-grid {
    grid-template-columns: 1fr 1fr;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-content p {
    margin-bottom: 16px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-50);
    border-radius: 2px;
}
.highlight-icon svg {
    width: 24px;
    height: 24px;
    color: var(--emerald-700);
}
.highlight-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-900);
}
.highlight-item span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.about-visual {
    position: relative;
    height: 560px;
    background: var(--emerald-900);
    border-radius: 2px;
    overflow: hidden;
}

.about-map-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-map-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.arc-line {
    animation: dashFlow 3s linear infinite;
}
@keyframes dashFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -40; }
}

.hub-pulse {
    animation: hubGlow 2.5s ease-in-out infinite;
}
.hub-pulse-inner {
    animation: hubGlow 2.5s ease-in-out infinite 0.5s;
}
@keyframes hubGlow {
    0%, 100% { opacity: 0.3; r: 10; }
    50% { opacity: 0.8; r: 24; }
}

/* ---------- Services ---------- */
.services {
    background: var(--gray-50);
}

/* Service category sections */
.services-category {
    margin-bottom: 64px;
}
.services-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--emerald-700);
}
.category-header h3 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--emerald-700);
}
.category-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-700);
    border-radius: 2px;
}
.category-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 48px 36px;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--emerald-700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    border-color: var(--emerald-300);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--emerald-700);
}
.service-card.featured::before {
    transform: scaleX(1);
}

.service-number {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--gray-300);
    font-weight: 700;
    margin-bottom: 28px;
}

.service-icon {
    margin-bottom: 28px;
}
.service-icon svg {
    width: 48px;
    height: 48px;
    color: var(--emerald-700);
}

.service-card h3 {
    margin-bottom: 16px;
    color: var(--gray-900);
}
.service-card > p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-list {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-list li {
    font-size: 0.85rem;
    color: var(--gray-600);
    padding-left: 20px;
    position: relative;
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 1px;
    background: var(--emerald-700);
}

.service-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--emerald-700);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.service-link:hover {
    gap: 10px;
}
.service-link span {
    transition: var(--transition);
}

/* ---------- Approach ---------- */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.approach-item {
    position: relative;
    padding-top: 32px;
}

.approach-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--emerald-700);
}

.approach-step {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--emerald-700);
    font-weight: 700;
    margin-bottom: 16px;
}

.approach-item h3 {
    margin-bottom: 12px;
}

.approach-item p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ---------- Leadership ---------- */
.leadership {
    background: var(--gray-50);
}

.leadership-grid {
    grid-template-columns: 1fr 1fr;
}

.leadership-content p {
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.8;
}
.leadership-content .btn {
    margin-top: 24px;
}

.leadership-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.leader-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    transition: var(--transition);
}
.leader-card:hover {
    border-color: var(--emerald-400);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.leader-avatar svg {
    width: 64px;
    height: 64px;
}

.leader-info strong {
    display: block;
    font-size: 1rem;
    color: var(--gray-900);
}
.leader-info span {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ---------- Insights ---------- */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.insight-card {
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    transition: var(--transition);
    background: var(--white);
}
.insight-card:hover {
    border-color: var(--emerald-400);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transform: translateY(-2px);
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.insight-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-700);
}
.insight-date {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.insight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}
.insight-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ---------- Client Portal ---------- */
.portals {
    background: var(--gray-50);
}

.portal-centered {
    max-width: 520px;
    margin: 0 auto;
}

/* ---------- Investor Relations ---------- */
.investor-relations {
    background: var(--white);
}

.ir-grid {
    grid-template-columns: 1fr 1fr;
}

.ir-content p {
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.8;
}

.ir-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}
.ir-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 500;
}
.ir-list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--emerald-700);
}

.portal-card {
    background: var(--white);
    padding: 48px 40px;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.portal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--emerald-700);
}
.portal-card:hover {
    border-color: var(--emerald-300);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.portal-icon {
    margin-bottom: 24px;
}
.portal-icon svg {
    width: 48px;
    height: 48px;
    color: var(--emerald-700);
}

.portal-card h3 {
    font-size: 1.35rem;
    color: var(--gray-900);
    margin-bottom: 12px;
}
.portal-card > p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.portal-form .form-group {
    margin-bottom: 16px;
}

.portal-help {
    display: block;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--emerald-700);
    margin-top: 16px;
    transition: var(--transition);
}
.portal-help:hover {
    color: var(--emerald-800);
}

.portal-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 16px;
    background: var(--emerald-50);
    border-radius: 2px;
    border-left: 3px solid var(--emerald-400);
}
.portal-note svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--emerald-600);
    margin-top: 1px;
}
.portal-note span {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(160deg, var(--emerald-900) 0%, var(--emerald-850) 50%, #041f15 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}
.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}
.cta-content p {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* ---------- Contact ---------- */
.contact-grid {
    grid-template-columns: 1fr 1.2fr;
}

.contact-info p {
    color: var(--gray-500);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--emerald-700);
}
.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-900);
}
.contact-item span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.contact-form-wrapper {
    background: var(--gray-50);
    padding: 48px;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--gray-900);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-700);
    box-shadow: 0 0 0 3px rgba(13, 107, 70, 0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 16px;
    line-height: 1.6;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--emerald-900);
    color: rgba(255,255,255,0.5);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-img { filter: invert(1); }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4 {
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--emerald-300); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    :root { --section-pad: 100px; }

    .services-grid { grid-template-columns: 1fr 1fr; }
    .insights-grid { grid-template-columns: 1fr 1fr; }

    .approach-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-pad: 80px; }

    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        inset: 0;
        background: var(--emerald-900);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    .nav-links.active {
        opacity: 1;
        pointer-events: all;
    }
    .nav-links a { color: var(--white) !important; font-size: 1.2rem; }

    .about-grid,
    .leadership-grid,
    .contact-grid,
    .ir-grid { grid-template-columns: 1fr; }

    .services-grid,
    .insights-grid { grid-template-columns: 1fr; }

    .approach-grid { grid-template-columns: 1fr; }

    .stats-grid {
        flex-direction: column;
        gap: 32px;
    }
    .stat-divider {
        width: 48px;
        height: 1px;
    }

    .hero-content { padding-top: 100px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; }

    .contact-form-wrapper { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

    .about-visual { height: 360px; }
}

@media (max-width: 480px) {
    :root { --section-pad: 60px; }
    .service-card { padding: 32px 24px; }
    .insight-card { padding: 28px 24px; }
    .section-header { margin-bottom: 48px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
}
