/* ========================================
   AcademiaHRM Landing V2 - New Design CSS
   Color Palette: Logo Blue (#1A428A) + White
   No gradients, shadow-based depth
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
    --primary: #1A428A;
    --primary-light: #2B5BB0;
    --primary-dark: #0F2A5E;
    --primary-rgb: 26, 66, 138;
    --white: #FFFFFF;
    --bg: #FFFFFF;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-muted: #8a8a9a;
    --border-color: #e8eaf0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Module Colors */
    --mod-hedef: #E74C3C;
    --mod-yetkinlik: #3498DB;
    --mod-performans: #9B59B6;
    --mod-insankultur: #1ABC9C;
    --mod-izin: #F39C12;
    --mod-ozluk: #2ECC71;
    --mod-duyuru: #E67E22;
    --mod-dilekoner: #00BCD4;
    --mod-kariyer: #FF5722;
    --mod-egitim: #8BC34A;
    --mod-isealim: #673AB7;
    --mod-avans: #009688;
    --mod-pdks: #5C6BC0;
    --mod-oryantasyon: #26A69A;
}

/* --- Base Reset & Typography --- */
.v2-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-body);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.v2-body h1, .v2-body h2, .v2-body h3, .v2-body h4, .v2-body h5, .v2-body h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}
.v2-body a { color: var(--primary); text-decoration: none; transition: var(--transition); }
.v2-body a:hover { color: var(--primary-light); }
.v2-body img { max-width: 100%; height: auto; }

/* --- Utility --- */
.v2-section { padding: 80px 0; }
.v2-section-sm { padding: 50px 0; }
.v2-badge { display: inline-block; padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
.v2-badge-primary { background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }

/* --- Preloader --- */
.v2-preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease; }
.v2-preloader.loaded { opacity: 0; pointer-events: none; }
.v2-preloader-spinner { width: 40px; height: 40px; border: 3px solid var(--border-color); border-top-color: var(--primary); border-radius: 50%; animation: v2spin 0.8s linear infinite; }
@keyframes v2spin { to { transform: rotate(360deg); } }

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.v2-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: 12px 0;
}
.v2-header.scrolled {
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
}
.v2-header .navbar-brand img { height: 85px; transition: var(--transition); }
.v2-header.scrolled .navbar-brand img { height: 34px; }

.v2-nav-link {
    font-size: 15px; font-weight: 500; color: var(--text-dark) !important;
    padding: 8px 16px !important; border-radius: var(--radius-sm);
    transition: var(--transition);
}
.v2-nav-link:hover { color: var(--primary) !important; background: rgba(var(--primary-rgb), 0.05); }

.v2-btn-primary {
    background: var(--primary); color: var(--white) !important;
    border: none; padding: 10px 24px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 14px; cursor: pointer;
    transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.3);
}
.v2-btn-primary:hover {
    background: var(--primary-light);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.4);
    transform: translateY(-1px);
    color: var(--white) !important;
}
.v2-btn-outline {
    background: transparent; color: var(--primary) !important;
    border: 2px solid var(--primary); padding: 8px 22px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 14px; cursor: pointer; transition: var(--transition);
}
.v2-btn-outline:hover {
    background: var(--primary); color: var(--white) !important;
}
.v2-btn-lg { padding: 14px 36px; font-size: 16px; border-radius: var(--radius-md); }
.v2-btn-sm { padding: 7px 18px; font-size: 13px; }

/* --- Mega Menu --- */
.v2-mega-trigger { position: relative; }
.v2-mega-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    width: 800px; background: #FFFFFF; border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18); padding: 24px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateX(-50%) translateY(10px);
    border: 1px solid var(--border-color);
    z-index: 9999;
}
.v2-mega-menu::before {
    content: ''; position: absolute; top: -20px; left: 0;
    width: 100%; height: 20px; background: transparent;
}
.v2-mega-trigger:hover .v2-mega-menu,
.v2-mega-trigger.show .v2-mega-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.v2-mega-item {
    display: flex; align-items: center; gap: 12px; padding: 10px 12px;
    border-radius: var(--radius-sm); transition: var(--transition); cursor: pointer;
    text-decoration: none !important;
}
.v2-mega-item:hover { background: rgba(var(--primary-rgb), 0.05); }
.v2-mega-icon {
    width: 36px; height: 36px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--white); flex-shrink: 0;
}
.v2-mega-item-title { font-weight: 600; font-size: 14px; color: var(--text-dark); margin: 0; }
.v2-mega-item-desc { font-size: 12px; color: var(--text-muted); margin: 0; }
.v2-mega-sidebar {
    background: rgba(var(--primary-rgb), 0.03); border-radius: var(--radius-md);
    padding: 20px; height: 100%;
}
.v2-mega-sidebar h6 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px; }
.v2-mega-sidebar a { display: block; font-size: 14px; padding: 6px 0; color: var(--text-body); }
.v2-mega-sidebar a:hover { color: var(--primary); }

/* ==========================================
   HERO SECTION
   ========================================== */
.v2-hero {
    padding: 140px 0 0px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.v2-hero-badge { margin-bottom: 20px; }
.v2-hero h1 {
    font-size: 48px; font-weight: 800; line-height: 1.2;
    margin-bottom: 24px; color: var(--text-dark);
}
.v2-hero h1 span { color: var(--primary); }
.v2-hero p.lead {
    font-size: 18px; color: var(--text-body); line-height: 1.7;
    margin-bottom: 32px;
}
.v2-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.v2-hero-trust { display: flex; align-items: center; gap: 12px; }
.v2-hero-trust-avatars { display: flex; }
.v2-hero-trust-avatars img {
    width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--white);
    margin-left: -10px; object-fit: cover;
}
.v2-hero-trust-avatars img:first-child { margin-left: 0; }
.v2-hero-trust-text { font-size: 14px; color: var(--text-muted); }
.v2-hero-trust-text strong { color: var(--text-dark); }
.v2-hero-visual {
    position: relative;
}
.v2-hero-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ==========================================
   LOGOS BAND
   ========================================== */
.v2-logos {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}
.v2-logos-header {
    text-align: center; margin-bottom: 24px;
}
.v2-logos-header p { font-size: 14px; color: var(--text-muted); margin: 0; }
.v2-logos-header strong { color: var(--primary); font-weight: 700; }
.v2-logos-track {
    display: flex; gap: 60px; align-items: center;
    animation: v2scroll 20s linear infinite;
    width: max-content;
}
.v2-logos-track img {
    height: 60px; opacity: 0.9; filter: grayscale(100%);
    transition: var(--transition); cursor: pointer; flex-shrink: 0;
}
.v2-logos-track img:hover { opacity: 1; filter: grayscale(0); }
@keyframes v2scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   DASHBOARD GROW SECTION
   ========================================== */
.v2-dashboard-section {
    padding: 80px 0;
    text-align: center;
}
.v2-dashboard-section h2 { font-size: 36px; margin-bottom: 16px; }
.v2-dashboard-section p.lead { font-size: 18px; color: var(--text-body); max-width: 600px; margin: 0 auto 48px; }
.v2-dashboard-img-wrapper {
    margin: 0 auto; position: relative;
    transform: scale(0.85); opacity: 0.8;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}
.v2-dashboard-img-wrapper.visible {
    transform: scale(1); opacity: 1;
}
.v2-dashboard-img-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

/* ==========================================
   MODULES GALLERY
   ========================================== */
.v2-modules { padding: 80px 0; background: var(--white); }
.v2-modules-header { text-align: center; margin-bottom: 48px; }
.v2-modules-header h2 { font-size: 36px; margin-bottom: 12px; }
.v2-modules-header p { font-size: 18px; color: var(--text-body); max-width: 600px; margin: 0 auto; }

.v2-modules-tabs {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
    margin-bottom: 40px;
}
.v2-module-tab {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 10px;
    border: 2px solid var(--border-color); background: var(--white);
    cursor: pointer; transition: var(--transition);
    font-size: 14px; font-weight: 500; color: var(--text-body);
}
.v2-module-tab:hover { border-color: var(--bc); color: var(--bc); }
.v2-module-tab.active {
    background: var(--bc); border-color: var(--bc);
    color: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.v2-module-tab i { font-size: 16px; }

.v2-module-content {
    display: none; animation: v2fadeIn 0.5s ease;
}
.v2-module-content.active { display: block; }
@keyframes v2fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.v2-module-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.v2-module-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.v2-module-card-header {
    padding: 32px 32px 0;
}
.v2-module-card-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--white); margin-bottom: 16px;
}
.v2-module-card h3 { font-size: 24px; margin-bottom: 12px; }
.v2-module-card p { color: var(--text-body); font-size: 15px; line-height: 1.7; }
.v2-module-features {
    padding: 0 32px 32px;
}
.v2-module-features ul { list-style: none; padding: 0; margin: 0; }
.v2-module-features li {
    padding: 8px 0; font-size: 14px; color: var(--text-body);
    display: flex; align-items: flex-start; gap: 10px;
}
.v2-module-features li::before {
    content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ==========================================
   ACADEMIC TRUST SECTION
   ========================================== */
.v2-trust { padding: 80px 0; background: var(--white); }
.v2-trust-header { text-align: center; margin-bottom: 48px; }
.v2-trust-header h2 { font-size: 36px; margin-bottom: 12px; }
.v2-trust-header p { font-size: 18px; color: var(--text-body); }

.v2-team-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.v2-team-member {
    text-align: center; transition: var(--transition);
}
.v2-team-member:hover { transform: translateY(-6px); }
.v2-team-member img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.v2-team-member h5 { font-size: 16px; margin-top: 16px; margin-bottom: 4px; font-weight: 600; }
.v2-team-member span { font-size: 14px; color: var(--text-muted); }

/* ==========================================
   CTA SECTION
   ========================================== */
.v2-cta {
    padding: 80px 0; text-align: center;
    background: var(--primary); color: var(--white);
}
.v2-cta h2 { font-size: 36px; color: var(--white); margin-bottom: 16px; }
.v2-cta p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.v2-cta .v2-btn-white {
    background: #FFFFFF !important; color: #1A428A !important;
    border: none; padding: 14px 36px; border-radius: var(--radius-md);
    font-weight: 700; font-size: 16px; cursor: pointer; transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15); display: inline-block; text-decoration: none;
}
.v2-cta .v2-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ==========================================
   FAQ SECTION
   ========================================== */
.v2-faq { padding: 80px 0; }
.v2-faq-header { text-align: center; margin-bottom: 48px; }
.v2-faq-header h2 { font-size: 36px; margin-bottom: 12px; }
.v2-faq-item {
    background: var(--white); border: 1px solid var(--border-color);
    border-radius: var(--radius-md); margin-bottom: 12px;
    overflow: hidden; transition: var(--transition);
}
.v2-faq-item:hover { box-shadow: var(--shadow-sm); }
.v2-faq-question {
    padding: 20px 24px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; font-size: 16px; color: var(--text-dark);
    transition: var(--transition);
}
.v2-faq-question:hover { color: var(--primary); }
.v2-faq-question i { transition: transform 0.3s ease; font-size: 14px; color: var(--text-muted); }
.v2-faq-item.open .v2-faq-question i { transform: rotate(180deg); }
.v2-faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    padding: 0 24px;
}
.v2-faq-item.open .v2-faq-answer { max-height: 300px; padding-bottom: 20px; }
.v2-faq-answer p { color: var(--text-body); font-size: 15px; line-height: 1.7; margin: 0; }

/* ==========================================
   CONTACT / DEMO FORM
   ========================================== */
.v2-contact { padding: 80px 0; }
.v2-contact-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); overflow: hidden;
    border: 1px solid var(--border-color);
}
.v2-contact-info {
    background: var(--primary); color: var(--white); padding: 40px;
}
.v2-contact-info h3 { color: var(--white); font-size: 24px; margin-bottom: 12px; }
.v2-contact-info p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 32px; }
.v2-contact-info-item {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
    color: rgba(255,255,255,0.9); font-size: 14px;
}
.v2-contact-info-item i { font-size: 18px; width: 24px; text-align: center; }
.v2-contact-form { padding: 40px; }
.v2-contact-form h3 { font-size: 24px; margin-bottom: 24px; }
.v2-form-group { margin-bottom: 20px; }
.v2-form-group label { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; display: block; }
.v2-form-control {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border-color);
    border-radius: var(--radius-sm); font-size: 15px; font-family: inherit;
    transition: var(--transition); background: var(--white);
}
.v2-form-control:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1); }
textarea.v2-form-control { resize: vertical; min-height: 100px; }

/* ==========================================
   FOOTER
   ========================================== */
.v2-footer {
    background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 60px 0 30px;
}
.v2-footer h5 { color: var(--white); font-size: 16px; margin-bottom: 20px; }
.v2-footer a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); }
.v2-footer a:hover { color: var(--white); }
.v2-footer ul { list-style: none; padding: 0; }
.v2-footer li { margin-bottom: 10px; }
.v2-footer-logo img { height: 36px; margin-bottom: 16px; }
.v2-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px; margin-top: 40px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.v2-footer-bottom p { margin: 0; font-size: 13px; }
.v2-footer-social { display: flex; gap: 12px; }
.v2-footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 14px;
}
.v2-footer-social a:hover { background: var(--primary); color: var(--white); }

/* ==========================================
   SCROLL POP-UP
   ========================================== */
.v2-popup-overlay {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    opacity: 0; transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.v2-popup-overlay.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.v2-popup {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl); padding: 24px; width: 340px;
    border: 1px solid var(--border-color); position: relative;
}
.v2-popup-close {
    position: absolute; top: 12px; right: 12px;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--border-color); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--text-muted); transition: var(--transition);
}
.v2-popup-close:hover { background: var(--text-muted); color: var(--white); }
.v2-popup-avatar { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.v2-popup-avatar img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.v2-popup-avatar h6 { margin: 0; font-size: 15px; }
.v2-popup-avatar span { font-size: 13px; color: var(--text-muted); }
.v2-popup p { font-size: 14px; color: var(--text-body); margin-bottom: 16px; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .v2-hero h1 { font-size: 36px; }
    .v2-hero p.lead { font-size: 16px; }
    .v2-mega-menu { width: 100%; position: static; transform: none; box-shadow: none; border: 1px solid var(--border-color); margin-top: 8px; }
    .v2-mega-trigger:hover .v2-mega-menu, .v2-mega-trigger.show .v2-mega-menu { transform: none; }
    .v2-modules-tabs { gap: 6px; }
    .v2-module-tab { padding: 8px 14px; font-size: 12px; }
    .v2-btn-lg { padding: 12px 24px; font-size: 15px; }
    .v2-btn-outline.v2-btn-lg { padding: 10px 22px; }
}
@media (max-width: 767px) {
    /* --- Hero --- */
    .v2-hero { padding: 100px 0 40px; }
    .v2-hero h1 { font-size: 26px; max-width: 100%; }
    .v2-hero p.lead { font-size: 15px; margin-bottom: 24px; }
    .v2-hero-actions {
        flex-direction: row; flex-wrap: wrap; gap: 10px; margin-bottom: 24px;
    }
    .v2-hero-actions .v2-btn-primary,
    .v2-hero-actions .v2-btn-outline {
        flex: 0 0 auto; width: auto;
        padding: 12px 24px; font-size: 14px;
    }
    .v2-hero-trust {
        flex-direction: column; gap: 6px; align-items: flex-start;
        padding: 16px 0 0; margin-top: 0;
    }
    .v2-hero-trust-avatars { display: flex; }
    .v2-hero-trust-avatars img { width: 32px; height: 32px; margin-left: -6px; }
    .v2-hero-trust-avatars img:first-child { margin-left: 0; }
    .v2-hero-trust-text { font-size: 13px; line-height: 1.4; }
    .v2-hero-visual { margin-top: 24px; }
    .v2-hero-visual img { border-radius: var(--radius-md); }

    /* --- Header --- */
    .v2-header .navbar-brand img { height: 55px; }
    .v2-header.scrolled .navbar-brand img { height: 30px; }

    /* --- Sections --- */
    .v2-section { padding: 50px 0; }
    .v2-section-sm { padding: 30px 0; }
    .v2-dashboard-section h2, .v2-modules-header h2,
    .v2-trust-header h2, .v2-cta h2, .v2-faq-header h2 { font-size: 24px; }

    /* --- Logos --- */
    .v2-logos { padding: 24px 0; }
    .v2-logos-track img { height: 24px; }

    /* --- Stats --- */
    .v2-counter { font-size: 24px !important; }

    /* --- Modules tabs --- */
    .v2-modules-tabs {
        flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
        padding-bottom: 8px; scrollbar-width: none; gap: 6px;
    }
    .v2-modules-tabs::-webkit-scrollbar { display: none; }
    .v2-module-tab { white-space: nowrap; flex-shrink: 0; padding: 8px 14px; font-size: 12px; }

    /* --- Module content --- */
    .v2-module-visual { min-height: auto; padding: 16px; }
    .v2-module-visual img { max-height: none !important; width: 100% !important; }
    .v2-detail-features { grid-template-columns: 1fr !important; }

    /* --- Dashboard --- */
    .v2-dashboard-img-wrapper img { border-radius: var(--radius-md); }
    .v2-dashboard-section { padding: 50px 0; }
    .v2-dashboard-section p.lead { font-size: 15px; }

    /* --- CTA --- */
    .v2-cta { padding: 50px 0; }
    .v2-cta h2 { font-size: 24px; }
    .v2-cta p { font-size: 15px; }
    .v2-cta .v2-btn-white { padding: 12px 28px; font-size: 14px; }

    /* --- Team Grid --- */
    .v2-team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .v2-team-member h5 { font-size: 14px; }
    .v2-team-member span { font-size: 12px; }

    /* --- FAQ --- */
    .v2-faq-question { font-size: 14px; padding: 14px 18px; }
    .v2-faq-answer p { font-size: 14px; }

    /* --- Contact --- */
    .v2-contact-card { border-radius: var(--radius-md); overflow: hidden; }
    .v2-contact-info { padding: 24px; border-radius: var(--radius-md) var(--radius-md) 0 0; }
    .v2-contact-info h3 { font-size: 20px; }
    .v2-contact-form { padding: 24px; }
    .v2-contact-form h3 { font-size: 20px; }
    .v2-form-group { margin-bottom: 12px; }
    .v2-form-control { padding: 10px 14px; font-size: 14px; }

    /* --- Footer --- */
    .v2-footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
    .v2-footer h5 { font-size: 15px; margin-bottom: 12px; }

    /* --- Popup --- */
    .v2-popup { width: 280px; right: 10px; bottom: 10px; padding: 16px; }
    .v2-popup p { font-size: 13px; }
    .v2-popup-avatar h6 { font-size: 14px; }
}

/* --- Extra small (360px and below) --- */
@media (max-width: 400px) {
    .v2-hero h1 { font-size: 22px; }
    .v2-hero-actions { flex-direction: column; }
    .v2-hero-actions .v2-btn-primary,
    .v2-hero-actions .v2-btn-outline {
        width: 100%; text-align: center; justify-content: center;
    }
    .v2-team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
