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

:root {
    --charcoal: #1A1A2E;
    --charcoal-light: #2D2D44;
    --charcoal-mid: #3D3D5C;
    --coral: #F97066;
    --coral-dark: #E85A50;
    --coral-light: #FDF0EF;
    --coral-soft: #FEE8E5;
    --warm-white: #FEFCFA;
    --warm-gray: #F7F5F3;
    --warm-gray-mid: #EDEBE8;
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A6A;
    --text-muted: #7A7A9A;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 8px 40px rgba(26, 26, 46, 0.12);
    --shadow-coral: 0 8px 30px rgba(249, 112, 102, 0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--warm-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.bg-pattern {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(249, 112, 102, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 26, 46, 0.03) 0%, transparent 50%);
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--charcoal);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
}
.skip-link:focus {
    top: 16px;
}

/* ─── HEADER ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254, 252, 250, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 26, 46, 0.06);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--charcoal);
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.logo-accent {
    color: var(--coral);
}

/* ─── NAV ─── */
.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.primary-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    transition: color var(--transition), background var(--transition);
}
.primary-nav a:hover {
    color: var(--charcoal);
    background: var(--warm-gray);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
    box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(249, 112, 102, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}
.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--warm-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-coral {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn-coral:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
}
.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
}
.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}
.btn-block {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 16px;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: var(--charcoal);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero-bg-accent {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(249, 112, 102, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(249, 112, 102, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    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: rgba(249, 112, 102, 0.15);
    color: var(--coral);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(249, 112, 102, 0.25);
}
.hero-badge svg {
    flex-shrink: 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.hero-title em {
    font-style: normal;
    color: var(--coral);
}

.hero-subtitle {
    font-size: clamp(16px, 1.2vw, 18px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.main-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 440px;
    aspect-ratio: 500 / 560;
}
.main-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.float-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--coral-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.float-card-body {
    display: flex;
    flex-direction: column;
}
.float-card-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.float-card-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
}
.float-card-1 {
    top: 10%;
    right: -20px;
    animation: float1 4s ease-in-out infinite;
}
.float-card-2 {
    bottom: 25%;
    left: -30px;
    animation: float2 5s ease-in-out infinite;
}
.float-card-3 {
    bottom: 5%;
    right: 10px;
    animation: float3 4.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(8px); }
}
@keyframes float3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

/* ─── SECTION COMMON ─── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coral);
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── SERVICES ─── */
.services {
    padding: 100px 0;
    background: var(--warm-white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    border: 1px solid rgba(26, 26, 46, 0.06);
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    background: var(--coral-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.service-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── ABOUT ─── */
.about {
    padding: 100px 0;
    background: var(--warm-gray);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 520 / 480;
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--warm-gray);
    aspect-ratio: 400 / 300;
    width: 240px;
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-stat-card {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--charcoal);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
}
.about-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--coral);
}
.about-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.about-content .section-tag {
    text-align: left;
}
.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}
.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-values {
    margin-top: 32px;
    display: grid;
    gap: 14px;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
}
.value-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--coral-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(249, 112, 102, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.testimonials .section-header {
    position: relative;
    z-index: 1;
}
.testimonials .section-title {
    color: var(--white);
}
.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.testimonial-card {
    background: var(--charcoal-light);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 112, 102, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}
.testimonial-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

/* ─── CTA ─── */
.cta {
    padding: 80px 0;
    background: var(--warm-gray);
}
.cta-card {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-coral);
}
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 480px;
}
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

/* ─── CONTACT ─── */
.contact {
    padding: 100px 0;
    background: var(--warm-white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.contact-info .section-tag {
    text-align: left;
}
.contact-info .section-title {
    text-align: left;
    margin-bottom: 14px;
}
.contact-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-details {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    gap: 16px;
}
.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--coral-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.contact-item address {
    font-style: normal;
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.6;
}
.contact-item a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}
.contact-item a:hover {
    color: var(--coral);
}
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ─── FORM ─── */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(26, 26, 46, 0.06);
}
.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.form-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--warm-gray-mid);
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    background: var(--warm-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(249, 112, 102, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 32px 20px;
}
.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--coral-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.success-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo .logo-text {
    color: var(--white);
}
.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}
.footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--coral);
    margin-bottom: 18px;
}
.footer-links ul {
    list-style: none;
    display: grid;
    gap: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--white);
}
.footer-contact address {
    font-style: normal;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 12px;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition);
}
.footer-contact a:hover {
    color: var(--coral);
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-bottom a:hover {
    color: var(--coral);
}

/* ─── SCROLL REVEAL ─── */
.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: no-preference) {
    .scroll-reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    .main-card {
        max-width: 360px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    .cta-card {
        padding: 48px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .primary-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(254, 252, 250, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 20px 24px;
        border-bottom: 1px solid rgba(26, 26, 46, 0.06);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        pointer-events: none;
    }
    .primary-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .primary-nav ul {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }
    .primary-nav li {
        width: 100%;
    }
    .primary-nav a {
        display: block;
        padding: 12px 16px;
        border-radius: var(--radius-md);
        font-size: 16px;
    }
    .primary-nav li:last-child {
        margin-top: 8px;
    }
    .primary-nav li:last-child a {
        text-align: center;
        justify-content: center;
        background: var(--coral);
        color: var(--white);
        border-color: var(--coral);
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-visual {
        order: -1;
        justify-content: center;
    }
    .main-card {
        max-width: 320px;
        aspect-ratio: 4/5;
    }
    .float-card-1 { right: 0; top: 5%; }
    .float-card-2 { left: 0; }
    .float-card-3 { right: 0; bottom: 0; }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .about-images {
        max-width: 480px;
        margin: 0 auto;
    }
    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }
    .about-text {
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .cta-card {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        text-align: center;
    }
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-info .section-tag,
    .contact-info .section-title {
        text-align: center;
    }
    .contact-desc {
        text-align: center;
    }
    .contact-form-wrapper {
        position: static;
        max-width: 560px;
        margin: 0 auto;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer-desc {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .float-card {
        padding: 12px 14px;
    }
    .float-card-icon {
        width: 36px;
        height: 36px;
    }
    .float-card-label {
        font-size: 11px;
    }
    .float-card-value {
        font-size: 13px;
    }
    .cta-actions {
        flex-direction: column;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .contact-form-card {
        padding: 28px 20px;
    }
}
