/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #1a56db;
    --primary-dark: #1244af;
    --primary-light: #3b82f6;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --danger: #ef4444;
    --success: #10b981;
    --dark: #111827;
    --dark-800: #1f2937;
    --dark-700: #374151;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all .3s ease;
}

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

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

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img { max-width: 100%; height: auto; }

ul { list-style: none; }

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

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.6);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-secondary:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-full { width: 100%; }

.btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--white);
    color: var(--danger);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse-btn 2s infinite;
}
.btn-emergency:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.4); }
    50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

/* ===== HEADER ===== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: var(--dark);
    font-weight: 500;
}
.logo i {
    font-size: 26px;
    color: var(--primary);
}
.logo strong {
    color: var(--primary);
    font-weight: 800;
}

#main-nav {
    display: flex;
    gap: 32px;
}
#main-nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    transition: var(--transition);
    position: relative;
}
#main-nav a:hover {
    color: var(--primary);
}
#main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width .3s;
}
#main-nav a:hover::after {
    width: 100%;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}
.header-phone:hover {
    background: var(--primary-dark);
    transform: scale(1.03);
}

#mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    padding: 8px;
}

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
#mobile-menu.mobile-menu-closed {
    display: none;
}
#mobile-menu a {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}
#mobile-menu a:hover {
    background: var(--gray-100);
    color: var(--primary);
}
.mobile-phone-link {
    background: var(--primary) !important;
    color: var(--white) !important;
    text-align: center;
    border: none !important;
}

/* ===== HERO ===== */
#hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1a365d 100%);
    overflow: hidden;
    padding: 120px 20px 80px;
}

#hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(26,86,219,.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(59,130,246,.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(245,158,11,.1) 0%, transparent 50%);
}

/* Grid pattern overlay */
#hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp .8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: rgba(245,158,11,.15);
    border: 1px solid rgba(245,158,11,.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,.3); }
    50% { box-shadow: 0 0 0 10px rgba(245,158,11,0); }
}

.hero-badge i { font-size: 16px; }

#hero-section h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-line1 {
    display: block;
    font-weight: 700;
    font-size: 42px;
    letter-spacing: -1px;
}

.hero-line2 {
    display: block;
    font-weight: 900;
    font-size: 72px;
    background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.hero-sub {
    font-size: 20px;
    color: rgba(255,255,255,.85);
    margin-bottom: 8px;
    font-weight: 500;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,.6);
    margin-bottom: 32px;
}

.hero-price {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    margin-bottom: 36px;
    backdrop-filter: blur(8px);
}

.price-label {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    font-weight: 500;
}

.price-value {
    font-size: 28px;
    color: var(--white);
    font-weight: 800;
}
.price-value em {
    font-style: normal;
    font-size: 40px;
    color: var(--accent);
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    font-weight: 500;
}
.trust-item i {
    color: var(--accent);
    font-size: 16px;
}

/* ===== EMERGENCY BANNER ===== */
#emergency-banner {
    background: linear-gradient(135deg, var(--danger) 0%, #dc2626 100%);
    padding: 24px 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    text-align: center;
}

.emergency-icon {
    font-size: 36px;
    color: var(--white);
    animation: shake 1.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-5deg); }
    20%, 40%, 60%, 80% { transform: rotate(5deg); }
}

.emergency-text {
    color: var(--white);
}
.emergency-text strong {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
}
.emergency-text p {
    font-size: 15px;
    opacity: .9;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(26,86,219,.08);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 17px;
    color: var(--gray-500);
}

.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,.7); }
.section-header.light .section-tag {
    background: rgba(255,255,255,.1);
    color: var(--accent);
}

/* ===== SERVICES ===== */
#services-section {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform .3s;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 26px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}
.service-card ul li {
    font-size: 14px;
    color: var(--gray-600);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}
.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ===== PRICING ===== */
#pricing-section {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
}
.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
    display: inline-block;
    padding: 4px 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}
.pricing-card.featured .pricing-badge {
    background: var(--accent);
}

.pricing-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 24px;
}
.price-from {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
}
.price-amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
}
.price-amount small {
    font-size: 16px;
    font-weight: 600;
}

.pricing-features {
    text-align: left;
    margin-bottom: 28px;
}
.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}
.pricing-features li i {
    color: var(--success);
    margin-right: 8px;
    font-size: 12px;
}

.pricing-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
}
.pricing-note i {
    color: var(--primary);
    margin-right: 4px;
}

/* ===== WHY US ===== */
#why-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
}

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

.why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.why-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.2);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(255,255,255,.05);
    line-height: 1;
}

.why-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 22px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
}

/* ===== PROCESS ===== */
#process-section {
    padding: 100px 0;
    background: var(--white);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    padding: 24px;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    margin: 0 auto 16px;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin: 0 auto 16px;
    transition: var(--transition);
}
.process-step:hover .step-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray-500);
}

.process-arrow {
    display: flex;
    align-items: center;
    padding-top: 48px;
    color: var(--gray-300);
    font-size: 20px;
}

/* ===== CONTACT ===== */
#contact-section {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.contact-info-panel {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: var(--radius);
    padding: 36px;
    color: var(--white);
}

.contact-info-panel h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-info-item > i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    font-size: 16px;
    flex-shrink: 0;
}
.contact-info-item strong {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    margin-bottom: 4px;
    font-weight: 500;
}
.contact-info-item a,
.contact-info-item span {
    font-size: 15px;
    color: var(--white);
    font-weight: 600;
}
.contact-info-item a:hover {
    color: var(--accent);
}

.contact-coverage {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.contact-coverage h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.coverage-tags span {
    padding: 6px 14px;
    background: rgba(255,255,255,.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Form Panel */
.contact-form-panel {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-group label i {
    color: var(--primary);
    margin-right: 4px;
    font-size: 13px;
}
.form-group label em {
    color: var(--danger);
    font-style: normal;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}

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

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 12px;
}
.form-note i {
    margin-right: 4px;
}

/* ===== FOOTER ===== */
#main-footer {
    background: var(--dark);
    color: var(--white);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    margin-bottom: 16px;
}
.footer-logo i {
    color: var(--primary-light);
    font-size: 24px;
}
.footer-logo strong {
    color: var(--primary-light);
}

.footer-brand p {
    color: rgba(255,255,255,.5);
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact h4,
.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-contact p i {
    color: var(--primary-light);
    width: 16px;
}
.footer-contact p a {
    color: rgba(255,255,255,.6);
    transition: var(--transition);
}
.footer-contact p a:hover {
    color: var(--accent);
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,.5);
    margin-bottom: 10px;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,.35);
    margin-bottom: 4px;
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn .3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp .3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gray-500);
    transition: var(--transition);
}
.modal-close:hover {
    background: var(--gray-200);
    color: var(--dark);
}

.modal-header {
    text-align: center;
    margin-bottom: 28px;
}
.modal-header > i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 12px;
}
.modal-header h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}
.modal-header p {
    font-size: 14px;
    color: var(--gray-500);
}

/* Success Modal */
.success-modal-content {
    text-align: center;
    padding: 48px 40px;
}
.success-icon {
    font-size: 64px;
    color: var(--success);
    margin-bottom: 20px;
    animation: bounceIn .5s;
}
@keyframes bounceIn {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.success-modal-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}
.success-modal-content p {
    color: var(--gray-500);
    margin-bottom: 28px;
}

/* ===== FLOATING CALL BUTTON ===== */
#floating-call-btn {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--success);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    transition: var(--transition);
    text-decoration: none;
}
#floating-call-btn:hover {
    transform: scale(1.1);
    background: #059669;
}

.floating-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--success);
    animation: floating-pulse 2s infinite;
    z-index: -1;
}

@keyframes floating-pulse {
    0% { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ===== MOBILE CTA BAR ===== */
#mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 16px;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
    gap: 10px;
}

.cta-call-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: var(--success);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}
.cta-call-btn:hover { background: #059669; }

.cta-inquiry-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.cta-inquiry-btn:hover { background: var(--primary-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 72px;
    }

    #main-nav { display: none; }
    .header-phone { display: none; }
    #mobile-menu-btn { display: block; }
    
    #mobile-cta-bar { display: flex; }
    #floating-call-btn { bottom: 90px; }

    #hero-section {
        padding: 100px 16px 60px;
        min-height: auto;
    }
    .hero-line1 { font-size: 26px; }
    .hero-line2 { font-size: 48px; }
    .hero-sub { font-size: 16px; }
    .hero-price { padding: 16px 24px; }
    .price-value em { font-size: 32px; }
    .hero-cta-group {
        flex-direction: column;
    }
    .hero-cta-group .btn-large {
        padding: 16px 24px;
        font-size: 16px;
    }
    .hero-trust {
        gap: 16px;
    }
    .trust-item { font-size: 12px; }

    .emergency-content {
        flex-direction: column;
        gap: 16px;
    }
    .emergency-text strong { font-size: 17px; }

    .section-header h2 { font-size: 28px; }

    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
    .why-grid { grid-template-columns: 1fr; gap: 16px; }
    
    .process-arrow { display: none; }
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    .process-step { max-width: 100%; }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-info-panel { padding: 28px; }
    .contact-form-panel { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .modal-container { padding: 28px 20px; }
    .modal-header h2 { font-size: 20px; }

    #services-section,
    #pricing-section,
    #why-us-section,
    #process-section,
    #contact-section {
        padding: 64px 0;
    }
}

@media (max-width: 480px) {
    .hero-line1 { font-size: 22px; }
    .hero-line2 { font-size: 38px; }
    .hero-badge { font-size: 12px; padding: 6px 16px; }
    .hero-trust { gap: 12px; }
    .trust-item { font-size: 11px; }
    .section-header h2 { font-size: 24px; }
    .service-card { padding: 24px 20px; }
    .pricing-card { padding: 28px 20px; }
}

/* ===== LOADING STATE ===== */
.btn-loading {
    pointer-events: none;
    opacity: .7;
}
.btn-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin .6s linear infinite;
    margin-left: 8px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
