/* ===== VARIABLES ===== */
:root {
    --brand: #771D03;
    --brand-dark: #3D0E02;
    --brand-deep: #2A0901;
    --brand-glow: rgba(119, 29, 3, 0.12);
    --gold: #C4A97D;
    --gold-light: #E8D5A8;
    --cream: #FBF8F4;
    --white: #FFFFFF;
    --text: #111111;
    --text-muted: #6B6565;
    --border: #EDE8E3;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Inter', system-ui, sans-serif;
    --shadow: 0 4px 24px rgba(0,0,0,0.04);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.06);
    --radius: 16px;
    --radius-sm: 10px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.5s var(--ease);
}

.header.scrolled {
    background: rgba(255,255,255,0.82);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    backdrop-filter: blur(16px) saturate(1.2);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

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

.header__logo-img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.5s var(--ease);
}

.header.scrolled .header__logo-img {
    height: 36px;
    filter: none;
}

/* ===== NAVIGATION ===== */
.nav__list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-weight: 500;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.3px;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.header.scrolled .nav__link {
    color: var(--text-muted);
}

.nav__link:hover,
.header.scrolled .nav__link:hover {
    color: var(--brand);
}

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

.header.scrolled .nav__link.active {
    color: var(--brand);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.nav__link:hover::after,
.nav__link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.4s var(--ease);
}

.header.scrolled .nav__toggle span {
    background: var(--text);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--brand) !important;
}
.nav__toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--brand) !important;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--brand-dark);
}

.hero__slides {
    position: relative;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s var(--ease);
    display: flex;
    align-items: center;
}

.hero__slide.active { opacity: 1; z-index: 1; }

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 10s var(--ease);
}

.hero__slide.active .hero__bg { transform: scale(1); }

/* Geometric overlay pattern */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(61,14,2,0.94) 0%, rgba(119,29,3,0.7) 50%, rgba(61,14,2,0.4) 100%);
    z-index: 1;
}

.hero__overlay::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196,169,125,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero__overlay::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(119,29,3,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

/* Decorative shapes */
.hero__shape {
    position: absolute;
    z-index: 1;
    opacity: 0.06;
}

.hero__shape--1 {
    top: 15%;
    right: 8%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--white);
    border-radius: 50%;
}

.hero__shape--2 {
    bottom: 20%;
    left: 60%;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 12s ease-in-out infinite;
}

@keyframes morphShape {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.hero__shape--3 {
    top: 40%;
    right: 25%;
    width: 80px;
    height: 80px;
    border: 2px solid var(--white);
    transform: rotate(45deg);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-top: 100px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(255,255,255,0.06);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}

.hero__tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
    font-size: clamp(36px, 6vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 40px;
}

.hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero__controls {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero__dot {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.5s var(--ease);
    overflow: hidden;
    position: relative;
}

.hero__dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    border-radius: 4px;
    transition: left 0s;
}

.hero__dot.active::before {
    left: 0;
    animation: slideBar 6s linear;
}

@keyframes slideBar {
    from { left: -100%; }
    to { left: 0; }
}

.hero__dot.active {
    width: 56px;
    background: transparent;
}

.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.hero__arrow:hover {
    background: var(--white);
    color: var(--brand);
    transform: translateY(-50%) scale(1.05);
}

.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }

/* ===== HERO PARTICLES ===== */
.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero__particle {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.15s ease-out;
    will-change: transform, opacity;
    pointer-events: none;
    user-select: none;
}

.hero__particle--text {
    font-family: 'Inter', monospace;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.07);
    white-space: nowrap;
}

.hero__particle--icon {
    color: rgba(196, 169, 125, 0.1);
}

.hero__particle--icon i {
    font-size: 100%;
}

.hero__particle--dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(196, 169, 125, 0.2);
}

.hero__particle--ring {
    border: 1.5px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero__particle--line {
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(196, 169, 125, 0.12), transparent);
    border-radius: 1px;
}

.hero__particle--code {
    font-family: 'Courier New', monospace;
    font-weight: 400;
    color: rgba(196, 169, 125, 0.09);
    white-space: pre;
    line-height: 1.3;
}

.hero__particle.visible {
    opacity: 1;
}

.hero__particle--glow {
    animation: particleGlow 4s ease-in-out infinite alternate;
}

@keyframes particleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.4); }
}

.hero__particle--float {
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.hero__particle--spin {
    animation: particleSpin 20s linear infinite;
}

@keyframes particleSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero__particle--pulse {
    animation: particlePulse 3s ease-in-out infinite;
}

@keyframes particlePulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 44px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.3);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator__line {
    width: 1px;
    height: 40px;
    background: linear-gradient(var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { opacity: 1; transform: scaleY(1); }
    100% { opacity: 0; transform: scaleY(0.3); transform-origin: top; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    padding: 14px 28px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--brand);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--brand-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(119,29,3,0.2);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
}

.btn--ghost:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
    transform: translateY(-3px);
}

.btn--light {
    background: var(--white);
    color: var(--brand);
}

.btn--light:hover {
    background: var(--gold);
    color: var(--brand-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.btn--lg { padding: 16px 36px; font-size: 15px; }

/* ===== SECTIONS ===== */
.section {
    padding: 140px 0;
    position: relative;
}

.section--dark {
    background: var(--text);
    color: var(--white);
}

.section--cream {
    background: var(--cream);
}

/* Decorative section accent */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section--dark::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.section__header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 16px;
    background: var(--brand-glow);
    padding: 6px 16px;
    border-radius: 100px;
}

.section__title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text);
}

.section--dark .section__title {
    color: var(--white);
}

.section--dark .section__label {
    background: rgba(255,255,255,0.06);
    color: var(--gold);
}

.section__subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 16px;
}

.section--dark .section__subtitle {
    color: rgba(255,255,255,0.5);
}

/* ===== ABOUT ===== */
.about__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
    max-width: 820px;
    margin: 0 auto;
}

.about__text p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about__text strong {
    color: var(--brand);
    font-weight: 600;
}

.about__highlight {
    font-size: 18px;
    color: var(--text);
    font-weight: 500;
    border-left: 3px solid var(--brand);
    padding-left: 24px;
    margin: 28px 0 0;
    line-height: 1.6;
    text-align: left;
}

.about__stats {
    display: flex;
    gap: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    width: 100%;
    justify-content: center;
}

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

.stat::before {
    content: '';
    position: absolute;
    top: -36px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand);
    border-radius: 3px;
}

.stat__row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat__value {
    font-size: 48px;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
}

.stat__suffix {
    font-size: 48px;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
}

.stat__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    margin-top: 4px;
}

.about__media {
    position: relative;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about__image-wrapper img {
    width: 100%;
    border-radius: var(--radius);
}

.about__image-accent {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--brand);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.3;
}

.about__badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--brand);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(119,29,3,0.2);
}

.about__badge strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
}

/* ===== FEATURES ===== */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature {
    background: var(--white);
    padding: 48px 36px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.feature:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature__icon {
    width: 56px;
    height: 56px;
    background: var(--brand-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--brand);
    margin-bottom: 24px;
    transition: all 0.5s var(--ease);
}

.feature:hover .feature__icon {
    background: var(--brand);
    color: var(--white);
    transform: scale(1.05) rotate(-3deg);
}

.feature__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.feature__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.feature__link:hover { gap: 14px; }

/* ===== SERVICES ===== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service {
    background: var(--cream);
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease);
    position: relative;
}

.service:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

.service__icon {
    width: 52px;
    height: 52px;
    background: var(--brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 20px;
    transition: all 0.5s var(--ease);
}

.service:hover .service__icon {
    background: var(--gold);
    color: var(--brand-dark);
}

.service__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    min-height: 46px;
    letter-spacing: -0.2px;
}

.service__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background: var(--brand-dark);
}

.cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(196,169,125,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(119,29,3,0.2) 0%, transparent 50%);
    z-index: 0;
}

.cta__bg::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 50%;
}

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

.cta__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta__text {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* ===== PORTFOLIO ===== */
.portfolio__logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.portfolio__logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.portfolio__logo-item:hover {
    box-shadow: var(--shadow-md, 0 8px 30px rgba(0,0,0,0.06));
    transform: translateY(-4px);
    border-color: transparent;
}

.portfolio__logo-item i {
    font-size: 36px;
    color: var(--brand);
    transition: all 0.4s var(--ease);
}

.portfolio__logo-item:hover i {
    color: var(--gold);
    transform: scale(1.1);
}

.portfolio__logo-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

/* ===== CONTACT ===== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

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

.contact__card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.contact__card:hover {
    box-shadow: var(--shadow);
    border-color: transparent;
    transform: translateX(4px);
}

.contact__card i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--brand-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--brand);
}

.contact__card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.contact__card p,
.contact__card a {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact__card a {
    color: var(--brand);
    font-weight: 500;
}

.contact__card a:hover {
    color: var(--brand-light, #B32D0A);
}

.contact__form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.form__row {
    margin-bottom: 16px;
}

.form__row input,
.form__row textarea,
.form__row select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    background: var(--cream);
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form__row select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6565' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form__row input:focus,
.form__row textarea:focus,
.form__row select:focus {
    outline: none;
    border-color: var(--brand);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--brand-glow);
}

.form__status {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
}

.form__status.success { color: #059669; }
.form__status.error { color: #DC2626; }

.form__note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
    opacity: 0.7;
}

.contact__form-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.contact__form--full {
    width: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 24px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--gold), var(--brand));
}

.footer__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer__logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 320px;
}

.footer__col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer__col a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.footer__col a:hover {
    color: var(--gold);
}

.footer__menu {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer__menu a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.footer__menu a:hover {
    color: var(--gold);
}

.footer__contact {
    margin-top: 16px;
}

.footer__contact a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer__contact a:hover {
    color: var(--gold);
}

.footer__contact a i {
    font-size: 14px;
}

.footer__bottom {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.2);
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s var(--ease);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger for grid children */
.features__grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.features__grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }

.services__grid [data-animate]:nth-child(2) { transition-delay: 0.05s; }
.services__grid [data-animate]:nth-child(3) { transition-delay: 0.1s; }
.services__grid [data-animate]:nth-child(4) { transition-delay: 0.15s; }
.services__grid [data-animate]:nth-child(5) { transition-delay: 0.2s; }
.services__grid [data-animate]:nth-child(6) { transition-delay: 0.25s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__title { font-size: 44px; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio__logos { grid-template-columns: repeat(4, 1fr); }
    .footer__main { gap: 24px; }
}

@media (max-width: 768px) {
    .hero__particles { display: none; }

    .nav__list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 36px 36px;
        gap: 28px;
        transition: right 0.5s var(--ease);
        box-shadow: -20px 0 60px rgba(0,0,0,0.1);
        z-index: 100;
    }

    .nav__list.active { right: 0; }
    .nav__link { color: var(--text) !important; font-size: 18px; }
    .nav__toggle { display: flex; }

    .hero__title { font-size: 32px; }
    .hero__arrow { display: none; }
    .hero__content { padding-top: 120px; }
    .hero__shape { display: none; }

    .scroll-indicator { display: none; }

    .section { padding: 80px 0; }
    .section__title { font-size: 28px; }

    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .about__stats { gap: 32px; flex-wrap: wrap; }
    .about__badge { position: relative; bottom: auto; left: auto; margin-top: 16px; }

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

    .footer__main { flex-direction: column; align-items: flex-start; gap: 24px; }

    .footer__menu { gap: 20px; }

    .contact__grid { grid-template-columns: 1fr; }
    .contact__form { padding: 24px; }

    .footer__main { grid-template-columns: 1fr; gap: 32px; }

    .cta { padding: 80px 0; }

    .stat__value,
    .stat__suffix { font-size: 36px; }
    .service__title { min-height: auto; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 28px; }
    .hero__tag { font-size: 10px; padding: 6px 14px; }
    .container { padding: 0 16px; }
    .header__logo-img { height: 32px; }
    .btn { padding: 12px 22px; font-size: 13px; }
}