/* ============================================
   YCU Peyzaj — Clean & Airy Design
   ============================================ */

:root {
    --white: #ffffff;
    --off-white: #fafaf8;
    --gray-50: #f6f5f3;
    --gray-100: #eeede9;
    --gray-200: #dddbd5;
    --gray-300: #c4c2bb;
    --gray-400: #9b9890;
    --gray-500: #76736b;
    --gray-600: #57554e;
    --gray-700: #3d3b36;
    --gray-800: #27261f;

    --sage: #7da88b;
    --sage-light: #9dc0a8;
    --sage-pale: #e3efe7;
    --sage-dark: #5a8068;
    --sage-deep: #3b5e48;

    --amber: #e8a838;
    --amber-light: #fcedc5;

    --coral: #d97b5e;

    --font-heading: 'DM Serif Display', Georgia, serif;
    --font-body: 'Be Vietnam Pro', system-ui, sans-serif;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 14px;
    --radius-lg: 20px;
    --container: 1200px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ============================================
   Nav
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
    border-bottom-color: var(--gray-100);
    box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--gray-800);
    letter-spacing: -0.01em;
}

.logo b { font-weight: 600; }

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-img--footer {
    height: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-500);
    transition: color 0.25s;
}

.nav-menu a:hover { color: var(--gray-800); }

.nav-btn {
    background: var(--sage-deep) !important;
    color: white !important;
    padding: 0.55rem 1.35rem;
    border-radius: 100px;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    transition: background 0.25s, transform 0.25s !important;
}

.nav-btn:hover {
    background: var(--sage-dark) !important;
    transform: translateY(-1px);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
}

.burger span {
    width: 22px;
    height: 1.5px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.burger.open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger.open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--sage-deep);
    color: white;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,94,72,0.2); }

.btn--ghost {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}
.btn--ghost:hover { background: var(--gray-50); border-color: var(--gray-300); box-shadow: none; color: var(--gray-800); }

.btn--white {
    background: white;
    color: var(--sage-deep);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn--white:hover { background: var(--off-white); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

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

/* ============================================
   Hero
   ============================================ */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sage-dark);
    background: var(--sage-pale);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--sage);
    border-radius: 50%;
    animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--gray-800);
    margin-bottom: 1.25rem;
}

.hero-accent {
    color: var(--sage-dark);
    font-style: italic;
}

.hero p {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 440px;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-clients {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.client-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: white;
    margin-left: -8px;
    border: 2px solid white;
}

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

.hero-clients span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.hero-clients span b {
    color: var(--gray-800);
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 480px;
}

.hero-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: transform 0.5s var(--ease);
}

.hero-card:hover { transform: translateY(-6px) rotate(0deg) !important; }

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

.hero-card--1 {
    width: 260px;
    height: 340px;
    top: 20px;
    left: 0;
    transform: rotate(-3deg);
    z-index: 2;
}

.hero-card--2 {
    width: 220px;
    height: 280px;
    top: 80px;
    right: 20px;
    transform: rotate(4deg);
    z-index: 1;
}

.card-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: white;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-float-stat {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    padding: 0.75rem 1.15rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: float 5s var(--ease) infinite;
}

.hero-float-stat svg { width: 22px; height: 22px; }
.hero-float-stat strong { font-size: 0.9rem; color: var(--gray-800); display: block; }
.hero-float-stat span { font-size: 0.7rem; color: var(--gray-400); }

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

/* Decorative shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--sage-pale) 0%, transparent 70%);
    opacity: 0.6;
}

.hero-shape--2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px;
    background: radial-gradient(circle, var(--amber-light) 0%, transparent 70%);
    opacity: 0.4;
}

/* ============================================
   Trust Strip
   ============================================ */
.trust-strip {
    padding: 2.5rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.trust-strip .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    justify-content: space-between;
}

.trust-item {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gray-300);
    white-space: nowrap;
}

/* ============================================
   Section Headings
   ============================================ */
.sec-head {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.sec-head--center { text-align: center; }

.tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 0.75rem;
}

.sec-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--gray-800);
    line-height: 1.2;
}

.text-accent { color: var(--sage-dark); }

/* ============================================
   Services
   ============================================ */
.services {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--white);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc {
    display: grid;
    grid-template-columns: 60px 1fr 180px 40px;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: all 0.35s var(--ease);
}

.svc:first-child { border-top: 1px solid var(--gray-100); }

.svc:hover { padding-left: 1rem; background: var(--gray-50); margin: 0 -1rem; padding-right: 1rem; border-radius: var(--radius); }

.svc-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gray-300);
}

.svc-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gray-800);
    margin-bottom: 0.35rem;
}

.svc-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    max-width: 450px;
}

.svc-img {
    width: 180px;
    height: 100px;
    border-radius: var(--radius);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s var(--ease);
}

.svc:hover .svc-img { opacity: 1; transform: scale(1); }

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

.svc-arrow {
    width: 24px;
    height: 24px;
    color: var(--gray-300);
    transition: all 0.3s var(--ease);
}

.svc:hover .svc-arrow { color: var(--sage-dark); transform: translate(4px, -4px); }

/* ============================================
   Projects
   ============================================ */
.projects {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--gray-50);
}

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

.proj {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    border: 1px solid var(--gray-100);
}

.proj:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-color: transparent; }

.proj-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.proj-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

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

.proj-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: white;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-600);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.proj-info {
    padding: 1.25rem 1.5rem;
}

.proj-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.proj-info p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ============================================
   About
   ============================================ */
.about {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--white);
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.about-left .tag { display: block; }

.about-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--gray-800);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.about-left p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.astat {
    text-align: center;
    padding: 1rem 0.5rem;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.astat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--sage-deep);
}

.astat span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.acard {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    transition: all 0.35s var(--ease);
    border: 1px solid transparent;
}

.acard:hover {
    background: var(--white);
    border-color: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.acard-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-pale);
    border-radius: 10px;
    margin-bottom: 1rem;
    color: var(--sage-dark);
}

.acard-icon svg { width: 20px; height: 20px; }

.acard h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gray-800);
    margin-bottom: 0.35rem;
}

.acard p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   Steps
   ============================================ */
.steps {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--gray-50);
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step { text-align: center; }

.step-top {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-deep);
    color: white;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.step-icon svg { width: 22px; height: 22px; }

.step-line {
    flex: 1;
    height: 1px;
    background: var(--gray-200);
    margin-left: -1px;
}

.step-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.5rem;
}

.step h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--gray-800);
    margin-bottom: 0.4rem;
}

.step p {
    font-size: 0.82rem;
    color: var(--gray-400);
}

/* ============================================
   Reviews
   ============================================ */
.reviews {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--white);
}

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

.review {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.35s var(--ease);
    border: 1px solid transparent;
}

.review:hover {
    background: var(--white);
    border-color: var(--gray-100);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1.25rem;
}

.review-stars svg { width: 15px; height: 15px; }

.review p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    font-style: italic;
}

.review-who {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.review-who strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
}

.review-who span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--white);
}

.cta-box {
    background: var(--sage-deep);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    color: white;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.cta-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    max-width: 420px;
}

.cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cta-actions .btn {
    background: white;
    color: var(--sage-deep);
}

.cta-actions .btn:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.cta-actions .btn--white {
    background: rgba(255,255,255,0.12);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-actions .btn--white:hover { background: rgba(255,255,255,0.2); }

/* ============================================
   Contact
   ============================================ */
.contact {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--gray-50);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.contact-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--gray-800);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-left > p {
    color: var(--gray-500);
    margin-bottom: 2.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ci {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    transition: background 0.25s;
}

a.ci:hover { background: var(--white); }

.ci svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--sage);
}

.ci strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-400);
    margin-bottom: 0.1rem;
}

.ci span { font-size: 0.9rem; color: var(--gray-700); }

.wp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    background: #25D366;
    color: white;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s var(--ease);
}

.wp-btn svg {
    width: 22px;
    height: 22px;
}

.wp-btn:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    color: white;
}

.socials {
    display: flex;
    gap: 0.6rem;
}

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all 0.25s;
}

.socials a svg { width: 18px; height: 18px; }

.socials a:hover {
    background: var(--sage-deep);
    border-color: var(--sage-deep);
    color: white;
    transform: translateY(-2px);
}

/* Form */
.contact-right {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-100);
}

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

.form-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.fg label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 0.4rem;
}

.fg input,
.fg textarea,
.fg select {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    outline: none;
    transition: all 0.25s;
    appearance: none;
}

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

.fg select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239b9890' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    background: var(--white);
    border-color: var(--sage);
    box-shadow: 0 0 0 3px var(--sage-pale);
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: var(--gray-300);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--gray-800);
    padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
    padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-col--brand .logo { margin-bottom: 1rem; }
.footer-col--brand .logo span { color: rgba(255,255,255,0.8); }
.footer-col--brand p { font-size: 0.85rem; color: rgba(255,255,255,0.35); max-width: 260px; line-height: 1.7; }

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.5rem;
    transition: color 0.25s, transform 0.25s;
}

.footer-col a:hover { color: rgba(255,255,255,0.8); transform: translateX(3px); }

.footer-col p { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.6; margin-bottom: 1rem; }

.nl-form {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.nl-form input {
    flex: 1;
    padding: 0.7rem 0.85rem;
    background: rgba(255,255,255,0.04);
    border: none;
    color: white;
    font-family: var(--font-body);
    font-size: 0.82rem;
    outline: none;
}

.nl-form input::placeholder { color: rgba(255,255,255,0.25); }

.nl-form button {
    padding: 0.7rem 0.85rem;
    background: var(--sage-deep);
    color: white;
    transition: background 0.25s;
}

.nl-form button:hover { background: var(--sage-dark); }

.nl-form button svg { width: 16px; height: 16px; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.footer-bottom span { font-size: 0.78rem; color: rgba(255,255,255,0.2); }

.fb-links { display: flex; gap: 1.5rem; }
.fb-links a { font-size: 0.78rem; color: rgba(255,255,255,0.2); transition: color 0.25s; }
.fb-links a:hover { color: rgba(255,255,255,0.5); }

/* ============================================
   Reveal Animations
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { height: 350px; }
    .hero-card--1 { width: 220px; height: 280px; }
    .hero-card--2 { width: 180px; height: 240px; }

    .proj-grid { grid-template-columns: repeat(2, 1fr); }
    .about-wrap { grid-template-columns: 1fr; gap: 3rem; }
    .about-stats { grid-template-columns: repeat(4, 1fr); }
    .steps-row { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .step-line { display: none; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        gap: 1.25rem;
        box-shadow: -10px 0 40px rgba(0,0,0,0.08);
        transition: right 0.35s var(--ease);
    }

    .nav-menu.open { right: 0; }
    .nav-menu a { font-size: 1rem; color: var(--gray-700); }
    .burger { display: flex; }

    .hero { padding-top: 110px; padding-bottom: 3rem; }
    .hero-visual { display: none; }
    .hero h1 { text-align: left; }
    .hero p { max-width: 100%; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }

    .trust-strip .container { flex-direction: column; gap: 1rem; }
    .trust-logos { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }

    .svc { grid-template-columns: 40px 1fr 32px; gap: 1rem; }
    .svc-img { display: none; }

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

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

    .steps-row { grid-template-columns: 1fr; }
    .step-top { justify-content: center; }

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

    .cta-box { flex-direction: column; text-align: center; }
    .cta-text p { max-width: 100%; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; justify-content: center; }

    .contact-wrap { grid-template-columns: 1fr; }
    .form-2col { grid-template-columns: 1fr; }
    .contact-right { padding: 1.75rem; }

    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
