/* =============================================
   CSS Variables & Reset
   ============================================= */
:root {
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --primary-light: #e8f0fe;
    --secondary: #ff6b35;
    --secondary-dark: #e55a2b;
    --accent: #00c853;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-section: #fafbfc;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    --header-height: 70px;
    --top-bar-height: 36px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--top-bar-height) + 20px);
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

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

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.35);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--gray-700);
    border-color: var(--gray-400);
}
.btn-outline-dark:hover {
    background: var(--gray-100);
    border-color: var(--gray-600);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

/* =============================================
   Top Bar
   ============================================= */
.top-bar {
    background: var(--dark);
    color: var(--gray-400);
    font-size: 13px;
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left i {
    color: var(--primary);
    margin-right: 4px;
}

.top-bar-divider {
    color: var(--gray-600);
    margin: 0 8px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-right a {
    color: var(--gray-400);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-right a:hover {
    color: var(--white);
}

/* =============================================
   Header / Navigation
   ============================================= */
.site-header {
    background: var(--white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow);
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.logo-sub {
    font-size: 11px;
    color: var(--gray-600);
    font-weight: 500;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    display: block;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-quote-btn {
    background: var(--secondary) !important;
    color: var(--white) !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
}

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

/* Dropdown */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
}

.dropdown-menu li a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
}

.header-phone:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.header-phone i {
    animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0); }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-600);
    cursor: pointer;
    padding: 4px;
}

.mobile-nav-list {
    padding: 12px;
    flex: 1;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius);
}

.mobile-nav-list li a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.mobile-nav-list li a i {
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.mobile-menu-contact {
    padding: 16px 20px;
    border-top: 1px solid var(--gray-200);
}

.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
}

.mobile-call-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* =============================================
   Hero Slider
   ============================================= */
.hero-slider-section {
    position: relative;
}

.hero-slider {
    height: 50vh;
    min-height: 380px;
    max-height: 560px;
}

.hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.75) 0%, rgba(26, 26, 46, 0.45) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--white);
}

.slide-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.slide-content h1,
.slide-title-large {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 600px;
}

.slide-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Swiper Navigation */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: var(--transition);
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
    background: rgba(255,255,255,0.3);
}

.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--white);
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* =============================================
   Trust Section
   ============================================= */
.trust-section {
    background: var(--white);
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 20px;
    border-right: 1px solid var(--gray-200);
    transition: var(--transition);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item:hover {
    background: var(--primary-light);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.trust-text strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
    font-weight: 700;
}

.trust-text span {
    font-size: 13px;
    color: var(--gray-600);
}

/* =============================================
   Sections Common
   ============================================= */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background: var(--bg-light);
}

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

.section-badge {
    display: inline-block;
    padding: 5px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.section-desc {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   Hood Types
   ============================================= */
.hood-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hood-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.hood-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.hood-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.hood-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hood-card:hover .hood-card-image img {
    transform: scale(1.1);
}

.hood-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 700;
}

.hood-card-badge.popular {
    background: var(--accent);
}

.hood-card-badge.premium {
    background: var(--secondary);
}

.hood-card-badge.luxury {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.hood-card-body {
    padding: 20px;
}

.hood-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.hood-card-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
}

.hood-card-price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-600);
}

.hood-card-features {
    margin-bottom: 16px;
}

.hood-card-features li {
    font-size: 14px;
    color: var(--gray-700);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hood-card-features li i {
    color: var(--accent);
    font-size: 12px;
}

.hood-card-recommend {
    background: var(--bg-light);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.hood-card-recommend i {
    color: var(--secondary);
    margin-top: 2px;
    flex-shrink: 0;
}

/* =============================================
   Cost Calculator
   ============================================= */
.calculator-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.calculator-form {
    padding: 32px;
}

.calc-group {
    margin-bottom: 28px;
}

.calc-group:last-child {
    margin-bottom: 0;
}

.calc-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}

.calc-label i {
    color: var(--primary);
}

.calc-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.calc-options.small {
    grid-template-columns: repeat(3, 1fr);
}

.calc-option {
    cursor: pointer;
}

.calc-option input {
    display: none;
}

.calc-option-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 12px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: center;
}

.calc-option input:checked + .calc-option-inner {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

.calc-option-inner i {
    font-size: 24px;
    margin-bottom: 4px;
    color: var(--gray-500);
}

.calc-option input:checked + .calc-option-inner i {
    color: var(--primary);
}

.calc-option-inner strong {
    font-size: 14px;
    color: var(--dark);
}

.calc-option input:checked + .calc-option-inner strong {
    color: var(--primary);
}

.calc-option-inner small {
    font-size: 12px;
    color: var(--gray-600);
}

.calc-option:hover .calc-option-inner {
    border-color: var(--primary);
}

.calculator-result {
    padding: 32px;
    background: var(--bg-light);
    border-top: 2px solid var(--primary);
}

.calculator-result h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculator-result h3 i {
    color: var(--primary);
}

.result-table {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 16px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
}

.result-row:last-child {
    border-bottom: none;
}

.result-total {
    display: flex;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 0 0 var(--radius) var(--radius);
}

.result-notice {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.result-notice i {
    color: var(--secondary);
    margin-top: 3px;
}

.result-actions {
    display: flex;
    gap: 12px;
}

/* =============================================
   Process Section
   ============================================= */
.process-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-300);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    position: absolute;
    left: 18px;
    top: 0;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    z-index: 2;
    background: var(--bg-light);
    padding: 2px 0;
}

.process-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    z-index: 1;
    box-shadow: var(--shadow);
}

.process-content {
    padding-top: 16px;
}

.process-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.process-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* =============================================
   Self-check Section
   ============================================= */
.selfcheck-section {
    background: var(--bg-light);
}

.checklist-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.checklist-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.checklist-items {
    padding: 28px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition);
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-item:hover {
    background: var(--primary-light);
    margin: 0 -28px;
    padding-left: 28px;
    padding-right: 28px;
}

.checklist-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid var(--gray-400);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: var(--transition);
}

.checklist-item input:checked ~ .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checklist-item input:checked ~ .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--white);
    font-size: 12px;
}

.checklist-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.checklist-text p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.checklist-footer {
    padding: 24px 28px;
    background: var(--primary-light);
    text-align: center;
}

.checklist-footer p {
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 14px;
}

/* =============================================
   Articles Section
   ============================================= */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.article-card-link {
    display: block;
}

.article-card-image {
    height: 200px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card-image img {
    transform: scale(1.08);
}

.article-card-body {
    padding: 20px;
}

.article-card-date {
    font-size: 13px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.article-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-excerpt {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-card:hover .article-card-more i {
    transform: translateX(4px);
}

.article-card-more i {
    transition: var(--transition);
}

.no-articles {
    text-align: center;
    color: var(--gray-500);
    grid-column: 1 / -1;
    padding: 40px;
    font-size: 16px;
}

/* =============================================
   FAQ Section
   ============================================= */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    font-family: var(--font-family);
    gap: 12px;
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question span i {
    color: var(--primary);
    flex-shrink: 0;
}

.faq-arrow {
    transition: var(--transition);
    color: var(--gray-500);
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 600;
}

.faq-answer strong {
    color: var(--dark);
}

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
    padding: 60px 0;
    background: transparent;
}

.cta-wrap {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--dark) 100%);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-wrap::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-wrap::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

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

.cta-content h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

/* =============================================
   Floating Buttons
   ============================================= */
.floating-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 12px;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    min-width: 62px;
}

.float-btn:hover {
    transform: translateX(-4px) scale(1.05);
    color: var(--white);
}

.float-btn i {
    font-size: 20px;
}

.float-blog {
    background: #03c75a;
}
.float-blog:hover {
    background: #02b050;
}

.float-youtube {
    background: #ff0000;
}
.float-youtube:hover {
    background: #e60000;
}

.float-phone {
    background: var(--primary);
    animation: pulse-float 2s ease-in-out infinite;
}
.float-phone:hover {
    background: var(--primary-dark);
}

.float-quote {
    background: var(--secondary);
}
.float-quote:hover {
    background: var(--secondary-dark);
}

@keyframes pulse-float {
    0%, 100% { box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(26, 115, 232, 0.7); }
}

/* =============================================
   Back to Top
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* =============================================
   Footer
   ============================================= */
.site-footer {
    background: var(--dark);
    color: var(--gray-400);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--primary);
    font-size: 28px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-links a::before {
    content: '›';
    color: var(--primary);
    font-weight: bold;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--primary);
    width: 16px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--gray-400);
}

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

.footer-business li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.info-label {
    background: rgba(255,255,255,0.1);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    color: var(--gray-300);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gray-600);
}

/* =============================================
   Quote Form Page
   ============================================= */
.quote-page-section {
    padding: 100px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.quote-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.quote-form-wrap {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.quote-form-inner {
    padding: 36px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-label .required {
    color: #e74c3c;
    margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font-family);
    transition: var(--transition);
    background: var(--white);
    color: var(--gray-800);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

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

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

.form-radio-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.form-radio {
    cursor: pointer;
}

.form-radio input {
    display: none;
}

.form-radio-label {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.form-radio input:checked + .form-radio-label {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

.form-radio:hover .form-radio-label {
    border-color: var(--primary);
}

/* Privacy Agreement */
.privacy-section {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 22px;
}

.privacy-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 10px;
    font-family: var(--font-family);
}

.privacy-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.privacy-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

/* Privacy Popup */
.privacy-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.privacy-popup-overlay.active {
    display: flex;
}

.privacy-popup {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.privacy-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
}

.privacy-popup-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.privacy-popup-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-600);
    cursor: pointer;
}

.privacy-popup-body {
    padding: 24px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-700);
}

.privacy-popup-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0 8px;
}

.privacy-popup-body h4:first-child {
    margin-top: 0;
}

.privacy-popup-body ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.privacy-popup-body ul li {
    list-style: disc;
    margin-bottom: 4px;
}

.privacy-popup-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    position: sticky;
    bottom: 0;
    background: var(--white);
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-family);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.35);
}

.form-submit-btn:disabled {
    background: var(--gray-400);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-submit-btn .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.form-submit-btn.loading .spinner {
    display: block;
}

.form-submit-btn.loading .btn-text {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-message {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-top: 16px;
    display: none;
    font-size: 15px;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* =============================================
   Single Post Page
   ============================================= */
.single-post-section {
    padding: 40px 0 80px;
}

.single-post-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.single-post-header {
    margin-bottom: 30px;
}

.single-post-category {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.single-post-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--gray-500);
}

.single-post-thumbnail {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
}

.single-post-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray-700);
}

.single-post-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin: 36px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.single-post-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 10px;
}

.single-post-content p {
    margin-bottom: 16px;
}

.single-post-content ul, .single-post-content ol {
    margin: 12px 0 16px 20px;
}

.single-post-content li {
    list-style: disc;
    margin-bottom: 6px;
}

.single-post-content ol li {
    list-style: decimal;
}

.single-post-content strong {
    color: var(--dark);
}

.single-post-content blockquote {
    border-left: 4px solid var(--primary);
    background: var(--primary-light);
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

.single-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.single-post-content th,
.single-post-content td {
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    text-align: left;
}

.single-post-content th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.single-post-content tr:nth-child(even) td {
    background: var(--gray-100);
}

.single-post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-300);
    gap: 16px;
}

.post-nav-link {
    flex: 1;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.post-nav-link:hover {
    background: var(--primary-light);
}

.post-nav-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 4px;
    display: block;
}

.post-nav-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.post-nav-link.next {
    text-align: right;
}

/* =============================================
   404 & Archive
   ============================================= */
.page-404 {
    text-align: center;
    padding: 100px 0;
}

.page-404 h2 {
    font-size: 80px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.page-404 h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 16px;
}

.page-404 p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

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

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

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

    .trust-item {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .trust-item:nth-child(2n) {
        border-right: none;
    }

    .calc-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .top-bar {
        display: none;
    }

    html {
        scroll-padding-top: calc(var(--header-height) + 20px);
    }

    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-phone span {
        display: none;
    }

    .header-phone {
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .hero-slider {
        height: 45vh;
        min-height: 320px;
    }

    .slide-actions {
        flex-direction: column;
    }

    .slide-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .trust-section {
        margin-top: -30px;
    }

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

    .trust-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .hood-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hood-card-image {
        height: 180px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .article-card-image {
        height: 180px;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 22px;
    }

    .process-number {
        left: 12px;
    }

    .calc-options {
        grid-template-columns: 1fr 1fr;
    }

    .calc-options.small {
        grid-template-columns: 1fr;
    }

    .calculator-form {
        padding: 24px;
    }

    .calculator-result {
        padding: 24px;
    }

    .result-actions {
        flex-direction: column;
    }

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

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .floating-buttons {
        right: 12px;
        gap: 8px;
    }

    .float-btn {
        padding: 10px 8px;
        min-width: 52px;
        font-size: 10px;
    }

    .float-btn i {
        font-size: 16px;
    }

    .float-btn span {
        display: none;
    }

    .cta-wrap {
        padding: 40px 24px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-page-section {
        padding: 80px 0 60px;
    }

    .quote-form-inner {
        padding: 24px;
    }

    .single-post-nav {
        flex-direction: column;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-slider {
        height: 40vh;
        min-height: 280px;
    }

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }

    .slide-content h1,
    .slide-title-large {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 14px;
    }

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

    .trust-item {
        flex-direction: row;
        text-align: left;
    }

    .calc-options {
        grid-template-columns: 1fr;
    }

    .process-step {
        gap: 16px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 14px;
    }
}

/* =============================================
   Print Styles
   ============================================= */
@media print {
    .top-bar,
    .site-header,
    .floating-buttons,
    .back-to-top,
    .hero-slider-section,
    .cta-section {
        display: none !important;
    }

    .site-footer {
        background: var(--white);
        color: var(--dark);
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* =============================================
   Accessibility
   ============================================= */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
