/* ========================================
   PAYNE RANCH CATTLE COMPANY
   Vibrant Modern | Teal + Slate Grey
   ======================================== */

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

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* GEOMETRIC BACKGROUND SHAPES */
.geo-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
}

.geo-shape--circle {
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: #14b8a6;
    top: -200px;
    right: -200px;
}

.geo-shape--rect--tl {
    width: 300px;
    height: 300px;
    background: #2dd4bf;
    top: 40%;
    left: -80px;
    transform: rotate(15deg);
}

.geo-shape--rect--br {
    width: 500px;
    height: 500px;
    background: #14b8a6;
    bottom: -150px;
    right: -100px;
    transform: rotate(-10deg);
}

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #14b8a6;
    color: #0f172a;
    padding: 0.5rem 1rem;
    z-index: 1000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
}

.skip-link:focus {
    top: 0;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 0.7rem 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #f8fafc;
}

.logo__mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: #0f172a;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.logo:hover .logo__mark {
    transform: rotate(0deg);
}

.logo__text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

/* NAV */
.nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav__link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav__link:hover {
    color: #f8fafc;
    background-color: rgba(20, 184, 166, 0.1);
}

.nav__link--cta {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: #0f172a;
    font-weight: 700;
    margin-left: 0.5rem;
}

.nav__link--cta:hover {
    opacity: 0.9;
    background: linear-gradient(135deg, #2dd4bf, #14b8a6);
}

/* NAV TOGGLE */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.nav-toggle__bar {
    width: 24px;
    height: 2px;
    background: #f8fafc;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero__stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #14b8a6, #2dd4bf, #0d9488, #14b8a6);
    background-size: 200% 100%;
    animation: stripeFlow 4s linear infinite;
}

@keyframes stripeFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* HERO CONTENT */
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2dd4bf;
    margin-bottom: 1.5rem;
}

.geo-tag {
    width: 10px;
    height: 10px;
    background: #2dd4bf;
    border-radius: 2px;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.hero__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    max-width: 560px;
}

.hero__headline em {
    color: #2dd4bf;
    font-style: italic;
}

.hero__subhead {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn--primary {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: #0f172a;
    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);
}

.btn--ghost {
    background: rgba(248, 250, 252, 0.06);
    color: #f8fafc;
    border: 1px solid rgba(248, 250, 252, 0.15);
}

.btn--ghost:hover {
    background: rgba(248, 250, 252, 0.12);
    border-color: rgba(248, 250, 252, 0.3);
}

.btn--light {
    background: #f8fafc;
    color: #0f172a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn--light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn--outline-light {
    background: transparent;
    color: #f8fafc;
    border: 1.5px solid rgba(248, 250, 252, 0.4);
}

.btn--outline-light:hover {
    background: rgba(248, 250, 252, 0.1);
    border-color: #f8fafc;
}

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

/* HERO STATS */
.hero__stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat__number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2dd4bf;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat__label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.3rem;
}

.stat__sep {
    width: 1px;
    height: 36px;
    background: rgba(100, 116, 139, 0.3);
}

/* HERO VISUAL */
.hero__visual {
    position: relative;
}

.hero__image-stack {
    position: relative;
    padding-bottom: 2rem;
}

.img-block {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.img-block--main {
    width: 100%;
    aspect-ratio: 4/5;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.img-block--accent {
    position: absolute;
    bottom: 0;
    right: -2rem;
    width: 55%;
    aspect-ratio: 3/2;
    border: 4px solid #0f172a;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

.geo-accent {
    position: absolute;
    z-index: -1;
}

.geo-accent--teal {
    width: 120px;
    height: 120px;
    background: #14b8a6;
    border-radius: 20px;
    top: -1rem;
    left: -2rem;
    opacity: 0.5;
}

.geo-accent--slate {
    width: 80px;
    height: 80px;
    background: #334155;
    border-radius: 12px;
    top: 2rem;
    right: 1rem;
    transform: rotate(25deg);
    opacity: 0.4;
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2dd4bf;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #2dd4bf;
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    color: #f8fafc;
    margin-bottom: 1.25rem;
}

.section-title--center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

section {
    position: relative;
    z-index: 1;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 7rem 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.about__badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1rem;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: #0f172a;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.about__content {
    padding: 1rem 0;
}

.about__body {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about__points {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about__points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.point__mark {
    width: 22px;
    height: 22px;
    background: rgba(20, 184, 166, 0.15);
    color: #2dd4bf;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 7rem 0;
    background: rgba(20, 184, 166, 0.03);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.service-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(100, 116, 139, 0.15);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(20, 184, 166, 0.1);
}

.service-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #14b8a6, #2dd4bf);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-card__accent {
    opacity: 1;
}

.service-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2dd4bf;
    margin-bottom: 1.25rem;
    transition: background 0.3s ease;
}

.service-card:hover .service-card__icon {
    background: rgba(20, 184, 166, 0.2);
}

.service-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.service-card__desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* ========================================
   WHY US
   ======================================== */
.why-us {
    padding: 7rem 0;
}

.why-us__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.why-us__left {
    position: sticky;
    top: 8rem;
}

.why-us__body {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-top: 1.25rem;
}

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

.diff-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(100, 116, 139, 0.12);
    border-radius: 16px;
    padding: 1.75rem;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.diff-card:hover {
    border-color: rgba(20, 184, 166, 0.25);
    background: rgba(30, 41, 59, 0.7);
}

.diff-card__num {
    font-size: 0.7rem;
    font-weight: 800;
    color: #14b8a6;
    opacity: 0.5;
    letter-spacing: 0.05em;
    padding-top: 0.2rem;
}

.diff-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.4rem;
}

.diff-card__text {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    border-radius: 28px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-banner__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.cta-banner__text {
    font-size: 1rem;
    color: rgba(15, 23, 42, 0.7);
    max-width: 480px;
    line-height: 1.6;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-shrink: 0;
}

.cta-banner__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 7rem 0;
    background: rgba(20, 184, 166, 0.03);
}

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

.contact__body {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact__details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact__item-icon {
    width: 44px;
    height: 44px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2dd4bf;
    flex-shrink: 0;
}

.contact__item strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 0.2rem;
}

.contact__item span,
.contact__item a {
    font-size: 0.95rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact__item a:hover {
    color: #2dd4bf;
}

.contact__map {
    margin-top: 1rem;
}

.map-placeholder {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(100, 116, 139, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.map-placeholder svg {
    color: #2dd4bf;
    opacity: 0.6;
}

.map-placeholder__link {
    font-size: 0.85rem;
    color: #2dd4bf;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.map-placeholder__link:hover {
    color: #2dd4bf;
    text-decoration: underline;
}

/* FORM */
.contact__form-wrap {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(100, 116, 139, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
}

.form-input {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(100, 116, 139, 0.2);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: #475569;
}

.form-input:focus {
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-select option {
    background: #1e293b;
    color: #f8fafc;
}

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

/* FORM SUCCESS */
.form-success {
    text-align: center;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.form-success__icon {
    color: #14b8a6;
}

.form-success__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #f8fafc;
}

.form-success p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(100, 116, 139, 0.12);
    position: relative;
    z-index: 1;
}

.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer__brand {
    max-width: 300px;
}

.footer__tagline {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin-top: 1rem;
}

.footer__nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer__nav a:hover {
    color: #2dd4bf;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(100, 116, 139, 0.08);
    font-size: 0.8rem;
    color: #475569;
}

.footer__bottom a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__bottom a:hover {
    color: #2dd4bf;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__visual {
        max-width: 500px;
    }

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

    .about__image-wrap {
        max-width: 480px;
    }

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

    .why-us__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-us__left {
        position: static;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 100;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .nav__link {
        padding: 0.85rem 1rem;
        font-size: 1rem;
    }

    .nav__link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 0.75rem;
    }

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

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__stats {
        gap: 1rem;
    }

    .img-block--accent {
        right: -0.5rem;
        width: 50%;
    }

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

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }

    .cta-banner__actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner__actions .btn {
        justify-content: center;
    }

    .contact__form-wrap {
        padding: 1.5rem;
    }

    .footer__top {
        flex-direction: column;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero__headline {
        font-size: 1.9rem;
    }

    .hero__image-stack {
        padding-bottom: 1rem;
    }

    .img-block--accent {
        width: 45%;
        right: -0.25rem;
    }

    .about__badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
        display: inline-flex;
    }
}
