/* ========================================
   Do It Best Hardware — Premium Dark Luxury
   Color Palette: Teal + Slate Grey
======================================== */

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

:root {
    --bg-primary: #0a0f1a;
    --bg-secondary: #0f172a;
    --bg-tertiary: #1e293b;
    --bg-card: #141d2e;
    --bg-card-hover: #1a2540;
    
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    
    --gold-400: #f5c842;
    --gold-500: #eab308;
    --gold-600: #ca8a04;
    
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.5);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 40px rgba(20,184,166,0.15);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--slate-200);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--slate-100);
}

.text-gradient {
    background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-500);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 100px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--slate-400);
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
    color: #fff;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.4);
    background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--slate-200);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--slate-200);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--teal-500);
    color: var(--teal-400);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.nav.scrolled {
    padding: 12px 0;
    background: rgba(10, 15, 26, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--slate-100);
    transition: var(--transition-fast);
}

.nav__logo:hover {
    color: var(--teal-400);
}

.nav__logo-icon {
    color: var(--teal-500);
}

.nav__logo-text {
    letter-spacing: -0.01em;
}

.nav__logo-accent {
    color: var(--slate-400);
    font-weight: 400;
    font-size: 0.9em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--slate-400);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--teal-500);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--slate-100);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--teal-400);
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.nav__cta:hover {
    background: rgba(20, 184, 166, 0.18);
    color: var(--teal-400);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-line {
    width: 24px;
    height: 2px;
    background: var(--slate-300);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

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

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 26, 0.92) 0%,
        rgba(10, 15, 26, 0.75) 50%,
        rgba(10, 15, 26, 0.85) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--teal-400);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero__headline {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    color: var(--slate-100);
}

.hero__accent {
    background: linear-gradient(135deg, var(--teal-400), var(--gold-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subheadline {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--slate-400);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 44px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 72px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate-100);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--slate-500);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--slate-500);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--teal-500), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ---------- Products ---------- */
.products {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(20, 184, 166, 0.2), transparent);
}

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

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-slow);
    opacity: 0;
    transform: translateY(30px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 184, 166, 0.2);
    box-shadow: var(--shadow-glow);
}

.product-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

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

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

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 26, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__overlay svg {
    width: 48px;
    height: 48px;
    color: var(--teal-400);
    filter: drop-shadow(0 4px 12px rgba(20, 184, 166, 0.5));
}

.product-card__info {
    padding: 24px;
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--slate-100);
}

.product-card__desc {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-card__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--teal-500);
    transition: color var(--transition-fast);
}

.product-card:hover .product-card__link {
    color: var(--teal-400);
}

/* ---------- Services ---------- */
.services {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), transparent);
}

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

.service-card {
    padding: 36px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-slow);
    opacity: 0;
    transform: translateY(20px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: rgba(20, 184, 166, 0.2);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: var(--radius-md);
    color: var(--teal-400);
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
    background: rgba(20, 184, 166, 0.18);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.2);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--slate-100);
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.7;
}

/* ---------- About ---------- */
.about {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--bg-secondary);
    box-shadow: var(--shadow-lg);
}

.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__experience-badge {
    position: absolute;
    top: -20px;
    right: 30%;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(20, 184, 166, 0.3);
    z-index: 2;
}

.about__experience-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.about__experience-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about__content {
    max-width: 520px;
}

.about__content .section-tag {
    margin-bottom: 20px;
}

.about__content .section-title {
    margin-bottom: 28px;
}

.about__text {
    font-size: 1rem;
    color: var(--slate-400);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--slate-300);
}

.highlight svg {
    color: var(--teal-500);
    flex-shrink: 0;
}

/* ---------- CTA ---------- */
.cta {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
}

.cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 26, 0.94) 0%,
        rgba(10, 15, 26, 0.88) 100%
    );
}

.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__content .section-tag {
    margin-bottom: 20px;
}

.cta__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.cta__desc {
    font-size: 1.1rem;
    color: var(--slate-400);
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ---------- Location ---------- */
.location {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(20, 184, 166, 0.2), transparent);
}

.location__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.location__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-lg);
}

.location__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location__card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.location__card:hover {
    border-color: rgba(20, 184, 166, 0.2);
    background: var(--bg-card-hover);
}

.location__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: var(--radius-md);
    color: var(--teal-400);
    flex-shrink: 0;
}

.location__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 6px;
}

.location__value {
    font-size: 1rem;
    color: var(--slate-200);
    line-height: 1.7;
}

.location__value a {
    color: var(--teal-400);
    transition: color var(--transition-fast);
}

.location__value a:hover {
    color: var(--teal-400);
    text-decoration: underline;
}

/* ---------- Footer ---------- */
.footer {
    padding: 80px 0 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    padding-bottom: 60px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--slate-100);
    margin-bottom: 20px;
}

.footer__logo-icon {
    color: var(--teal-500);
}

.footer__accent {
    color: var(--slate-500);
    font-weight: 400;
    font-size: 0.9em;
}

.footer__tagline {
    font-size: 0.95rem;
    color: var(--slate-400);
    line-height: 1.7;
    max-width: 360px;
}

.footer__links {
    display: flex;
    gap: 48px;
}

.footer__link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 8px;
}

.footer__link-group a {
    font-size: 0.9rem;
    color: var(--slate-400);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

.footer__link-group a:hover {
    color: var(--teal-400);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: var(--slate-600);
}

/* ---------- Mobile Menu Overlay ---------- */
.nav__menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.nav__menu-overlay.active {
    display: flex;
}

.nav__menu-overlay .nav__link {
    font-size: 1.5rem;
    font-family: var(--font-display);
}

.nav__menu-overlay .nav__cta {
    font-size: 1.1rem;
    padding: 14px 28px;
}

/* ---------- Scroll Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__layout {
        gap: 60px;
    }
    
    .about__img-secondary {
        right: -20px;
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav__menu {
        display: none;
    }
    
    .hero__headline {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }
    
    .hero__stats {
        gap: 24px;
    }
    
    .hero__stat-number {
        font-size: 1.5rem;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .about__layout {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .about__images {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .about__img-secondary {
        right: -10px;
        bottom: -20px;
    }
    
    .about__experience-badge {
        top: -15px;
        right: 10px;
        padding: 16px 20px;
    }
    
    .about__experience-number {
        font-size: 1.8rem;
    }
    
    .about__highlights {
        grid-template-columns: 1fr;
    }
    
    .location__grid {
        grid-template-columns: 1fr;
    }
    
    .location__map {
        min-height: 320px;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__links {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        justify-content: center;
        width: 100%;
    }
    
    .hero__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .cta__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta__actions .btn {
        width: 100%;
        justify-content: center;
    }
}
