:root {
    --gold: #d4af37;
    --gold-light: #f2d06b;
    --gold-dark: #c5a47e;
    --gold-gradient: linear-gradient(45deg, #c5a47e, #d4af37, #f2d06b, #c5a47e);
    --navy-dark: #0a1929;
    --glass-bg: rgba(15, 43, 70, 0.90);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-light: #ffffff;
    --text-dim: #cbd5e1;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif; 
    -webkit-tap-highlight-color: transparent; 
}

html {
    scroll-behavior: smooth;
}

input, textarea { -webkit-user-select: text !important; user-select: text !important; }

body {
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=2070&q=80') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

body::before {
    content: '';
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(5, 15, 25, 0.90);
    z-index: -2;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.6s;
}

.glass-panel:hover::before {
    left: 100%;
}

.hover-glow:hover {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-8px);
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.text-gold::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.text-gold:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.tagline {
    font-size: 1.8rem;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 1px;
    margin: 10px 0 30px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.tagline::before,
.tagline::after {
    content: "⚖";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0.7;
}

.tagline::before {
    left: -10px;
}

.tagline::after {
    right: -10px;
}

.logo-tagline {
    display: block;
    font-size: 10px;
    color: var(--gold-light);
    letter-spacing: 1.5px;
    margin-top: 2px;
    font-weight: 300;
    opacity: 0.9;
    text-transform: uppercase;
}

.solutions-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.9rem;
    color: var(--gold-light);
    letter-spacing: 1px;
    margin: 20px auto;
    text-transform: uppercase;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gold-gradient);
    z-index: 1001;
    box-shadow: 0 0 10px var(--gold);
    transition: width 0.3s ease;
}

.cursor-trailer {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.1s ease;
    opacity: 0.7;
}

.trail {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-light);
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

header {
    position: fixed; 
    top: 0; 
    width: 100%; 
    padding: 15px 50px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 50px;
    background: rgba(10, 25, 41, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo { 
    font-size: 20px; 
    font-weight: 700; 
    color: white; 
    letter-spacing: 1px;
    margin-right: auto;
    white-space: nowrap; 
    z-index: 1002;
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.logo:hover::after {
    transform: translateX(0);
}

.logo span { 
    display: block; 
    font-size: 11px; 
    font-weight: 400; 
    color: var(--gold); 
    letter-spacing: 3px; 
    margin-top: -3px; 
    transition: all 0.3s ease;
}

.logo:hover span {
    letter-spacing: 4px;
    color: var(--gold-light);
}

nav { display: flex; align-items: center; }
nav ul { display: flex; gap: 30px; }
nav ul li { position: relative; }
nav ul li a { 
    color: var(--text-dim); 
    font-size: 14px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    position: relative; 
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover, 
nav ul li a.active { 
    color: var(--gold); 
}

.menu-toggle { 
    display: none; 
    font-size: 24px; 
    color: white; 
    cursor: pointer; 
    z-index: 1002; 
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: rotate(90deg);
    color: var(--gold);
}

.btn-consult {
    padding: 10px 25px;
    margin-left: 30px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1;
}

.btn-consult::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 0%; 
    height: 100%;
    background: var(--gold-gradient); 
    transition: 0.4s; 
    z-index: -1;
}

.btn-consult:hover::before { 
    width: 100%; 
}

.btn-consult:hover { 
    color: #000; 
    box-shadow: 0 0 20px var(--gold);
    letter-spacing: 1px;
}

.hero { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding: 140px 20px 60px 20px; 
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(5, 15, 25, 0.7) 70%);
    z-index: -1;
}

.hero-content h1 { 
    font-size: 3.5rem; 
    line-height: 1.3; 
    margin-bottom: 10px; 
    padding-bottom: 10px;
    font-weight: 700; 
    letter-spacing: -1px;
    position: relative;
    overflow: hidden;
}

.hero-content h1 .text-reveal {
    display: inline-block;
    animation: textReveal 1.5s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p { 
    font-size: 1.1rem; 
    margin-bottom: 40px; 
    color: var(--text-dim); 
    max-width: 900px; 
    margin-left: auto; 
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.5s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section { 
    padding: 100px 50px; 
    position: relative;
    overflow: hidden;
}

.section-title { 
    text-align: center; 
    margin-bottom: 60px; 
    position: relative;
}

.section-title h2 { 
    font-size: 2.5rem; 
    margin-bottom: 10px; 
    color: white; 
    display: inline-block;
}

.section-title .line { 
    width: 80px; 
    height: 3px; 
    background: var(--gold); 
    margin: 15px auto; 
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.section-title .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, white, transparent);
    animation: lineShine 3s infinite;
}

@keyframes lineShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    max-width: 1200px; 
    margin: 0 auto; 
    align-items: center; 
}

.about-text h3 { 
    color: var(--gold); 
    font-size: 1.1rem; 
    letter-spacing: 2px; 
    margin-bottom: 15px; 
}

.about-text h2 { 
    font-size: 2.2rem; 
    margin-bottom: 20px; 
    line-height: 1.2; 
}

.about-text p { 
    color: var(--text-dim); 
    margin-bottom: 20px; 
    text-align: justify; 
}

.about-list li { 
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 15px; 
    padding: 15px; 
    background: rgba(255,255,255,0.03); 
    border-radius: 10px; 
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.about-list li:hover {
    transform: translateX(10px) rotateY(5deg);
    border-color: var(--gold);
}

.about-list i { 
    color: var(--gold); 
    font-size: 20px; 
    margin-right: 15px; 
    margin-top: 5px; 
    min-width: 25px;
}

.services-container { 
    max-width: 1200px; 
    margin: 0 auto; 
}

.category-title { 
    font-size: 1.6rem; 
    color: white; 
    border-left: 4px solid var(--gold); 
    padding-left: 20px; 
    margin-bottom: 30px; 
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.category-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: translateX(-100%);
    animation: titleShine 3s infinite;
}

@keyframes titleShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px; 
}

.service-card { 
    padding: 30px; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    height: 100%; 
    display: flex; 
    flex-direction: column;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 15px;
}

.service-card:hover::after {
    opacity: 0.1;
}

.service-card i { 
    font-size: 2.5rem; 
    color: var(--gold); 
    margin-bottom: 20px; 
    display: block; 
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.service-card h4 { 
    font-size: 1.2rem; 
    color: white; 
    margin-bottom: 10px; 
    min-height: 50px; 
    display: flex; 
    align-items: center; 
}

.service-card p { 
    color: var(--text-dim); 
    font-size: 0.9rem; 
    flex-grow: 1; 
}

.service-card ul { 
    margin-top: 10px; 
    padding-left: 15px; 
    list-style: disc; 
    color: var(--text-dim); 
    font-size: 0.85rem; 
}

.team-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.team-card { 
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    padding-bottom: 20px; 
    position: relative; 
    height: 100%; 
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
}

.team-img-wrapper { 
    width: 100%; 
    height: 320px;
    overflow: hidden; 
    border-radius: 15px 15px 0 0; 
    position: relative; 
    flex-shrink: 0; 
}

.team-img-placeholder {
    width: 100%; 
    height: 100%;
    background-color: #333;
    background-size: cover; 
    background-position: center top;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s;
    filter: grayscale(20%);
    object-fit: cover;
}

.team-img-placeholder.irjen-fix {
    background-size: contain;
    background-position: center center;
    background-color: #1a1a1a;
}

.team-card:hover .team-img-placeholder { 
    transform: scale(1.05);
    filter: grayscale(0%); 
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover::before {
    opacity: 1;
}

.team-info { 
    padding: 20px; 
    text-align: left; 
    position: relative; 
    z-index: 2; 
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.team-info h3 { 
    font-size: 1rem; 
    color: white; 
    margin-bottom: 5px; 
    line-height: 1.4; 
    font-weight: 600;
}

.team-info span { 
    display: block; 
    font-size: 0.75rem; 
    color: var(--gold); 
    font-weight: 600; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    margin-bottom: 15px; 
}

.team-detail { 
    font-size: 0.8rem; 
    color: var(--text-dim); 
    margin-top: auto; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding-top: 10px; 
    transition: color 0.3s ease;
}

.team-card:hover .team-detail {
    color: white;
}

.team-detail ul { list-style: none; padding: 0; }
.team-detail li { 
    margin-bottom: 5px; 
    padding-left: 15px; 
    position: relative; 
    transition: transform 0.3s ease;
}

.team-card:hover .team-detail li {
    transform: translateX(5px);
}

.team-detail li::before { 
    content: '•'; 
    color: var(--gold); 
    position: absolute; 
    left: 0; 
}

.contact-container { 
    max-width: 1100px; 
    margin: 0 auto; 
    display: flex; 
    flex-wrap: wrap; 
    gap: 40px; 
}

.contact-info-box { 
    flex: 1; 
    min-width: 300px; 
    padding: 40px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}

.c-item { 
    margin-bottom: 35px; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    padding-bottom: 20px; 
    transition: all 0.3s ease;
}

.c-item:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-5px);
}

.c-item:last-child { 
    border-bottom: none; 
    margin-bottom: 0; 
    padding-bottom: 0; 
}

.c-item h4 { 
    color: var(--gold); 
    font-size: 1.1rem; 
    margin-bottom: 10px; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.contact-form-box { 
    flex: 1.5; 
    min-width: 300px; 
    padding: 40px; 
}

.form-group { 
    margin-bottom: 20px; 
    position: relative;
}

.form-input { 
    width: 100%; 
    padding: 15px 20px; 
    background: rgba(0, 0, 0, 0.3); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 8px; 
    color: white; 
    font-size: 1rem; 
    outline: none; 
    transition: all 0.3s ease; 
}

.form-input:focus { 
    border-color: var(--gold); 
    background: rgba(0,0,0,0.5); 
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); 
    transform: translateY(-2px);
}

.btn-submit { 
    width: 100%; 
    padding: 15px; 
    background: var(--gold-gradient); 
    border: none; 
    border-radius: 8px; 
    color: #0f2b46; 
    font-weight: 800; 
    font-size: 1.1rem; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-ig {
    display: inline-block; 
    margin-top: 10px; 
    padding: 8px 20px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none; 
    border-radius: 5px; 
    font-size: 0.9rem;
    text-transform: uppercase; 
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-ig::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-ig:hover::before {
    left: 100%;
}

.btn-ig:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.5);
    letter-spacing: 2px;
}

footer { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    background: rgba(5, 15, 25, 0.9); 
    padding: 60px 20px 40px; 
    text-align: center; 
    margin-top: 80px; 
    color: var(--text-dim);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    animation: footerShine 8s infinite linear;
}

@keyframes footerShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@media (max-width: 1024px) {
    header { padding: 15px 30px; }
    .hero-content h1 { font-size: 2.8rem; }
    .section-title h2 { font-size: 2.2rem; }
    .cursor-trailer, .trail { display: none; }
    
    .team-grid { 
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
        gap: 25px; 
    }
    .team-img-wrapper { 
        height: 300px;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    header { padding: 15px 20px; background: #0a1929; }
    
    .menu-toggle { display: block; }
    
    nav {
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: rgba(10, 25, 41, 0.98);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }
    
    nav.active { max-height: 400px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); }
    
    nav ul { flex-direction: column; gap: 0; width: 100%; text-align: center; }
    nav ul li { width: 100%; }
    nav ul li a { display: block; padding: 15px; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.03); }
    
    .btn-consult { display: none; }
    
    .logo { font-size: 16px; margin-right: 0; }
    .logo span { font-size: 10px; }
    .logo-tagline { font-size: 8px; }

    .hero { padding-top: 120px; }
    .hero-content h1 { font-size: 2.2rem; }
    .tagline { font-size: 1.2rem; }
    .hero-content p { font-size: 1rem; padding: 0 10px; }

    section { padding: 70px 20px; }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-text h2 { font-size: 2rem; }
    
    .services-grid { grid-template-columns: 1fr; }
    
    .team-grid { 
        grid-template-columns: 1fr; 
        gap: 25px;
    }
    
    .team-card {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 450px;
    }
    
    .team-img-wrapper { 
        height: 280px;
        flex-shrink: 0;
    }
    
    .team-img-placeholder {
        background-position: center 30%;
        background-size: cover;
    }
    
    .team-info { 
        min-height: 170px;
        padding: 20px 15px;
    }
    
    .contact-container { flex-direction: column; }
    .contact-info-box, .contact-form-box { padding: 25px; }
    
    .cursor-trailer, .trail, #particle-canvas { display: none; }
    
    .floating-element {
        animation: none;
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .tagline { font-size: 1rem; }
    .section-title h2 { font-size: 1.8rem; }
    .logo { max-width: 70%; white-space: normal; line-height: 1.2; }
    
    .team-grid { 
        gap: 20px;
    }
    
    .team-card {
        min-height: 420px;
    }
    
    .team-img-wrapper { 
        height: 260px;
    }
    
    .team-img-placeholder {
        background-position: center 25%;
    }
    
    .team-info { 
        min-height: 160px;
        padding: 15px 12px;
    }
    
    .team-info h3 { 
        font-size: 0.9rem; 
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .team-info span {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }
    
    .team-card:nth-child(2) .team-info h3 {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    section { padding: 50px 15px; }
}

@media (max-height: 600px) and (orientation: landscape) {
    .hero { 
        min-height: 120vh;
        padding-top: 100px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .team-img-wrapper { 
        height: 220px;
    }
    
    .team-info h3 {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .team-img-wrapper { 
        height: 240px; 
    }
    
    .team-card {
        min-height: 400px;
    }
    
    .team-info h3 { 
        font-size: 0.85rem; 
    }
    
    .team-card:nth-child(2) .team-info h3 {
        font-size: 0.75rem;
        line-height: 1.1;
    }
    
    .team-detail {
        font-size: 0.75rem;
    }
}