/* ===================================
   HARI TECH SOLUTIONS - UNIFIED GOLD THEME
   Light/Dark blend with modern glow
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg-1: #0b1120;
    --bg-2: #0f172a;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-strong: rgba(2, 6, 23, 0.9);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --accent-1: #fbbf24;
    --accent-2: #fde68a;
    --accent-3: #facc15;
    --border: rgba(148, 163, 184, 0.22);
    --glow: 0 14px 45px rgba(250, 204, 21, 0.45);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: radial-gradient(circle at top, rgba(250, 204, 21, 0.16) 0%, transparent 42%),
        linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header & Navigation */
.header {
    background: rgba(2, 6, 23, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.6);
}

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

.logo img {
    max-height: 50px;
    filter: brightness(0) invert(1);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

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

/* Hero */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 17, 32, 0.95) 55%, rgba(2, 6, 23, 0.98) 100%);
    position: relative;
    overflow: hidden;
    color: var(--text);
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 2;
}

.hero-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.94));
    border: 1px solid rgba(250, 204, 21, 0.45);
    border-radius: 22px;
    padding: 3rem 2.75rem;
    box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.2), 0 20px 55px rgba(250, 204, 21, 0.28);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    box-shadow: 0 0 70px rgba(250, 204, 21, 0.25);
    pointer-events: none;
}

.hero-badge {
    padding: 0.5rem 1rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(250, 204, 21, 0.12));
    border: 1px solid rgba(250, 204, 21, 0.55);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    text-shadow: none;
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(2, 6, 23, 0.35),
        0 4px 10px rgba(250, 204, 21, 0.16);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text);
    position: relative;
    z-index: 2;
    text-shadow: 0 0 40px rgba(250, 204, 21, 0.35);
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--muted);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
    color: #0b1120;
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(250, 204, 21, 0.55);
}

.btn-secondary {
    background: rgba(248, 250, 252, 0.08);
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-secondary:hover {
    background: rgba(248, 250, 252, 0.16);
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.btn-small {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
    scroll-margin-top: 110px;
}

section:target .section-card {
    box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.25), 0 24px 70px rgba(250, 204, 21, 0.35);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.section-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.94));
    border: 1px solid rgba(250, 204, 21, 0.45);
    border-radius: 22px;
    padding: 3rem 2.75rem;
    box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.2), 0 20px 55px rgba(250, 204, 21, 0.28);
    position: relative;
    overflow: hidden;
}

.section-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    box-shadow: 0 0 70px rgba(250, 204, 21, 0.25);
    pointer-events: none;
}

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

.text-left {
    text-align: left;
}

/* Panels */
.why-choose-us,
.trusted-since,
.brand-strip,
.offerings,
.testimonials,
.website-intro,
.cta-section,
.footer,
.whatsapp-section,
.warranty-section,
.contact-form-container,
.contact-info-container,
.warranty-cta,
.checklist-category,
.tech-item {
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(12px);
}

/* Trusted */
.trusted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.trusted-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.92));
    border: 1px solid rgba(250, 204, 21, 0.45);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.2), 0 18px 50px rgba(250, 204, 21, 0.25);
    position: relative;
    overflow: hidden;
}

.trusted-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(250, 204, 21, 0.22);
    pointer-events: none;
}

.trusted-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.trusted-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.highlight-chip {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.trusted-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.stat-card {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.35);
}

.stat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.stat-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Brand strip */
.brand-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}

.brand-strip-title {
    text-align: center;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: 0.4px;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.brand-logos span {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

/* Offerings */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.offering-card {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 1.75rem;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.35);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow);
}

.offering-icon {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.offering-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--text);
}

.offering-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.offerings-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 2rem 1.75rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--text);
}

.feature-card p {
    color: var(--muted);
}

/* Products */
.product-categories .categories-intro {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.product-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow);
}

.product-image {
    position: relative;
    height: 220px;
    background: rgba(2, 6, 23, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.warranty-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #0b1120;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.35);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.product-specs {
    display: grid;
    gap: 0.4rem;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.product-info .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    background: var(--panel-strong);
    border-color: rgba(251, 191, 36, 0.45);
    box-shadow: 0 16px 40px rgba(250, 204, 21, 0.35);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #0b1120;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.35);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(250, 204, 21, 0.4));
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.service-features {
    display: grid;
    gap: 0.4rem;
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.service-features li::before {
    content: '✓';
    margin-right: 0.4rem;
    color: var(--accent-1);
    font-weight: 700;
}

.service-price {
    font-weight: 700;
    color: var(--text);
}

/* Website packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.package-card {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow);
}

.package-card.featured {
    background: var(--panel-strong);
    border-color: rgba(251, 191, 36, 0.45);
    box-shadow: 0 16px 40px rgba(250, 204, 21, 0.35);
}

.package-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #0b1120;
    font-weight: 600;
    font-size: 0.8rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    margin: 1rem 0 0.5rem;
    color: var(--text);
}

.package-subtitle {
    color: var(--muted);
    margin-bottom: 1rem;
}

.package-features {
    text-align: left;
    display: grid;
    gap: 0.5rem;
    color: var(--muted);
    margin: 1rem 0 1.5rem;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 1.75rem;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.35);
}

.testimonial-card p {
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.testimonial-card h4 {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
}

/* CTA */
.cta-section {
    text-align: center;
}

.cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(2, 6, 23, 0.95) 100%);
    color: var(--text);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(250, 204, 21, 0.12) 0%, transparent 70%);
    z-index: 0;
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--muted);
}

/* Contact Page */
.contact-section {
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container,
.contact-info-container {
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.contact-form-container h2,
.contact-info-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.4));
}

.contact-details h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.contact-details p,
.contact-details a {
    color: var(--muted);
    line-height: 1.7;
}

.contact-details a:hover {
    color: var(--accent-2);
}

/* WhatsApp Section */
.whatsapp-section {
    text-align: center;
}

.whatsapp-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.whatsapp-content p {
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Map Section */
.map-section {
    background: transparent;
}

.map-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    color: var(--text);
    text-align: center;
    margin-bottom: 2.5rem;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(2, 6, 23, 0.4);
    border: 1px solid var(--border);
}

/* Warranty Page */
.warranty-content {
    background: transparent;
}

.warranty-section {
    margin-bottom: 4rem;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.warranty-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.warranty-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    color: var(--accent-2);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.warranty-section p {
    color: var(--muted);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.warranty-list {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.warranty-list li {
    list-style: disc;
    color: var(--muted);
    padding: 0.4rem 0;
    line-height: 1.7;
}

.policy-steps {
    margin-top: 2.5rem;
}

.policy-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #0b1120;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(250, 204, 21, 0.4);
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.warranty-note {
    background: rgba(250, 204, 21, 0.1);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-1);
    margin-top: 2rem;
    border-radius: 8px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.checklist-category {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.checklist-category h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.warranty-cta {
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 4rem;
    border: 1px solid var(--border);
}

/* Website Solutions Extras */
.website-intro {
    text-align: center;
}

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

.intro-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.why-choose-section {
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(12px);
}

.process-section {
    background: transparent;
}

.process-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.process-step .step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #0b1120;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(250, 204, 21, 0.4);
}

.process-step .step-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.process-step .step-content p {
    color: var(--muted);
    line-height: 1.7;
}

.tech-section {
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(12px);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    box-shadow: var(--glow);
    transform: translateY(-5px);
}

.tech-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    color: var(--accent-2);
    margin-bottom: 0.75rem;
}

.tech-item p {
    color: var(--muted);
    line-height: 1.6;
}

.packages-section {
    background: transparent;
}

/* Footer */
.footer {
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-section p,
.footer-section a {
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    color: var(--muted);
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 14px 40px rgba(18, 140, 126, 0.45);
    z-index: 999;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .nav.open,
    .nav.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

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

@media (max-width: 640px) {
    .hero {
        padding: 6rem 0 4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }
}