/* ===== 好逸家家政 样式表 ===== */
/* 清新暖色主题 · 盐城黄海湿地元素 */

:root {
    --primary: #FF8C42;
    --primary-dark: #E8742A;
    --primary-light: #FFB347;
    --accent: #FF7043;
    --sage: #A8C896;
    --sage-dark: #7CB342;
    --cream: #FFF8F0;
    --cream-2: #FFF5EB;
    --brown: #4A3728;
    --brown-light: #7A5C45;
    --text: #3D2E22;
    --text-light: #8A7665;
    --white: #FFFFFF;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 10px 40px rgba(255, 140, 66, 0.12);
    --shadow-hover: 0 18px 50px rgba(255, 140, 66, 0.22);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

/* ===== 按钮 ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    gap: 8px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 112, 67, 0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(255, 112, 67, 0.45);
}
.btn-outline {
    background: rgba(255,255,255,0.7);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}
.btn-block { width: 100%; }

/* ===== 导航 ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 140, 66, 0.12);
    transition: all var(--transition);
}
.header.scrolled {
    box-shadow: 0 4px 20px rgba(74, 55, 40, 0.08);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 1px;
}
.nav {
    display: flex;
    gap: 36px;
}
.nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--brown);
    position: relative;
    transition: color var(--transition);
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition);
}
.phone-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255,112,67,0.4); }
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    width: 24px; height: 2.5px;
    background: var(--brown);
    border-radius: 2px;
    transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 72px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #FFF5EB 0%, #FFE8D6 55%, #FFF8F0 100%);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.sun {
    position: absolute;
    top: 10%; right: 12%;
    width: 160px; height: 160px;
    background: radial-gradient(circle, #FFD89B 0%, #FFB347 60%, transparent 70%);
    border-radius: 50%;
    animation: sunPulse 5s ease-in-out infinite;
}
@keyframes sunPulse {
    0%,100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.08); opacity: 1; }
}
.clouds { position: absolute; inset: 0; }
.cloud {
    position: absolute;
    background: #fff;
    border-radius: 50px;
    opacity: 0.7;
    animation: floatCloud 30s linear infinite;
}
.cloud.c1 { width: 120px; height: 36px; top: 18%; left: -150px; animation-duration: 40s; }
.cloud.c1::before, .cloud.c1::after {
    content: ''; position: absolute; background: #fff; border-radius: 50%;
}
.cloud.c1::before { width: 50px; height: 50px; top: -22px; left: 18px; }
.cloud.c1::after { width: 40px; height: 40px; top: -16px; right: 18px; }
.cloud.c2 { width: 90px; height: 28px; top: 32%; left: -120px; animation-duration: 55s; animation-delay: -20s; }
.cloud.c2::before { content: ''; position: absolute; width: 38px; height: 38px; background: #fff; border-radius: 50%; top: -16px; left: 14px; }
.cloud.c3 { width: 100px; height: 30px; top: 24%; left: -130px; animation-duration: 48s; animation-delay: -10s; }
.cloud.c3::before { content: ''; position: absolute; width: 42px; height: 42px; background: #fff; border-radius: 50%; top: -18px; left: 16px; }

@keyframes floatCloud {
    from { transform: translateX(0); }
    to { transform: translateX(calc(100vw + 200px)); }
}
.wetland {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 140px;
    background: linear-gradient(180deg, transparent 0%, rgba(168, 200, 150, 0.25) 40%, rgba(168, 200, 150, 0.5) 100%);
}
.wetland::before {
    content: '';
    position: absolute;
    top: -20px; left: 0; right: 0;
    height: 40px;
    background:
        radial-gradient(ellipse 80px 20px at 10% 100%, rgba(168,200,150,0.4) 0%, transparent 70%),
        radial-gradient(ellipse 120px 30px at 30% 100%, rgba(168,200,150,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 100px 25px at 55% 100%, rgba(168,200,150,0.4) 0%, transparent 70%),
        radial-gradient(ellipse 140px 35px at 80% 100%, rgba(168,200,150,0.35) 0%, transparent 70%);
}
.crane {
    position: absolute;
    animation: craneFly 18s linear infinite;
}
.crane1 { top: 22%; left: -10%; animation-duration: 22s; }
.crane2 { top: 38%; left: -8%; animation-duration: 28s; animation-delay: -8s; opacity: 0.8; }
@keyframes craneFly {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(25vw) translateY(-15px); }
    50% { transform: translateX(50vw) translateY(5px); }
    75% { transform: translateX(75vw) translateY(-10px); }
    100% { transform: translateX(120vw) translateY(0); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 60px;
}
.tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 140, 66, 0.12);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-text h1 {
    font-size: 52px;
    line-height: 1.18;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 20px;
}
.highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; }
.stat strong {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.stat span { font-size: 14px; color: var(--text-light); }

.hero-card {
    display: flex;
    justify-content: center;
}
.card-inner {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 140, 66, 0.15);
    position: relative;
    overflow: hidden;
}
.card-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-light));
}
.card-badge {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, #FF5252, #FF8C42);
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}
.card-inner h3 {
    font-size: 22px;
    color: var(--brown);
    margin-bottom: 10px;
}
.price {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}
.price span {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin: 0 4px;
}
.card-list { margin-bottom: 24px; }
.card-list li {
    padding: 7px 0;
    color: var(--brown-light);
    font-size: 15px;
}

/* ===== 服务区域条 ===== */
.areas-bar {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    padding: 14px 0;
    color: #fff;
}
.areas-bar .container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.areas-label { font-weight: 600; font-size: 15px; white-space: nowrap; }
.areas-list { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.areas-list span {
    padding: 4px 12px;
    background: rgba(255,255,255,0.18);
    border-radius: 50px;
    font-size: 13px;
}

/* ===== 通用 section ===== */
.section { padding: 90px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.section-head h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.dot {
    display: inline-block;
    width: 10px; height: 10px;
    background: var(--primary);
    border-radius: 50%;
}
.section-head p { color: var(--text-light); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* ===== 服务项目 ===== */
.services { background: var(--cream-2); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(74,55,40,0.05);
    border: 1px solid rgba(255,140,66,0.08);
    transition: all 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(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.service-card:hover::before { transform: scaleX(1); }
.svc-icon {
    width: 70px; height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 20px;
    color: var(--brown);
    margin-bottom: 10px;
}
.service-card p {
    color: var(--text-light);
    font-size: 14.5px;
    margin-bottom: 16px;
}
.svc-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
}
.svc-link:hover { color: var(--accent); letter-spacing: 1px; }

/* ===== 关于我们 ===== */
.about { background: var(--cream); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.img-frame {
    position: relative;
    padding: 20px;
}
.img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #FFE8D6, #FFD0A8);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(168,200,150,0.3) 0%, transparent 50%);
}
.img-placeholder svg { margin-bottom: 12px; position: relative; z-index: 1; }
.img-placeholder p { font-size: 22px; font-weight: 800; position: relative; z-index: 1; }
.img-placeholder small { font-size: 14px; color: var(--brown-light); position: relative; z-index: 1; }
.floating-badge {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: var(--shadow);
    text-align: center;
    z-index: 2;
}
.floating-badge strong {
    display: block;
    font-size: 24px;
    color: var(--primary);
    font-weight: 800;
    line-height: 1;
}
.floating-badge span { font-size: 12px; color: var(--text-light); }
.floating-badge.b1 { top: 40px; left: -10px; animation: floatBadge 3s ease-in-out infinite; }
.floating-badge.b2 { bottom: 40px; right: -10px; animation: floatBadge 3s ease-in-out infinite 1.5s; }
@keyframes floatBadge {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.about-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--brown);
    margin: 12px 0 20px;
    line-height: 1.3;
}
.about-text .lead {
    font-size: 17px;
    color: var(--brown-light);
    margin-bottom: 14px;
}
.about-text p { color: var(--text-light); margin-bottom: 14px; }
.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}
.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.f-icon {
    font-size: 28px;
    line-height: 1;
}
.feature-item h4 {
    font-size: 16px;
    color: var(--brown);
    margin-bottom: 2px;
}
.feature-item p { font-size: 13.5px; color: var(--text-light); margin: 0; }

/* ===== 流程 ===== */
.process {
    background: linear-gradient(180deg, var(--cream-2), var(--cream));
}
.process-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}
.step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.step-num {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(255,112,67,0.3);
    position: relative;
    z-index: 2;
}
.step h3 { font-size: 18px; color: var(--brown); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-light); }
.step-line {
    width: 40px;
    align-self: center;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--sage));
    border-radius: 2px;
    position: relative;
}
.step-line::after {
    content: '';
    position: absolute;
    right: -6px; top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid var(--sage);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* ===== 评价 ===== */
.testimonials { background: var(--cream); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.t-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(74,55,40,0.05);
    border: 1px solid rgba(255,140,66,0.08);
    transition: all var(--transition);
}
.t-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stars { color: #FFB300; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.t-card p {
    color: var(--brown-light);
    font-size: 15px;
    margin-bottom: 22px;
    font-style: italic;
}
.t-user { display: flex; align-items: center; gap: 12px; }
.avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}
.t-user strong { display: block; color: var(--brown); font-size: 15px; }
.t-user span { font-size: 13px; color: var(--text-light); }

/* ===== 联系 ===== */
.contact {
    background: linear-gradient(180deg, var(--cream), #FFE8D6);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.contact-info h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--brown);
    margin: 12px 0 18px;
    line-height: 1.3;
}
.contact-info > p { color: var(--text-light); margin-bottom: 32px; font-size: 16px; }
.contact-list { display: flex; flex-direction: column; gap: 20px; }
.c-item { display: flex; gap: 16px; align-items: center; }
.c-icon {
    width: 50px; height: 50px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(74,55,40,0.06);
    flex-shrink: 0;
}
.c-item h4 { font-size: 15px; color: var(--brown); }
.c-item p { color: var(--text-light); font-size: 14px; margin: 0; }

.contact-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,140,66,0.12);
}
.contact-form h3 {
    font-size: 22px;
    color: var(--brown);
    margin-bottom: 22px;
    text-align: center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #F0E0CC;
    border-radius: 12px;
    font-size: 14.5px;
    font-family: inherit;
    color: var(--text);
    background: var(--cream-2);
    margin-bottom: 14px;
    transition: all var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,140,66,0.12);
}
.contact-form textarea { resize: vertical; }
.form-tip {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 12px;
}

/* ===== 页脚 ===== */
.footer {
    background: #3D2E22;
    color: #D4C4B0;
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo { margin-bottom: 18px; }
.footer-logo .logo-text { color: #FFB347; }
.footer-col > p { font-size: 14px; line-height: 1.8; margin-bottom: 14px; }
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 18px;
}
.footer-col ul li {
    padding: 5px 0;
    font-size: 14px;
    transition: color var(--transition);
    cursor: pointer;
}
.footer-col ul li:hover { color: var(--primary-light); }
.slogan {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,140,66,0.15);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 13px;
    margin-top: 8px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #8A7665;
}

/* ===== 悬浮按钮 ===== */
.float-btns {
    position: fixed;
    right: 22px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.float-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all var(--transition);
}
.float-btn.phone {
    background: linear-gradient(135deg, var(--sage-dark), var(--sage));
}
.float-btn.top {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}
.float-btn.top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.float-btn:hover { transform: translateY(-4px) scale(1.05); }

/* ===== 响应式 ===== */
@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; padding-top: 30px; }
    .hero-text h1 { font-size: 40px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { flex-wrap: wrap; }
    .step { flex: 0 0 45%; }
    .step-line { display: none; }
}
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 20px;
        gap: 18px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        transition: transform var(--transition);
    }
    .nav.open { transform: translateY(0); }
    .menu-toggle { display: flex; }
    .phone-btn span { display: none; }
    .phone-btn { padding: 9px 12px; }
    .section { padding: 60px 0; }
    .section-head h2 { font-size: 28px; }
    .services-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-text h1 { font-size: 32px; }
    .hero-stats { gap: 24px; }
    .stat strong { font-size: 24px; }
    .sun { width: 100px; height: 100px; }
}
@media (max-width: 480px) {
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; }
    .card-inner { padding: 28px 22px; }
    .contact-form-wrap { padding: 26px 20px; }
}
