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

:root {
    --charcoal-950: #111418;
    --charcoal-900: #1f232a;
    --charcoal-800: #2b3038;
    --charcoal-700: #373d45;
    --charcoal-600: #474e57;
    --charcoal-500: #5c636d;
    --charcoal-400: #7a8089;
    --charcoal-300: #a2a6ac;
    --charcoal-200: #c7c9cd;
    --charcoal-100: #e3e4e6;
    --charcoal-50: #f6f6f7;
    --coral-400: #F97066;
    --coral-500: #f05a4a;
    --coral-100: #ffeae5;
    --coral-50: #fff4f2;
    --cream: #FDF8F5;
    --sand: #FAF5F2;
    --white: #ffffff;
    --font-sans: 'DM Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --shadow-sm: 0 1px 3px rgba(17, 20, 24, 0.06), 0 1px 2px rgba(17, 20, 24, 0.04);
    --shadow-md: 0 4px 16px rgba(17, 20, 24, 0.08), 0 2px 6px rgba(17, 20, 24, 0.04);
    --shadow-lg: 0 12px 40px rgba(17, 20, 24, 0.1), 0 4px 12px rgba(17, 20, 24, 0.05);
    --shadow-coral: 0 8px 30px rgba(249, 112, 102, 0.35);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--charcoal-800);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(17, 20, 24, 0.06);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(253, 248, 245, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--charcoal-900);
    font-weight: 700;
    font-size: 1.1rem;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    color: var(--coral-400);
}

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

.nav-link {
    text-decoration: none;
    color: var(--charcoal-600);
    font-weight: 500;
    font-size: 0.938rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral-400);
    border-radius: 1px;
    transition: var(--transition);
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--white);
    background: var(--coral-400);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(249, 112, 102, 0.3);
}

.nav-cta:hover {
    background: var(--coral-500);
    transform: translateY(-1px);
    box-shadow: var(--shadow-coral);
}

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

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--charcoal-700);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ── Hero Section ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 50%, #fef0ee 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 112, 102, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 112, 102, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--charcoal-600);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid rgba(17, 20, 24, 0.06);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--coral-400);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--charcoal-500);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.938rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-coral {
    background: var(--coral-400);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(249, 112, 102, 0.3);
}

.btn-coral:hover {
    background: var(--coral-500);
    transform: translateY(-2px);
    box-shadow: var(--shadow-coral);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal-700);
    border: 1.5px solid var(--charcoal-200);
}

.btn-outline:hover {
    border-color: var(--coral-400);
    color: var(--coral-400);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--charcoal-800);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

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

.btn-outline-coral {
    background: transparent;
    color: var(--coral-400);
    border: 1.5px solid var(--coral-400);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: var(--transition);
}

.btn-outline-coral:hover {
    background: var(--coral-50);
}

.hero-trust {
    display: flex;
    gap: 32px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--charcoal-500);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-trust-item svg {
    color: var(--coral-400);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--coral-400);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: -1;
}

.hero-floating-card {
    position: absolute;
    bottom: 32px;
    left: -24px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

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

.hero-floating-icon {
    width: 48px;
    height: 48px;
    background: var(--coral-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-400);
}

.hero-floating-label {
    font-size: 0.75rem;
    color: var(--charcoal-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-floating-value {
    font-size: 1rem;
    color: var(--charcoal-900);
    font-weight: 700;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--cream);
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ── Section Common ── */
.section-tag {
    display: inline-block;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coral-400);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--charcoal-900);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.063rem;
    color: var(--charcoal-500);
    line-height: 1.7;
    max-width: 560px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-description {
    margin: 0 auto;
}

/* ── Services Section ── */
.services {
    padding: 100px 0;
    background: var(--cream);
}

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

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(17, 20, 24, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral-400), var(--coral-300));
    opacity: 0;
    transition: var(--transition);
}

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

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

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--coral-50), var(--coral-100));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-400);
    margin-bottom: 20px;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 1.063rem;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--charcoal-500);
    line-height: 1.65;
}

/* ── About Section ── */
.about {
    padding: 100px 0;
    background: var(--sand);
}

.about-grid {
    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;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--sand);
}

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

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--coral-400);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-coral);
}

.about-exp-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.about-exp-text {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 4px;
}

.about-content .section-tag {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 1rem;
    color: var(--charcoal-500);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}

.about-feature {
    display: flex;
    gap: 16px;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--coral-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-400);
}

.about-feature h4 {
    font-size: 0.938rem;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 4px;
}

.about-feature-desc {
    font-size: 0.875rem;
    color: var(--charcoal-500);
    line-height: 1.6;
}

/* ── Why Us Section ── */
.why-us {
    padding: 100px 0;
    background: var(--cream);
}

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

.why-us-content .section-tag {
    text-align: left;
}

.why-us-content .section-title {
    text-align: left;
}

.why-us-content .section-description {
    margin-bottom: 40px;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-us-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-us-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral-400);
    opacity: 0.3;
    line-height: 1;
    min-width: 48px;
}

.why-us-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 6px;
}

.why-us-item p {
    font-size: 0.875rem;
    color: var(--charcoal-500);
    line-height: 1.65;
}

.why-us-visual {
    position: relative;
}

.why-us-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.why-us-stats {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.why-us-stat {
    flex: 1;
    background: var(--white);
    padding: 20px 16px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(17, 20, 24, 0.05);
}

.why-us-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral-400);
    font-family: var(--font-serif);
}

.why-us-stat-label {
    font-size: 0.75rem;
    color: var(--charcoal-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* ── Testimonials ── */
.testimonials {
    padding: 100px 0;
    background: var(--sand);
}

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

.testimonial-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(17, 20, 24, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--coral-400);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.938rem;
    color: var(--charcoal-600);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--coral-400), var(--coral-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial-name {
    font-size: 0.938rem;
    font-weight: 700;
    color: var(--charcoal-900);
}

.testimonial-location {
    font-size: 0.813rem;
    color: var(--charcoal-400);
}

/* ── CTA Section ── */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--charcoal-900) 0%, var(--charcoal-800) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(249, 112, 102, 0.12) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(249, 112, 102, 0.08) 0%, transparent 40%),
                      radial-gradient(circle at 60% 80%, rgba(249, 112, 102, 0.06) 0%, transparent 40%);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content .section-tag {
    color: var(--coral-300);
}

.cta-title {
    color: var(--white);
}

.cta-description {
    font-size: 1.063rem;
    color: var(--charcoal-300);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

/* ── Contact Section ── */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

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

.contact-info .section-tag {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
}

.contact-desc {
    font-size: 1rem;
    color: var(--charcoal-500);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

.contact-detail {
    display: flex;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--coral-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-400);
}

.contact-detail h4 {
    font-size: 0.938rem;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 0.875rem;
    color: var(--charcoal-500);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--coral-400);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--coral-500);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(17, 20, 24, 0.05);
}

.contact-form h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 6px;
}

.form-note {
    font-size: 0.875rem;
    color: var(--charcoal-400);
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--charcoal-700);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--charcoal-100);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.938rem;
    color: var(--charcoal-800);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(249, 112, 102, 0.1);
}

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

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    background: var(--coral-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--coral-400);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 0.938rem;
    color: var(--charcoal-500);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ── Map Section ── */
.map-section {
    background: var(--sand);
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 380px;
    filter: grayscale(20%) contrast(1.05);
}

/* ── Footer ── */
.footer {
    background: var(--charcoal-950);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    color: var(--coral-400);
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--charcoal-400);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--charcoal-400);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--coral-400);
}

.footer-contact p {
    font-size: 0.875rem;
    color: var(--charcoal-400);
    line-height: 1.7;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact a {
    color: var(--coral-400);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--coral-300);
}

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

.footer-bottom p {
    font-size: 0.813rem;
    color: var(--charcoal-500);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-container {
        gap: 40px;
    }

    .about-grid,
    .why-us-layout,
    .contact-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(17, 20, 24, 0.06);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-floating-card {
        left: 16px;
        bottom: 20px;
    }

    .hero-wave svg {
        height: 50px;
    }

    .about-grid,
    .why-us-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-img-secondary {
        right: -16px;
        bottom: -24px;
        width: 180px;
    }

    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .why-us-content .section-tag,
    .why-us-content .section-title {
        text-align: center;
    }

    .why-us-content .section-description {
        margin: 0 auto 40px;
    }

    .why-us-visual {
        max-width: 480px;
        margin: 0 auto;
    }

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

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

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

    .contact-form-wrapper {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .why-us-stats {
        flex-direction: column;
    }

    .about-features {
        gap: 20px;
    }
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
