:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;

    --secondary-color: #475569;
    --secondary-hover: #334155;

    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-alt: #f1f5f9;

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --border-color: #e2e8f0;

    --success: #10b981;
    --error: #ef4444;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-card: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.01);
    --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.2);

    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 1000px;
}

.section {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--bg-card);
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.section-header {
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header .subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-alt);
    border-color: var(--text-muted);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    padding: 1rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-color);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    padding: 1rem 0;
    font-weight: 500;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu a:last-child {
    border-bottom: none;
    margin-top: 1rem;
    text-align: center;
}

.hero {
    position: relative;
    padding: 10rem 0 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: default;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background: radial-gradient(circle at 50% 0%, #ffffff 0%, var(--bg-main) 100%);
}

.hero-spotlight {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(
        700px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(37, 99, 235, 0.22) 0%,
        rgba(99, 102, 241, 0.12) 45%,
        transparent 70%
    );
    transition: background 0.08s ease;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.75;
    z-index: 0;
    animation: blobFloat 8s ease-in-out infinite alternate;
}

.blob-1 {
    top: -10%; left: -10%;
    width: 550px; height: 550px;
    background: radial-gradient(circle, #93c5fd, #bfdbfe);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%; right: -5%;
    width: 650px; height: 650px;
    background: radial-gradient(circle, #a5b4fc, #c7d2fe);
    animation-delay: -4s;
}

.blob-3 {
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(37,99,235,0.18), rgba(99,102,241,0.08), transparent);
    animation-delay: -2s;
}

@keyframes blobFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.05); }
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37,99,235,0.2);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    min-height: 1.2em;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.9em;
    background-color: var(--primary-color);
    margin-left: 2px;
    vertical-align: middle;
    border-radius: 2px;
    animation: cursorBlink 0.8s step-end infinite;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero p.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-actions.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-profiles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.hero-profiles.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid white;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-left: -12px;
    transition: transform 0.3s ease, z-index 0s;
    cursor: pointer;
    position: relative;
}

.hero-profile-avatar:first-child {
    margin-left: 0;
}

.hero-profile-avatar:hover {
    transform: translateY(-6px) scale(1.15);
    z-index: 10;
}

.hero-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-profile-label {
    margin-left: 16px;
    text-align: left;
}

.hero-profile-label strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
}

.hero-profile-label span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.about-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 420px;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content > p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mv-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.mv-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.mv-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mv-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.mv-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 380px));
    gap: 2.5rem;
    justify-content: center;
}

.portfolio-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.portfolio-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-5px);
}

.portfolio-img {
    height: 240px;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-category {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.portfolio-info p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
}

.team-img-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-normal);
}

.team-socials {
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.team-img-wrapper:hover .team-socials {
    opacity: 1;
}

.team-socials a {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transform: translateY(10px);
    transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}

.team-img-wrapper:hover .team-socials a {
    transform: translateY(0);
}

.team-socials a:hover {
    background: var(--text-main);
    color: white;
}

.team-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-info p {
    color: var(--text-muted);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info h2 span {
    color: var(--primary-color);
}

.contact-info > p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.contact-item:hover {
    background: var(--primary-light);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: white;
    color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.contact-item:hover .contact-icon {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.contact-item-body {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.contact-item h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-item p,
.contact-item a {
    color: var(--text-main);
    font-size: 0.9375rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    background: var(--bg-main);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
    background: white;
}

.error-msg {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.375rem;
    display: none;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: var(--error);
    background: #fef2f2;
}

.form-group.has-error .error-msg {
    display: block;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-message.hidden {
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #34d399;
}

.footer {
    background-color: #0f172a;
    color: #f1f5f9;
    padding: 5rem 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    color: white;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.footer-socials a:hover {
    background: var(--primary-color);
}

.footer-links h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    color: #94a3b8;
}

/* ==========================================
   RESPONSIVE — 1200px (large tablet / small laptop)
   ========================================== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 3rem;
    }
}

/* ==========================================
   RESPONSIVE — 992px (tablet landscape)
   ========================================== */
@media (max-width: 992px) {
    .section {
        padding: 5rem 0;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        min-height: 320px;
        max-height: 420px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

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

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .team-img-wrapper {
        width: 160px;
        height: 160px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .contact-info h2 {
        font-size: 2rem;
    }
}

/* ==========================================
   RESPONSIVE — 768px (tablet portrait)
   ========================================== */
@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 7rem 0 4rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.25rem;
        letter-spacing: -0.01em;
    }

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

    .hero-profiles {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
        margin-bottom: 1.75rem;
    }

    .hero-profile-avatar {
        width: 48px;
        height: 48px;
        margin-left: -8px;
    }

    .hero-profile-label {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        min-height: 260px;
        max-height: 360px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }

    .portfolio-card {
        max-width: 100%;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .team-img-wrapper {
        width: 130px;
        height: 130px;
    }

    .team-info h3 {
        font-size: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: 1.75rem;
    }

    .contact-form-wrapper {
        padding: 1.75rem;
    }

    .contact-form h3 {
        font-size: 1.4rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: auto;
    }

    .mv-card {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* ==========================================
   RESPONSIVE — 480px (mobile)
   ========================================== */
@media (max-width: 480px) {
    .section {
        padding: 3.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6.5rem 0 3.5rem;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .badge {
        font-size: 0.8125rem;
        padding: 0.4rem 0.875rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header .subtitle {
        font-size: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-img-wrapper {
        width: 160px;
        height: 160px;
    }

    .team-info h3 {
        font-size: 1.125rem;
    }

    .about-image {
        min-height: 220px;
    }

    .about-content > p {
        font-size: 1rem;
    }

    .mv-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .mv-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1rem 1.25rem;
    }

    .footer-container {
        gap: 2rem;
    }

    .footer {
        padding: 3.5rem 0 0;
    }
}

/* ==========================================
   RESPONSIVE — 360px (small mobile)
   ========================================== */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.625rem;
    }

    .hero-profile-avatar {
        width: 42px;
        height: 42px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .nav-container {
        height: 68px;
    }

    .mobile-menu {
        top: 68px;
    }
}
