/* ═══════════════════════════════════════════════════
   ARATTA PROF — Design System & Styles
   Color Palette extracted from logo
   ═══════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
    --navy: #1B3A6B;
    --navy-dark: #0F2347;
    --royal: #2E5090;
    --royal-light: #3D6AB5;
    --grey: #8C8C8C;
    --grey-light: #D4D4D4;
    --grey-pale: #E8E8E8;
    --bg: #F8F9FA;
    --bg-alt: #EEF1F5;
    --text: #1A1A2E;
    --text-light: #5A5A6E;
    --white: #FFFFFF;
    --success: #25D366;
    --whatsapp: #25D366;

    --font-main: 'Inter', 'Noto Sans Armenian', system-ui, sans-serif;
    --font-display: 'Outfit', 'Noto Sans Armenian', system-ui, sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 8px rgba(27, 58, 107, 0.06);
    --shadow-md: 0 8px 30px rgba(27, 58, 107, 0.10);
    --shadow-lg: 0 20px 60px rgba(27, 58, 107, 0.15);
    --shadow-glow: 0 0 40px rgba(46, 80, 144, 0.2);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --container: 1200px;
    --header-h: 220px;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(27, 58, 107, 0.08);
}

.site-header.scrolled .nav-link {
    color: var(--text);
}

.site-header.scrolled .nav-link:hover {
    color: var(--royal);
}

.site-header.scrolled .header-phone {
    color: var(--navy);
}

.site-header.scrolled .lang-btn {
    color: var(--grey);
}

.site-header.scrolled .lang-btn.active {
    color: var(--navy);
}

.site-header.scrolled .lang-divider {
    color: var(--grey-light);
}

.site-header.scrolled .burger span {
    background: var(--navy);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo {
    margin-left: -12px;
}

.header-logo img {
    height: 200px;
    width: auto;
    transition: var(--transition);
}

.header-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--royal-light);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ─── Language Switcher ─── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px 10px;
    backdrop-filter: blur(10px);
}

.site-header.scrolled .lang-switcher {
    background: rgba(27, 58, 107, 0.06);
}

.lang-btn {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 6px;
    border-radius: 12px;
    transition: var(--transition);
}

.lang-btn.active {
    color: var(--white);
}

.lang-btn:hover {
    opacity: 0.8;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    font-weight: 300;
}

/* ─── Header Phone ─── */
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.header-phone:hover {
    color: var(--white);
}

/* ─── Burger ─── */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1010;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.12);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15, 35, 71, 0.92) 0%, rgba(27, 58, 107, 0.75) 50%, rgba(46, 80, 144, 0.60) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 68px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
    width: 100%;
}



.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.4);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: var(--transition);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(27, 58, 107, 0.25);
}

.btn-primary:hover {
    background: var(--royal);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 58, 107, 0.35);
}

/* ═══════════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--royal);
    padding: 6px 16px;
    background: rgba(46, 80, 144, 0.08);
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--navy-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════ */
.about {
    padding: 120px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: 1px solid rgba(27, 58, 107, 0.06);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--royal-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
    display: inline;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--royal);
    display: inline;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
.services {
    padding: 120px 0;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(27, 58, 107, 0.06);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(15, 35, 71, 0.15) 100%);
}

.service-body {
    padding: 32px 28px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(46, 80, 144, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal);
    margin-bottom: 16px;
    transition: var(--transition);
}

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

.service-title {
    font-size: 22px;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════════════ */
.why-us {
    padding: 120px 0;
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 80, 144, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 80, 144, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.why-us .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.why-us .section-title {
    color: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.advantage-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(46, 80, 144, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-light);
    margin-bottom: 20px;
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
    background: var(--royal);
    color: var(--white);
}

.advantage-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 12px;
}

.contact-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: var(--bg);
    border: 1px solid rgba(27, 58, 107, 0.06);
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--bg-alt);
    transform: translateX(4px);
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(46, 80, 144, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal);
    flex-shrink: 0;
}

.contact-item-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp);
}

.contact-item-label {
    font-size: 12px;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.contact-item-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

/* ─── Form ─── */
.contact-form-wrap {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: 1px solid rgba(27, 58, 107, 0.06);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--grey-pale);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--royal);
    box-shadow: 0 0 0 4px rgba(46, 80, 144, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--grey);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
    background: var(--navy-dark);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-nav h4,
.footer-contacts h4 {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-nav a,
.footer-contacts a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-nav a:hover,
.footer-contacts a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--whatsapp);
    animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-delay-1 {
    transition-delay: 0.15s !important;
}

.anim-delay-2 {
    transition-delay: 0.30s !important;
}

.anim-delay-3 {
    transition-delay: 0.45s !important;
}

/* Hero animations should be visible immediately */
.hero .anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero .anim-delay-1 {
    animation-delay: 0.3s;
}

.hero .anim-delay-2 {
    animation-delay: 0.5s;
}

.hero .anim-delay-3 {
    animation-delay: 0.7s;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════
   MOBILE NAV OVERLAY
   ═══════════════════════════════════════════════════ */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 35, 71, 0.97);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-overlay .nav-link {
    font-size: 24px;
    color: var(--white);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 992px) {
    .header-nav {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .burger {
        display: flex;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 16px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    :root {
        --header-h: 68px;
    }

    .hero-content {
        padding: 0 10px;
    }

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

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 24px 12px;
    }

    .stat-number {
        font-size: 36px;
    }

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

    .contact-form-wrap {
        padding: 24px;
    }

    .about,
    .services,
    .why-us,
    .contact {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
}