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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #0f172a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: 'Bricolage Grotesque', Georgia, serif;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
}

p {
    color: #475569;
    line-height: 1.75;
}

/* ---- Layout Helpers ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.container-sm {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background-color: #1e3a8a;
    color: #ffffff;
    border-color: #1e3a8a;
}

.btn-primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.35);
}

.btn-secondary {
    background-color: #f59e0b;
    color: #ffffff;
    border-color: #f59e0b;
}

.btn-secondary:hover {
    background-color: #d97706;
    border-color: #d97706;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: #334155;
    border-color: #e2e8f0;
}

.btn-outline:hover {
    background-color: #f8fafc;
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border-color: #475569;
}

.btn-outline-white:hover {
    background-color: #1e293b;
}

.btn-outline-primary {
    background-color: #ffffff;
    color: #1e3a8a;
    border-color: #1e3a8a;
}

.btn-outline-primary:hover {
    background-color: #eff6ff;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* ---- HEADER ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1e3a8a;
}

.logo-icon {
    background-color: #1e3a8a;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
}

.logo-text {
    font-family: 'Bricolage Grotesque', Georgia, serif;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
    padding-bottom: 4px;
}

.header-nav a:hover {
    color: #1e3a8a;
}

.header-nav a.active {
    color: #1e3a8a;
    border-bottom: 2px solid #1e3a8a;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.2s;
}

.header-phone:hover {
    color: #f59e0b;
}

.header-phone svg {
    width: 18px;
    height: 18px;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #475569;
}

.hamburger-btn svg {
    width: 26px;
    height: 26px;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    display: block;
    padding: 12px 16px;
    font-size: 17px;
    font-weight: 600;
    color: #334155;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.15s;
}

.mobile-nav a:hover {
    background-color: #f8fafc;
    color: #1e3a8a;
}

.mobile-nav a.active {
    background-color: #eff6ff;
    color: #1e3a8a;
}

.mobile-nav-footer {
    border-top: 1px solid #f1f5f9;
    margin-top: 16px;
    padding-top: 16px;
}

.mobile-nav-footer p {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 14px;
    text-decoration: none;
}

.mobile-phone-link svg {
    width: 22px;
    height: 22px;
}

/* ---- FOOTER ---- */
.site-footer {
    background-color: #0f172a;
    color: #cbd5e1;
}

.footer-inner {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: #ffffff;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.65;
    max-width: 280px;
}

.footer-col h3 {
    font-family: 'Bricolage Grotesque', Georgia, serif;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #f59e0b;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    line-height: 1.55;
}

.footer-contact-item a:hover {
    color: #ffffff;
}

.footer-contact-item .phone-link {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 48px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
}

/* ---- PAGE HERO (reusable light hero) ---- */
.page-hero {
    background-color: #f8fafc;
    padding: 80px 24px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto;
}

/* ---- HOME PAGE ---- */

/* Hero */
.home-hero {
    background-color: #f8fafc;
    padding: 80px 24px 100px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.home-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(245, 158, 11, 0.12);
    color: #1e3a8a;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    color: #f59e0b;
}

.home-hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 24px;
}

.home-hero h1 span {
    color: #1e3a8a;
}

.home-hero .hero-sub {
    font-size: 18px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    opacity: 0.75;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: #1e3a8a;
}

/* Why Choose Us */
.why-section {
    padding: 80px 24px;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 14px;
}

.section-header p {
    font-size: 17px;
}

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

.feature-card {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 36px;
    transition: border-color 0.2s;
}

.feature-card:hover {
    border-color: rgba(30, 58, 138, 0.2);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon.blue {
    background-color: rgba(30, 58, 138, 0.1);
}

.card-icon.amber {
    background-color: rgba(245, 158, 11, 0.15);
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card-icon.blue svg {
    color: #1e3a8a;
}

.card-icon.amber svg {
    color: #f59e0b;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
}

/* Plans Overview (dark section on home) */
.plans-dark {
    background-color: #0f172a;
    color: #ffffff;
    padding: 80px 24px;
}

.plans-dark .section-header h2 {
    color: #ffffff;
}

.plans-dark .section-header p {
    color: #94a3b8;
}

.home-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.home-plan-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 28px;
    padding: 36px;
    display: flex;
    flex-direction: column;
}

.home-plan-card.featured {
    background-color: #1e3a8a;
    border-color: #f59e0b;
    border-width: 2px;
    position: relative;
    transform: translateY(-16px);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.3);
}

.most-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f59e0b;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.home-plan-card svg.plan-icon {
    width: 36px;
    height: 36px;
    color: #64748b;
    margin-bottom: 16px;
}

.home-plan-card.featured svg.plan-icon {
    color: #f59e0b;
}

.home-plan-card h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 8px;
}

.home-plan-card .plan-desc {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 24px;
}

.home-plan-card.featured .plan-desc {
    color: rgba(255,255,255,0.7);
}

.plan-price {
    margin-bottom: 32px;
}

.plan-price strong {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
}

.plan-price span {
    font-size: 15px;
    color: #94a3b8;
}

.home-plan-card.featured .plan-price span {
    color: rgba(255,255,255,0.7);
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    flex: 1;
}

.plan-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #cbd5e1;
}

.plan-feature-item svg {
    width: 18px;
    height: 18px;
    color: #f59e0b;
    flex-shrink: 0;
}

/* How It Works */
.how-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 15%;
    right: 15%;
    height: 1px;
    background-color: #e2e8f0;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background-color: #1e3a8a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

.step-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 15px;
}

.step-item p a {
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
}

.step-item p a:hover {
    text-decoration: underline;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 24px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.testimonials-section h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.testimonial-card {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars svg {
    width: 18px;
    height: 18px;
    color: #f59e0b;
    fill: #f59e0b;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: #334155;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

/* CTA Banner */
.cta-banner {
    background-color: #1e3a8a;
    padding: 80px 24px;
    text-align: center;
}

.cta-box {
    max-width: 640px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 60px 40px;
}

.cta-box h2 {
    font-size: clamp(28px, 4vw, 48px);
    color: #ffffff;
    margin-bottom: 18px;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ---- PLANS PAGE ---- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
    padding: 80px 0;
}

.plan-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    position: relative;
}

.plan-card.popular {
    border-color: #1e3a8a;
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.14);
    margin-top: -24px;
    z-index: 2;
}

.plan-card-header {
    padding: 32px 32px 24px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.plan-card.popular .plan-card-header {
    background-color: rgba(30, 58, 138, 0.04);
}

.plan-card-header h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.plan-card-header .plan-tagline {
    font-size: 14px;
    color: #64748b;
    min-height: 40px;
}

.plan-card-header .plan-price-display {
    margin-top: 24px;
}

.plan-card-header .plan-price-display strong {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
}

.plan-card-header .plan-price-display span {
    font-size: 16px;
    color: #94a3b8;
}

.plan-card-body {
    padding: 28px 32px;
    flex: 1;
}

.plan-card-body ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-card-body li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #334155;
}

.plan-card-body li svg {
    width: 18px;
    height: 18px;
    color: #1e3a8a;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-card-footer {
    padding: 20px 32px 28px;
    background-color: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-radius: 0 0 20px 20px;
}

.plans-cta-box {
    background-color: #0f172a;
    border-radius: 28px;
    padding: 60px 40px;
    text-align: center;
    max-width: 860px;
    margin: 0 auto 80px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.plans-cta-box svg {
    width: 48px;
    height: 48px;
    color: #f59e0b;
    margin: 0 auto 24px;
}

.plans-cta-box h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 16px;
}

.plans-cta-box p {
    color: #94a3b8;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ---- FEATURES PAGE ---- */
.features-hero {
    background-color: #1e3a8a;
    padding: 80px 24px;
    text-align: center;
}

.features-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    color: #ffffff;
    margin-bottom: 16px;
}

.features-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid-section {
    padding: 80px 24px;
    background-color: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.feat-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}

.feat-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
}

.feat-icon {
    width: 60px;
    height: 60px;
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feat-icon svg {
    width: 30px;
    height: 30px;
}

.feat-icon.blue svg { color: #1e3a8a; }
.feat-icon.amber svg { color: #f59e0b; }

.feat-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.feat-card p {
    font-size: 15px;
    line-height: 1.7;
}

.hardware-section {
    padding: 80px 24px;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.hardware-inner {
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 960px;
    margin: 0 auto;
}

.hardware-text {
    flex: 1;
}

.hardware-text h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    margin-bottom: 16px;
}

.hardware-text p {
    font-size: 17px;
    margin-bottom: 24px;
}

.hardware-text ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hardware-text li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
}

.hardware-text li svg {
    width: 18px;
    height: 18px;
    color: #f59e0b;
    flex-shrink: 0;
}

.hardware-visual {
    flex: 1;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    max-width: 380px;
}

.hardware-visual svg {
    width: 45%;
    height: 45%;
    color: #cbd5e1;
}

.features-cta {
    background-color: #0f172a;
    padding: 64px 24px;
    text-align: center;
}

.features-cta h2 {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 28px;
}

/* ---- ABOUT PAGE ---- */
.about-hero {
    background-color: #f8fafc;
    padding: 80px 24px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.about-icon {
    width: 80px;
    height: 80px;
    background-color: #1e3a8a;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 8px 24px rgba(30,58,138,0.25);
}

.about-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.about-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 19px;
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 24px;
}

.about-prose {
    max-width: 760px;
    margin: 0 auto;
}

.about-prose h2 {
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 52px;
}

.about-prose h2:first-child {
    margin-top: 0;
}

.about-prose p {
    font-size: 17px;
    margin-bottom: 16px;
}

.about-prose ul {
    margin: 0 0 16px 0;
    list-style: disc;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-prose ul li {
    font-size: 16px;
    color: #475569;
}

.about-prose strong {
    color: #0f172a;
}

.about-office {
    background-color: #0f172a;
    padding: 64px 24px;
}

.about-office-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.about-office h2 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
}

.about-office-address {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-office-address svg {
    width: 24px;
    height: 24px;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-office-address p {
    color: #94a3b8;
    font-size: 17px;
    line-height: 1.7;
}

.about-cta-box {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    min-width: 280px;
}

.about-cta-box h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
}

.about-cta-box p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 24px;
}

/* ---- CONTACT PAGE ---- */
.contact-section {
    background-color: #f8fafc;
    min-height: 100vh;
    padding: 80px 24px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 28px;
    padding: 48px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-col h2 {
    font-size: 22px;
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 15px;
    color: #0f172a;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    background-color: #ffffff;
}

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

.form-group .error-msg {
    display: none;
    color: #dc2626;
    font-size: 13px;
    margin-top: 6px;
}

.form-success {
    display: none;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 16px;
    text-align: center;
}

.form-success p {
    color: #15803d;
    font-weight: 600;
    font-size: 16px;
}

.contact-info-col {
    background-color: #0f172a;
    border-radius: 20px;
    padding: 36px;
    color: #ffffff;
    height: fit-content;
}

.contact-info-col h3 {
    font-family: 'Bricolage Grotesque', Georgia, serif;
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 28px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-item svg {
    width: 22px;
    height: 22px;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info-item strong {
    display: block;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item span,
.contact-info-item address {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

.contact-info-item a {
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-item a.phone {
    color: #f59e0b;
    font-size: 20px;
    font-weight: 700;
}

.contact-info-item a:hover {
    color: #ffffff;
}

/* ---- LEGAL PAGES ---- */
.legal-page {
    padding: 60px 24px 80px;
    background-color: #ffffff;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 12px;
}

.legal-date {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 32px;
    display: block;
}

.legal-content p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content h2 {
    font-family: 'Bricolage Grotesque', Georgia, serif;
    font-size: 22px;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 14px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-content ul li {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

.legal-contact-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 32px;
    margin-top: 16px;
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}

.legal-content strong {
    color: #0f172a;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cards-3,
    .home-plans-grid,
    .steps-grid,
    .testimonials-grid,
    .features-grid,
    .plans-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-plan-card.featured {
        transform: none;
    }

    .hardware-inner {
        flex-direction: column;
    }

    .hardware-visual {
        max-width: 100%;
        width: 100%;
        aspect-ratio: 2/1;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .header-cta .btn {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .cards-3,
    .home-plans-grid,
    .steps-grid,
    .testimonials-grid,
    .features-grid,
    .plans-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.popular {
        margin-top: 0;
    }

    .home-plan-card.featured {
        transform: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        padding: 32px 20px;
    }

    .about-office-inner {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .home-hero {
        padding: 60px 20px 80px;
    }

    .page-hero,
    .why-section,
    .how-section,
    .testimonials-section,
    .features-grid-section,
    .hardware-section,
    .about-story,
    .contact-section {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .plans-cta-box {
        padding: 40px 24px;
    }

    .steps-grid::before {
        display: none;
    }

    .container,
    .container-sm {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .hero-trust {
        flex-direction: column;
        gap: 14px;
    }

    .btn-lg {
        padding: 16px 24px;
        font-size: 16px;
    }
}
