/* =====================================================
   Nikunj Distribution - Professional Corporate CSS
   Save as: css/style.css
===================================================== */

/* ---------- Reset ---------- */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#1f2937;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

/* ---------- Variables ---------- */
:root{
    --primary:#0f3b66;
    --primary-dark:#0b2f52;
    --accent:#1f6aa5;
    --text:#1f2937;
    --muted:#6b7280;
    --bg:#f5f7fa;
    --white:#ffffff;
    --border:#e5e7eb;
    --section:#eef3f8;
    --shadow:0 8px 24px rgba(15,23,42,.08);
    --radius:14px;
}

/* ---------- Container ---------- */
.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* ---------- Top Bar ---------- */
.top-bar{
    background:#0f172a;
    color:#cbd5e1;
    font-size:14px;
}

.top-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
    gap:20px;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.top-left a:hover,
.top-right a:hover{
    color:#ffffff;
}

/* ---------- Header ---------- */
.header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    border-bottom:1px solid var(--border);
}

.nav-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}

.logo img{
    height:54px;
}

.navbar ul{
    display:flex;
    align-items:center;
    gap:30px;
}

.navbar a{
    color:#334155;
    font-weight:500;
    transition:.25s;
}

.navbar a:hover,
.navbar a.active{
    color:var(--primary);
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.menu-toggle{
    display:none;
    width:44px;
    height:44px;
    border:none;
    border-radius:8px;
    background:#f1f5f9;
    cursor:pointer;
    font-size:20px;
}

/* ---------- Buttons ---------- */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 24px;
    border-radius:8px;
    font-weight:600;
    transition:.25s;
    border:1px solid transparent;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
}

.btn-primary:hover{
    background:var(--primary-dark);
}

.btn-outline{
    background:#fff;
    color:var(--primary);
    border:1px solid var(--primary);
}

.btn-outline:hover{
    background:#f8fafc;
}

/* ---------- Hero ---------- */
.hero{
    position:relative;
    min-height:85vh;
    display:flex;
    align-items:center;
    background:url('../images/distribution.webp') center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(15,23,42,.58);
}

.hero-content{
    position: relative;
    z-index: 2;
    max-width: 650px;
    width: 100%;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
    color: #fff;
    padding: 79px 0 0 36px;
}

.hero-tag{
    display:inline-block;
    padding:7px 16px;
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:18px;
}

.hero h1{
    font-size:56px;
    line-height:1.1;
    margin-bottom:22px;
    font-weight:700;
}

.hero h1 span{
    color:#fff;
}

.hero p{
    color:#e5e7eb;
    margin-bottom:30px;
    font-size:17px;
}

.hero-buttons{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-buttons .btn-outline{
    background:transparent;
    color:#fff;
    border-color:#fff;
}

.hero-buttons .btn-outline:hover{
    background:#fff;
    color:var(--primary);
}

.hero-highlights{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-left: 0;
    justify-content: start;
}

.highlight-card{
    display:flex;
    gap:14px;
    align-items:center;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;
    padding:18px;
}

.highlight-card i{
    width:50px;
    height:50px;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.12);
    border-radius:10px;
    color:#fff;
    font-size:20px;
}

.highlight-card h4{
    font-size:16px;
    margin-bottom:4px;
}

.highlight-card p{
    margin:0;
    color:#dbe4ef;
    font-size:14px;
}

/* ---------- Sections ---------- */
section{
    padding:90px 0;
}

.section-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 50px;
}

.section-tag{
    display:inline-block;
    color:var(--primary);
    font-size:13px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:14px;
}

.section-header h2{
    font-size:40px;
    margin-bottom:16px;
    color:var(--text);
}

.section-header p{
    color:var(--muted);
}

/* ---------- Features ---------- */
.features{
    background:#fff;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.feature-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:32px;
    box-shadow:var(--shadow);
    transition:.25s;
}

.feature-card:hover{
    transform:translateY(-5px);
}

.feature-icon{
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    background:#f1f5f9;
    color:var(--primary);
    border-radius:10px;
    font-size:22px;
    margin-bottom:18px;
}

.feature-card h3{
    margin-bottom:12px;
}

.feature-card p{
    color:var(--muted);
}

/* ---------- CTA ---------- */
.cta{
    background:var(--section);
}

.cta-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:42px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    box-shadow:var(--shadow);
}

.cta-box h2{
    font-size:34px;
    margin-bottom:12px;
    color:var(--text);
}

.cta-box p{
    color:var(--muted);
}

.cta-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

/* ---------- About ---------- */
.about{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image img{
    border-radius:18px;
    box-shadow:var(--shadow);
}

.about-content h2{
    font-size:40px;
    margin-bottom:18px;
}

.about-content p{
    color:var(--muted);
    margin-bottom:18px;
}

.about-list{
    display:grid;
    gap:14px;
    margin:24px 0;
}

.about-list li{
    display:flex;
    gap:10px;
    color:#334155;
}

.about-list i{
    color:var(--primary);
}

/* ---------- Stats ---------- */
.stats{
    background:var(--section);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.stat-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:30px;
    text-align:center;
    box-shadow:var(--shadow);
}

.stat-card h3{
    font-size:38px;
    color:var(--primary);
    margin-bottom:8px;
}

.stat-card p{
    color:var(--muted);
}

/* ---------- Services ---------- */
.services{
    background:#fff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.service-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:30px;
    box-shadow:var(--shadow);
    transition:.25s;
}

.service-card:hover{
    transform:translateY(-5px);
}

.service-card i{
    font-size:32px;
    color:var(--primary);
    margin-bottom:16px;
}

.service-card h3{
    margin-bottom:10px;
}

.service-card p{
    color:var(--muted);
}

/* ---------- Process ---------- */
.process{
    background:var(--section);
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.process-step{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:28px;
    box-shadow:var(--shadow);
}

.process-step span{
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    background:var(--primary);
    color:#fff;
    border-radius:10px;
    font-weight:700;
    margin-bottom:18px;
}

.process-step h3{
    margin-bottom:10px;
}

.process-step p{
    color:var(--muted);
}

/* ---------- Contact ---------- */
.contact{
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:36px;
}

.contact-form,
.info-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:32px;
    box-shadow:var(--shadow);
}

.contact-form h2{
    font-size:34px;
    margin-bottom:22px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px 16px;
    border:1px solid var(--border);
    border-radius:8px;
    margin-bottom:16px;
    font-size:15px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--primary);
    outline:none;
}

.map-placeholder{
    border-radius:18px;
    overflow:hidden;
    box-shadow:var(--shadow);
    min-height:300px;
}

.map-placeholder img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.info-card h3{
    margin-bottom:16px;
}

.info-card p{
    display:flex;
    gap:10px;
    color:#475569;
    margin-bottom:12px;
}

.info-card i{
    color:var(--primary);
}

/* ---------- Footer ---------- */
.footer{
    background:#0f172a;
    color:#cbd5e1;
}

.footer-grid.two-columns{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
    padding:70px 0 40px;
}

.footer-brand img{
    height:56px;
    margin-bottom:16px;
}

.footer-brand p{
    color:#94a3b8;
    max-width:430px;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:22px;
}

.footer-social a{
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    background:#1e293b;
    border-radius:8px;
    transition:.25s;
}

.footer-social a:hover{
    background:var(--primary);
}

.footer-links-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.footer-links h4{
    color:#fff;
    margin-bottom:14px;
}

.footer-links ul{
    display:grid;
    gap:10px;
}

.footer-links a{
    color:#94a3b8;
    transition:.25s;
}

.footer-links a:hover{
    color:#fff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    padding:18px 0;
    color:#94a3b8;
    font-size:14px;
}

/* ---------- Responsive ---------- */
@media (max-width:1024px){

    .hero h1{
        font-size:46px;
    }

    .feature-grid,
    .services-grid,
    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-grid,
    .contact-grid,
    .cta-box,
    .footer-grid.two-columns{
        grid-template-columns:1fr;
    }

    .hero-highlights{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){

    .top-content{
        flex-direction:column;
        align-items:flex-start;
    }

    .navbar{
        position:fixed;
        top:84px;
        right:-100%;
        width:280px;
        height:calc(100vh - 84px);
        background:#fff;
        box-shadow:-10px 0 30px rgba(0,0,0,.08);
        transition:.35s;
        padding:24px;
    }

    .navbar.active{
        right:0;
    }

    .navbar ul{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

    .menu-toggle{
        display:grid;
        place-items:center;
    }

    .nav-actions .btn{
        display:none;
    }

    .hero{
        min-height:78vh;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:16px;
    }

    .section-header h2,
    .about-content h2,
    .contact-form h2,
    .cta-box h2{
        font-size:30px;
    }

    .feature-grid,
    .services-grid,
    .process-grid,
    .stats-grid,
    .form-row,
    .footer-links-wrapper{
        grid-template-columns:1fr;
    }

    .footer-bottom-content{
        flex-direction:column;
        text-align:center;
    }
}

@media (max-width:480px){

    .container{
        width:92%;
    }

    .hero h1{
        font-size:30px;
    }

    .btn{
        width:100%;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .highlight-card{
        padding:16px;
    }

    .cta-box{
        padding:28px;
    }

    .contact-form,
    .info-card{
        padding:24px;
    }
}


/*About Us Page*/
.nd-page {
    width: 100%;
    overflow: hidden;
    background: var(--white);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

.nd-page *,
.nd-page *::before,
.nd-page *::after {
    box-sizing: border-box;
}

.nd-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.nd-hero {
    position: relative;
    padding: 85px 0 80px;
    background:
        linear-gradient(
            135deg,
            rgba(238, 243, 248, .9),
            rgba(255, 255, 255, 1)
        );
}

.nd-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
}


/* HERO CONTENT */

.nd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 8px 14px;
    border: 1px solid rgba(15, 59, 102, .12);
    border-radius: 30px;
    background: var(--white);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nd-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.nd-hero h1 {
    margin: 0 0 22px;
    color: var(--primary-dark);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -2px;
}

.nd-hero h1 span {
    color: var(--accent);
}

.nd-hero-description {
    max-width: 620px;
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}


/* HERO BUTTONS */

.nd-hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.nd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 700;
    transition: all .25s ease;
}

.nd-btn-primary {
    background: var(--primary);
    color: var(--white) !important;
    border: 1px solid var(--primary);
}

.nd-btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.nd-btn-outline {
    background: var(--white);
    color: var(--primary) !important;
    border: 1px solid var(--border);
}

.nd-btn-outline:hover {
    color: var(--primary-dark) !important;
    border-color: var(--primary);
    transform: translateY(-2px);
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.nd-hero-visual {
    position: relative;
    min-height: 450px;
}

.nd-main-visual {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: var(--radius);
    background:
        linear-gradient(
            rgba(15, 59, 102, .76),
            rgba(11, 47, 82, .76)
        ),
        url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=85")
        center / cover no-repeat;

    box-shadow: 0 20px 45px rgba(15, 59, 102, .14);
}

.nd-main-visual-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px;
}

.nd-visual-label {
    display: inline-block;
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 4px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nd-main-visual h2 {
    max-width: 420px;
    margin: 0;
    color: var(--white);
    font-size: 34px;
    line-height: 1.2;
}


/* FLOATING CARD */

.nd-floating-card {
    position: absolute;
    right: -28px;
    bottom: 45px;
    width: 190px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 10px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 15px 35px rgba(15, 23, 42, .14);
}

.nd-floating-number {
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 30px;
    font-weight: 800;
}

.nd-floating-text {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   COMMON SECTION STYLES
   ========================================================= */

.nd-section-tag {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nd-section-title {
    margin: 0 0 17px;
    color: var(--primary-dark);
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
}

.nd-section-description {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   SERVICES SECTION
   ========================================================= */

.nd-intro {
    padding: 85px 0;
    background: var(--section);
}

.nd-intro-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.nd-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.nd-service-card {
    position: relative;
    padding: 34px 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.nd-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 59, 102, .18);
    box-shadow: var(--shadow);
}

.nd-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 10px;
    background: #edf4fa;
    color: var(--primary);
    font-size: 24px;
}

.nd-service-card:nth-child(2) .nd-service-icon {
    background: #edf3f8;
    color: var(--accent);
}

.nd-service-card:nth-child(3) .nd-service-icon {
    background: #f1f5f8;
    color: var(--primary);
}

.nd-service-card h3 {
    margin: 0 0 12px;
    color: var(--primary-dark);
    font-size: 20px;
    line-height: 1.3;
}

.nd-service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */

.nd-about {
    padding: 90px 0;
    background: var(--white);
}

.nd-about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 75px;
    align-items: center;
}

.nd-about-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: var(--radius);
    background:
        linear-gradient(
            rgba(15, 59, 102, .25),
            rgba(15, 59, 102, .25)
        ),
        url("https://images.unsplash.com/photo-1553413077-190dd305871c?auto=format&fit=crop&w=1000&q=85")
        center / cover no-repeat;

    box-shadow: var(--shadow);
}

.nd-about-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    max-width: 240px;
    padding: 20px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .14);
}

.nd-about-badge strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 20px;
}

.nd-about-badge span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.nd-about-content h2 {
    margin: 0 0 22px;
    color: var(--primary-dark);
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.2;
}

.nd-about-content > p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}


/* FEATURE LIST */

.nd-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.nd-feature-list li {
    position: relative;
    padding-left: 27px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

.nd-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 800;
}


/* =========================================================
   STATS SECTION
   ========================================================= */

.nd-stats {
    padding: 55px 0;
    background: var(--primary);
}

.nd-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.nd-stat {
    padding: 10px 30px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.nd-stat:last-child {
    border-right: none;
}

.nd-stat strong {
    display: block;
    margin-bottom: 6px;
    color: var(--white);
    font-size: 34px;
    font-weight: 800;
}

.nd-stat span {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
}


/* =========================================================
   PROCESS SECTION
   ========================================================= */

.nd-process {
    padding: 90px 0;
    background: var(--white);
}

.nd-process-heading {
    max-width: 700px;
    margin-bottom: 50px;
}

.nd-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.nd-process-card {
    position: relative;
    padding: 30px 25px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.nd-process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.nd-process-number {
    margin-bottom: 20px;
    color: #dce5ed;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.nd-process-card h3 {
    margin: 0 0 10px;
    color: var(--primary-dark);
    font-size: 18px;
}

.nd-process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   LOCATION SECTION
   ========================================================= */

.nd-location {
    padding: 85px 0;
    background: var(--section);
}

.nd-location-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 35px;
    align-items: stretch;
}


/* LOCATION INFO */

.nd-location-info {
    padding: 40px;
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--white);
}

.nd-location-info h2 {
    margin: 0 0 17px;
    color: var(--white);
    font-size: 32px;
    line-height: 1.25;
}

.nd-location-info > p {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.75;
}

.nd-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.nd-contact-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    font-size: 16px;
}

.nd-contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--white);
    font-size: 12px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.nd-contact-item span {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.5;
}


/* MAP */

.nd-map {
    min-height: 420px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #e8edf2;
    box-shadow: var(--shadow);
}

.nd-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}


/* =========================================================
   CTA SECTION
   ========================================================= */

.nd-cta {
    padding: 75px 0;
    background: var(--white);
}

.nd-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 45px 55px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--section);
}

.nd-cta h2 {
    margin: 0 0 10px;
    color: var(--primary-dark);
    font-size: 30px;
    line-height: 1.3;
}

.nd-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .nd-hero {
        padding: 65px 0;
    }

    .nd-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .nd-hero-content {
        max-width: 750px;
    }

    .nd-hero-visual {
        max-width: 700px;
        width: 100%;
    }

    .nd-about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .nd-about-image {
        min-height: 400px;
        max-width: 700px;
    }

    .nd-services {
        grid-template-columns: 1fr 1fr;
    }

    .nd-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nd-location-grid {
        grid-template-columns: 1fr;
    }

    .nd-location-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .nd-location-info h2,
    .nd-location-info > p {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .nd-container {
        width: calc(100% - 28px);
    }


    /* HERO */

    .nd-hero {
        padding: 45px 0 55px;
    }

    .nd-eyebrow {
        margin-bottom: 17px;
        font-size: 10px;
    }

    .nd-hero h1 {
        margin-bottom: 18px;
        font-size: 40px;
        letter-spacing: -1.2px;
    }

    .nd-hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .nd-hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .nd-btn {
        width: 100%;
    }


    /* HERO IMAGE */

    .nd-hero-visual {
        min-height: 350px;
    }

    .nd-main-visual {
        min-height: 350px;
        border-radius: 12px;
    }

    .nd-main-visual-content {
        padding: 25px;
    }

    .nd-main-visual h2 {
        font-size: 27px;
    }

    .nd-floating-card {
        right: 15px;
        bottom: 15px;
        width: 155px;
        padding: 16px;
    }

    .nd-floating-number {
        font-size: 24px;
    }


    /* COMMON */

    .nd-section-title,
    .nd-about-content h2 {
        font-size: 30px;
        letter-spacing: -.5px;
    }

    .nd-section-description {
        font-size: 14px;
    }


    /* SERVICES */

    .nd-intro {
        padding: 60px 0;
    }

    .nd-intro-header {
        margin-bottom: 35px;
    }

    .nd-services {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .nd-service-card {
        padding: 26px 23px;
    }


    /* ABOUT */

    .nd-about {
        padding: 60px 0;
    }

    .nd-about-grid {
        gap: 35px;
    }

    .nd-about-image {
        min-height: 360px;
        border-radius: 12px;
    }

    .nd-about-badge {
        left: 15px;
        bottom: 15px;
        max-width: 210px;
        padding: 16px;
    }

    .nd-feature-list {
        grid-template-columns: 1fr;
        gap: 13px;
    }


    /* STATS */

    .nd-stats {
        padding: 40px 0;
    }

    .nd-stats-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 30px;
    }

    .nd-stat {
        padding: 5px 15px;
    }

    .nd-stat:nth-child(2) {
        border-right: none;
    }

    .nd-stat strong {
        font-size: 28px;
    }

    .nd-stat span {
        font-size: 11px;
    }


    /* PROCESS */

    .nd-process {
        padding: 60px 0;
    }

    .nd-process-heading {
        margin-bottom: 35px;
    }

    .nd-process-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .nd-process-card {
        padding: 25px;
    }


    /* LOCATION */

    .nd-location {
        padding: 60px 0;
    }

    .nd-location-grid {
        gap: 20px;
    }

    .nd-location-info {
        display: block;
        padding: 30px 25px;
        border-radius: 12px;
    }

    .nd-location-info h2 {
        font-size: 28px;
    }

    .nd-map,
    .nd-map iframe {
        min-height: 320px;
    }


    /* CTA */

    .nd-cta {
        padding: 55px 0;
    }

    .nd-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
        gap: 25px;
    }

    .nd-cta h2 {
        font-size: 26px;
    }

    .nd-cta .nd-btn {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .nd-hero h1 {
        font-size: 35px;
    }

    .nd-main-visual {
        min-height: 320px;
    }

    .nd-main-visual h2 {
        font-size: 24px;
    }

    .nd-floating-card {
        width: 140px;
    }

    .nd-stat strong {
        font-size: 24px;
    }

    .nd-stat span {
        font-size: 10px;
    }
}


/*Brands page*/
.brand-inc-page {
    width: 100%;
    overflow: hidden;
    background: var(--white);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

.brand-inc-page *,
.brand-inc-page *::before,
.brand-inc-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.brand-inc-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   INTRO
   ========================================================= */

.brand-inc-hero {
    padding: 75px 0 45px;
    background: var(--white);
    text-align: center;
}

.brand-inc-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.brand-inc-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.brand-inc-title {
    margin: 0 0 18px;
    color: var(--primary);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.brand-inc-description {
    max-width: 850px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   BRANDS SECTION
   ========================================================= */

.brand-inc-section {
    padding: 10px 0 80px;
    background: var(--white);
}


/* =========================================================
   GRID
   ========================================================= */

.brand-inc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}


/* =========================================================
   BRAND CARD
   ========================================================= */

.brand-inc-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 145px;
    padding: 20px 16px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;

    box-shadow: 0 5px 15px rgba(15,23,42,.08);

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.brand-inc-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: 0;
    height: 3px;

    background: var(--accent);

    transform: translateX(-50%);
    transition: width .3s ease;
}

.brand-inc-card:hover {
    transform: translateY(-5px);
    border-color: rgba(31,106,165,.25);
    box-shadow: 0 14px 30px rgba(15,23,42,.12);
}

.brand-inc-card:hover::before {
    width: 55%;
}


/* =========================================================
   LOGO
   ========================================================= */

.brand-inc-logo {
    display: block;

    width: 100%;
    height: 82px;

    object-fit: contain;
    object-position: center;

    transition: transform .25s ease;
}

.brand-inc-card:hover .brand-inc-logo {
    transform: scale(1.04);
}


/* =========================================================
   OPTIONAL BRAND LABEL
   ========================================================= */

.brand-inc-name {
    display: none;
}


/* =========================================================
   BOTTOM INFORMATION
   ========================================================= */

.brand-inc-bottom {
    margin-top: 40px;
    text-align: center;
}

.brand-inc-bottom-text {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   TRUST SECTION
   ========================================================= */

.brand-inc-trust {
    padding: 65px 0;
    background: var(--section);
}

.brand-inc-trust-header {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.brand-inc-trust-title {
    margin: 0 0 12px;
    color: var(--primary-dark);
    font-size: 32px;
    line-height: 1.25;
}

.brand-inc-trust-description {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.brand-inc-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.brand-inc-trust-card {
    padding: 30px 25px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 5px 18px rgba(15,23,42,.05);
}

.brand-inc-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;
    margin: 0 auto 17px;

    border-radius: 10px;
    background: #edf3f8;

    color: var(--primary);
    font-size: 21px;
    font-weight: 700;
}

.brand-inc-trust-card-title {
    margin: 0 0 9px;
    color: var(--primary-dark);
    font-size: 18px;
}

.brand-inc-trust-card-text {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   CTA
   ========================================================= */

.brand-inc-cta {
    padding: 70px 0;
    background: var(--white);
}

.brand-inc-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    padding: 42px 50px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--section);
}

.brand-inc-cta-content {
    max-width: 700px;
}

.brand-inc-cta-title {
    margin: 0 0 10px;
    color: var(--primary-dark);
    font-size: 29px;
    line-height: 1.3;
}

.brand-inc-cta-text {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.brand-inc-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 24px;

    border: 1px solid var(--primary);
    border-radius: 6px;

    background: var(--primary);
    color: var(--white) !important;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none !important;
    white-space: nowrap;

    transition: all .25s ease;
}

.brand-inc-cta-button:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .brand-inc-container {
        width: min(100% - 40px, 1000px);
    }

    .brand-inc-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 17px;
    }

    .brand-inc-card {
        min-height: 140px;
    }
}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 850px) {

    .brand-inc-hero {
        padding: 60px 0 40px;
    }

    .brand-inc-title {
        font-size: 38px;
    }

    .brand-inc-description {
        font-size: 14px;
    }

    .brand-inc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .brand-inc-card {
        min-height: 135px;
        padding: 18px 14px;
    }

    .brand-inc-logo {
        height: 76px;
    }

    .brand-inc-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .brand-inc-trust-card:last-child {
        grid-column: 1 / -1;
    }

    .brand-inc-cta-box {
        padding: 38px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .brand-inc-container {
        width: calc(100% - 28px);
    }


    /* INTRO */

    .brand-inc-hero {
        padding: 45px 0 30px;
    }

    .brand-inc-eyebrow {
        margin-bottom: 10px;
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .brand-inc-title {
        margin-bottom: 14px;
        font-size: 31px;
        letter-spacing: -.5px;
    }

    .brand-inc-description {
        font-size: 13px;
        line-height: 1.75;
    }


    /* BRANDS */

    .brand-inc-section {
        padding: 10px 0 55px;
    }

    .brand-inc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .brand-inc-card {
        min-height: 120px;
        padding: 15px 10px;
        border-radius: 9px;

        box-shadow: 0 4px 12px rgba(15,23,42,.07);
    }

    .brand-inc-logo {
        height: 68px;
    }

    .brand-inc-card:hover {
        transform: translateY(-3px);
    }


    /* BOTTOM */

    .brand-inc-bottom {
        margin-top: 28px;
    }

    .brand-inc-bottom-text {
        font-size: 12px;
    }


    /* TRUST */

    .brand-inc-trust {
        padding: 55px 0;
    }

    .brand-inc-trust-header {
        margin-bottom: 30px;
    }

    .brand-inc-trust-title {
        font-size: 28px;
    }

    .brand-inc-trust-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .brand-inc-trust-card:last-child {
        grid-column: auto;
    }

    .brand-inc-trust-card {
        padding: 25px 22px;
    }


    /* CTA */

    .brand-inc-cta {
        padding: 50px 0;
    }

    .brand-inc-cta-box {
        display: block;
        padding: 30px 24px;
    }

    .brand-inc-cta-title {
        font-size: 25px;
    }

    .brand-inc-cta-text {
        margin-bottom: 22px;
        font-size: 13px;
    }

    .brand-inc-cta-button {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .brand-inc-title {
        font-size: 28px;
    }

    .brand-inc-grid {
        gap: 10px;
    }

    .brand-inc-card {
        min-height: 108px;
        padding: 12px 8px;
    }

    .brand-inc-logo {
        height: 60px;
    }

    .brand-inc-trust-title {
        font-size: 25px;
    }

    .brand-inc-cta-title {
        font-size: 23px;
    }
}

/*Contact Us page*/
.contact-inc-page {
    width: 100%;
    overflow: hidden;
    background: var(--white);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

.contact-inc-page *,
.contact-inc-page *::before,
.contact-inc-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.contact-inc-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   MAP SECTION
   ========================================================= */

.contact-inc-map-section {
    padding: 55px 0 0;
    background: var(--white);
}

.contact-inc-map-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 2px;

    background: #e9eef3;
    box-shadow: var(--shadow);
}

.contact-inc-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}


/* =========================================================
   CONTACT SECTION
   ========================================================= */

.contact-inc-section {
    padding: 45px 0 85px;
    background: var(--white);
}

.contact-inc-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: start;
}


/* =========================================================
   COMMON HEADINGS
   ========================================================= */

.contact-inc-eyebrow {
    display: inline-block;
    margin-bottom: 12px;

    color: var(--accent);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-inc-title {
    margin: 0 0 25px;

    color: var(--primary-dark);

    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
}

.contact-inc-description {
    margin: 0 0 30px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-inc-form-wrapper {
    width: 100%;
}

.contact-inc-form-title {
    margin: 0 0 28px;

    color: var(--primary-dark);

    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.contact-inc-form {
    width: 100%;
}


/* FORM ROW */

.contact-inc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;

    margin-bottom: 20px;
}


/* FIELD */

.contact-inc-field {
    width: 100%;
}

.contact-inc-field-full {
    grid-column: 1 / -1;
}


/* LABEL */

.contact-inc-label {
    display: block;
    margin-bottom: 8px;

    color: var(--text);

    font-size: 13px;
    font-weight: 700;
}

.contact-inc-required {
    color: #d64545;
}


/* INPUT */

.contact-inc-input,
.contact-inc-textarea {
    display: block;

    width: 100%;

    padding: 14px 15px;

    border: 1px solid var(--border);
    border-radius: 5px;

    background: var(--white);
    color: var(--text);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;
}

.contact-inc-input {
    height: 48px;
}

.contact-inc-textarea {
    min-height: 145px;
    resize: vertical;
    line-height: 1.6;
}


/* FOCUS */

.contact-inc-input:focus,
.contact-inc-textarea:focus {
    border-color: var(--accent);

    background: var(--white);

    box-shadow: 0 0 0 3px rgba(31,106,165,.08);
}


/* PLACEHOLDER */

.contact-inc-input::placeholder,
.contact-inc-textarea::placeholder {
    color: #9ca3af;
}


/* SUBMIT */

.contact-inc-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 110px;
    height: 48px;

    padding: 0 24px;

    border: 1px solid var(--primary);
    border-radius: 5px;

    background: var(--primary);
    color: var(--white);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.contact-inc-submit:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.contact-inc-info {
    padding-top: 0;
}

.contact-inc-info-title {
    margin: 0 0 25px;

    color: var(--primary-dark);

    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
}

.contact-inc-info-description {
    margin: 0 0 28px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   CONTACT ITEMS
   ========================================================= */

.contact-inc-details {
    display: flex;
    flex-direction: column;
    gap: 18px;

    margin-bottom: 30px;
}

.contact-inc-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-inc-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 44px;
    height: 44px;

    border: 1px solid var(--border);
    border-radius: 7px;

    background: var(--white);
    color: var(--accent);

    font-size: 18px;

    box-shadow: 0 3px 10px rgba(15,23,42,.04);
}

.contact-inc-item-content {
    padding-top: 2px;
}

.contact-inc-item-title {
    display: block;

    margin-bottom: 4px;

    color: var(--primary-dark);

    font-size: 13px;
    font-weight: 700;
}

.contact-inc-item-text {
    display: block;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;
}

.contact-inc-item-text a {
    color: var(--muted);
    text-decoration: none;
}

.contact-inc-item-text a:hover {
    color: var(--accent);
}


/* =========================================================
   SOCIAL
   ========================================================= */

.contact-inc-social {
    padding-top: 5px;
}

.contact-inc-social-heading {
    position: relative;

    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: var(--text);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
}

.contact-inc-social-heading::before {
    content: "";

    display: block;

    width: 3px;
    height: 20px;

    background: var(--accent);
}

.contact-inc-social-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-inc-social-link {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--white);
    color: var(--muted);

    font-size: 14px;

    text-decoration: none;

    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.contact-inc-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);

    transform: translateY(-3px);
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .contact-inc-container {
        width: min(100% - 40px, 900px);
    }

    .contact-inc-map-wrapper,
    .contact-inc-map-wrapper iframe {
        min-height: 360px;
        height: 360px;
    }

    .contact-inc-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-inc-form-wrapper {
        max-width: 750px;
    }

    .contact-inc-info {
        max-width: 750px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .contact-inc-container {
        width: calc(100% - 28px);
    }


    /* MAP */

    .contact-inc-map-section {
        padding: 30px 0 0;
    }

    .contact-inc-map-wrapper {
        height: 300px;
        min-height: 300px;

        border-radius: 8px;
    }

    .contact-inc-map-wrapper iframe {
        height: 300px;
        min-height: 300px;
    }


    /* SECTION */

    .contact-inc-section {
        padding: 45px 0 60px;
    }

    .contact-inc-grid {
        gap: 50px;
    }


    /* HEADINGS */

    .contact-inc-title,
    .contact-inc-info-title {
        font-size: 28px;
    }

    .contact-inc-description,
    .contact-inc-info-description {
        font-size: 13px;
        line-height: 1.75;
    }


    /* FORM */

    .contact-inc-form-title {
        font-size: 22px;
        margin-bottom: 23px;
    }

    .contact-inc-form-row {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 18px;
    }

    .contact-inc-field-full {
        grid-column: auto;
    }

    .contact-inc-input {
        height: 47px;
    }

    .contact-inc-textarea {
        min-height: 140px;
    }

    .contact-inc-submit {
        width: 100%;
        height: 48px;
    }


    /* CONTACT INFO */

    .contact-inc-details {
        gap: 17px;
    }

    .contact-inc-item-icon {
        width: 42px;
        height: 42px;
    }

    .contact-inc-item-text {
        font-size: 12px;
    }


    /* SOCIAL */

    .contact-inc-social-list {
        gap: 8px;
    }

    .contact-inc-social-link {
        width: 40px;
        height: 40px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .contact-inc-map-section {
        padding-top: 22px;
    }

    .contact-inc-map-wrapper,
    .contact-inc-map-wrapper iframe {
        height: 270px;
        min-height: 270px;
    }

    .contact-inc-title,
    .contact-inc-info-title {
        font-size: 25px;
    }

    .contact-inc-form-title {
        font-size: 21px;
    }

    .contact-inc-item {
        gap: 11px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-inc-submit,
    .contact-inc-social-link,
    .contact-inc-input,
    .contact-inc-textarea {
        transition: none;
    }

}


.privacy-inc-page {
    width: 100%;
    overflow: hidden;
    background: var(--white);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

.privacy-inc-page *,
.privacy-inc-page *::before,
.privacy-inc-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.privacy-inc-container {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.privacy-inc-hero {
    padding: 65px 0 45px;
    background:
        linear-gradient(
            135deg,
            #f5f7fa 0%,
            #ffffff 70%
        );
    border-bottom: 1px solid var(--border);
}

.privacy-inc-hero-inner {
    max-width: 900px;
}

.privacy-inc-eyebrow {
    display: inline-block;
    margin-bottom: 13px;

    color: var(--accent);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.privacy-inc-title {
    margin: 0 0 14px;

    color: var(--primary-dark);

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.privacy-inc-intro {
    max-width: 850px;
    margin: 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   LAST UPDATED
   ========================================================= */

.privacy-inc-updated {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 20px;
    padding: 8px 12px;

    border: 1px solid var(--border);
    border-radius: 6px;

    background: var(--white);

    color: var(--muted);

    font-size: 12px;
}

.privacy-inc-updated strong {
    color: var(--text);
}


/* =========================================================
   POLICY CONTENT
   ========================================================= */

.privacy-inc-content {
    padding: 60px 0 90px;
    background: var(--white);
}


/* =========================================================
   POLICY ARTICLE
   ========================================================= */

.privacy-inc-article {
    max-width: 100%;
}


/* =========================================================
   POLICY SECTION
   ========================================================= */

.privacy-inc-section {
    margin-bottom: 38px;
}

.privacy-inc-section:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.privacy-inc-heading {
    display: flex;
    align-items: center;
    gap: 13px;

    margin: 0 0 15px;

    color: var(--primary-dark);

    font-size: 20px;
    line-height: 1.4;
    font-weight: 800;
}

.privacy-inc-heading::before {
    content: "";

    display: block;

    flex-shrink: 0;

    width: 4px;
    height: 24px;

    border-radius: 4px;

    background: var(--accent);
}


/* =========================================================
   BODY TEXT
   ========================================================= */

.privacy-inc-text {
    margin: 0 0 15px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.85;
}

.privacy-inc-text:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LIST
   ========================================================= */

.privacy-inc-list {
    margin: 15px 0 18px;
    padding-left: 22px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.85;
}

.privacy-inc-list li {
    margin-bottom: 7px;
    padding-left: 4px;
}

.privacy-inc-list li:last-child {
    margin-bottom: 0;
}

.privacy-inc-list strong {
    color: var(--text);
}


/* =========================================================
   INLINE STRONG
   ========================================================= */

.privacy-inc-content strong {
    color: var(--text);
}


/* =========================================================
   CONTACT BOX
   ========================================================= */

.privacy-inc-contact-box {
    margin-top: 22px;
    padding: 28px 30px;

    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 10px;

    background: var(--section);

    box-shadow: 0 5px 18px rgba(15,23,42,.04);
}

.privacy-inc-contact-title {
    margin: 0 0 15px;

    color: var(--primary-dark);

    font-size: 17px;
    font-weight: 800;
}

.privacy-inc-contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
}

.privacy-inc-contact-item {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.65;
}

.privacy-inc-contact-item strong {
    display: block;
    margin-bottom: 2px;

    color: var(--text);

    font-size: 12px;
}


/* =========================================================
   LINK
   ========================================================= */

.privacy-inc-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.privacy-inc-link:hover {
    color: var(--primary);
    text-decoration: underline;
}


/* =========================================================
   WORDPRESS SUGGESTED TEXT
   ========================================================= */

.privacy-inc-wp-section {
    margin-top: 55px;
    padding-top: 45px;

    border-top: 1px solid var(--border);
}

.privacy-inc-wp-heading {
    margin: 0 0 28px;

    color: var(--primary-dark);

    font-size: 25px;
    line-height: 1.3;
    font-weight: 800;
}

.privacy-inc-wp-block {
    margin-bottom: 30px;
}

.privacy-inc-wp-block:last-child {
    margin-bottom: 0;
}

.privacy-inc-wp-title {
    margin: 0 0 12px;

    color: var(--primary-dark);

    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.privacy-inc-suggested {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--accent);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.privacy-inc-wp-text {
    margin: 0 0 15px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}

.privacy-inc-wp-text:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HIGHLIGHT BOX
   ========================================================= */

.privacy-inc-note {
    margin: 25px 0;
    padding: 18px 20px;

    border: 1px solid rgba(31,106,165,.15);
    border-radius: 8px;

    background: #f7fafc;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.75;
}

.privacy-inc-note strong {
    color: var(--primary-dark);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .privacy-inc-container {
        width: calc(100% - 28px);
    }


    /* HERO */

    .privacy-inc-hero {
        padding: 45px 0 35px;
    }

    .privacy-inc-title {
        font-size: 31px;
        letter-spacing: -.5px;
    }

    .privacy-inc-intro {
        font-size: 13px;
        line-height: 1.75;
    }

    .privacy-inc-updated {
        font-size: 11px;
    }


    /* CONTENT */

    .privacy-inc-content {
        padding: 45px 0 60px;
    }

    .privacy-inc-section {
        margin-bottom: 32px;
    }


    /* HEADINGS */

    .privacy-inc-heading {
        gap: 10px;

        font-size: 18px;
    }

    .privacy-inc-heading::before {
        width: 3px;
        height: 21px;
    }


    /* TEXT */

    .privacy-inc-text {
        font-size: 13px;
        line-height: 1.8;
    }

    .privacy-inc-list {
        font-size: 13px;
        line-height: 1.8;
        padding-left: 20px;
    }


    /* CONTACT */

    .privacy-inc-contact-box {
        padding: 22px 20px;
    }

    .privacy-inc-contact-details {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    /* WORDPRESS */

    .privacy-inc-wp-section {
        margin-top: 45px;
        padding-top: 35px;
    }

    .privacy-inc-wp-heading {
        font-size: 22px;
    }

    .privacy-inc-wp-title {
        font-size: 17px;
    }

    .privacy-inc-wp-text {
        font-size: 12.5px;
        line-height: 1.8;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .privacy-inc-title {
        font-size: 28px;
    }

    .privacy-inc-heading {
        font-size: 17px;
    }

    .privacy-inc-text,
    .privacy-inc-list {
        font-size: 12.5px;
    }

    .privacy-inc-contact-box {
        padding: 20px 17px;
    }

}




.terms-inc-page {
    width: 100%;
    overflow: hidden;
    background: var(--white);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

.terms-inc-page *,
.terms-inc-page *::before,
.terms-inc-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.terms-inc-container {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.terms-inc-hero {
    padding: 65px 0 45px;

    background:
        linear-gradient(
            135deg,
            #f5f7fa 0%,
            #ffffff 70%
        );

    border-bottom: 1px solid var(--border);
}

.terms-inc-hero-inner {
    max-width: 900px;
}

.terms-inc-eyebrow {
    display: inline-block;

    margin-bottom: 13px;

    color: var(--accent);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.terms-inc-title {
    margin: 0 0 14px;

    color: var(--primary-dark);

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.terms-inc-intro {
    max-width: 900px;

    margin: 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   LAST UPDATED
   ========================================================= */

.terms-inc-updated {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 20px;
    padding: 8px 12px;

    border: 1px solid var(--border);
    border-radius: 6px;

    background: var(--white);

    color: var(--muted);

    font-size: 12px;
}

.terms-inc-updated strong {
    color: var(--text);
}


/* =========================================================
   CONTENT
   ========================================================= */

.terms-inc-content {
    padding: 60px 0 90px;

    background: var(--white);
}


/* =========================================================
   ARTICLE
   ========================================================= */

.terms-inc-article {
    width: 100%;
}


/* =========================================================
   SECTION
   ========================================================= */

.terms-inc-section {
    margin-bottom: 38px;
}

.terms-inc-section:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.terms-inc-heading {
    display: flex;
    align-items: center;
    gap: 13px;

    margin: 0 0 15px;

    color: var(--primary-dark);

    font-size: 20px;
    line-height: 1.4;
    font-weight: 800;
}

.terms-inc-heading::before {
    content: "";

    display: block;

    flex-shrink: 0;

    width: 4px;
    height: 24px;

    border-radius: 4px;

    background: var(--accent);
}


/* =========================================================
   BODY TEXT
   ========================================================= */

.terms-inc-text {
    margin: 0 0 15px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.85;
}

.terms-inc-text:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LIST
   ========================================================= */

.terms-inc-list {
    margin: 15px 0 18px;

    padding-left: 22px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.85;
}

.terms-inc-list li {
    margin-bottom: 7px;
    padding-left: 4px;
}

.terms-inc-list li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   STRONG TEXT
   ========================================================= */

.terms-inc-page strong {
    color: var(--text);
}


/* =========================================================
   CONTACT BOX
   ========================================================= */

.terms-inc-contact-box {
    margin-top: 22px;

    padding: 28px 30px;

    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);

    border-radius: 10px;

    background: var(--section);

    box-shadow: 0 5px 18px rgba(15,23,42,.04);
}

.terms-inc-contact-title {
    margin: 0 0 18px;

    color: var(--primary-dark);

    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;
}

.terms-inc-contact-details {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px 30px;
}

.terms-inc-contact-item {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;
}

.terms-inc-contact-item strong {
    display: block;

    margin-bottom: 2px;

    color: var(--text);

    font-size: 12px;
}


/* =========================================================
   CONTACT LINKS
   ========================================================= */

.terms-inc-link {
    color: var(--accent);

    font-weight: 600;

    text-decoration: none;
}

.terms-inc-link:hover {
    color: var(--primary);

    text-decoration: underline;
}


/* =========================================================
   IMPORTANT NOTE
   ========================================================= */

.terms-inc-note {
    margin: 25px 0;

    padding: 18px 20px;

    border: 1px solid rgba(31,106,165,.15);

    border-radius: 8px;

    background: #f7fafc;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.75;
}

.terms-inc-note strong {
    color: var(--primary-dark);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .terms-inc-container {
        width: calc(100% - 28px);
    }


    /* HERO */

    .terms-inc-hero {
        padding: 45px 0 35px;
    }

    .terms-inc-title {
        font-size: 31px;
        letter-spacing: -.5px;
    }

    .terms-inc-intro {
        font-size: 13px;
        line-height: 1.75;
    }

    .terms-inc-updated {
        font-size: 11px;
    }


    /* CONTENT */

    .terms-inc-content {
        padding: 45px 0 60px;
    }

    .terms-inc-section {
        margin-bottom: 32px;
    }


    /* HEADINGS */

    .terms-inc-heading {
        gap: 10px;

        font-size: 18px;
    }

    .terms-inc-heading::before {
        width: 3px;
        height: 21px;
    }


    /* TEXT */

    .terms-inc-text {
        font-size: 13px;
        line-height: 1.8;
    }

    .terms-inc-list {
        padding-left: 20px;

        font-size: 13px;
        line-height: 1.8;
    }


    /* CONTACT */

    .terms-inc-contact-box {
        padding: 22px 20px;
    }

    .terms-inc-contact-details {
        grid-template-columns: 1fr;

        gap: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .terms-inc-title {
        font-size: 28px;
    }

    .terms-inc-heading {
        font-size: 17px;
    }

    .terms-inc-text,
    .terms-inc-list {
        font-size: 12.5px;
    }

    .terms-inc-contact-box {
        padding: 20px 17px;
    }

}



.shipping-inc-page {
    width: 100%;
    overflow: hidden;
    background: var(--white);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

.shipping-inc-page *,
.shipping-inc-page *::before,
.shipping-inc-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.shipping-inc-container {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.shipping-inc-hero {
    padding: 65px 0 45px;

    background:
        linear-gradient(
            135deg,
            #f5f7fa 0%,
            #ffffff 70%
        );

    border-bottom: 1px solid var(--border);
}

.shipping-inc-hero-inner {
    max-width: 900px;
}

.shipping-inc-eyebrow {
    display: inline-block;

    margin-bottom: 13px;

    color: var(--accent);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.shipping-inc-title {
    margin: 0 0 14px;

    color: var(--primary-dark);

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.shipping-inc-intro {
    max-width: 900px;

    margin: 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   LAST UPDATED
   ========================================================= */

.shipping-inc-updated {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 20px;
    padding: 8px 12px;

    border: 1px solid var(--border);
    border-radius: 6px;

    background: var(--white);

    color: var(--muted);

    font-size: 12px;
}

.shipping-inc-updated strong {
    color: var(--text);
}


/* =========================================================
   CONTENT
   ========================================================= */

.shipping-inc-content {
    padding: 60px 0 90px;

    background: var(--white);
}


/* =========================================================
   ARTICLE
   ========================================================= */

.shipping-inc-article {
    width: 100%;
}


/* =========================================================
   POLICY SECTION
   ========================================================= */

.shipping-inc-section {
    position: relative;

    margin-bottom: 0;
    padding: 0 0 35px;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.shipping-inc-section:not(:last-child)::after {
    content: "";

    display: block;

    width: 44px;
    height: 1px;

    margin: 0 auto;

    background: #bfc6ce;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.shipping-inc-heading {
    display: flex;
    align-items: center;
    gap: 13px;

    margin: 0 0 15px;

    color: var(--primary-dark);

    font-size: 19px;
    line-height: 1.4;
    font-weight: 800;
}

.shipping-inc-heading::before {
    content: "";

    display: block;

    flex-shrink: 0;

    width: 4px;
    height: 23px;

    border-radius: 4px;

    background: var(--accent);
}


/* =========================================================
   BODY TEXT
   ========================================================= */

.shipping-inc-text {
    margin: 0 0 13px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.85;
}

.shipping-inc-text:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LIST
   ========================================================= */

.shipping-inc-list {
    margin: 14px 0 15px;

    padding-left: 22px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.85;
}

.shipping-inc-list li {
    margin-bottom: 7px;
    padding-left: 4px;
}

.shipping-inc-list li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   STRONG
   ========================================================= */

.shipping-inc-page strong {
    color: var(--text);
}


/* =========================================================
   HIGHLIGHT
   ========================================================= */

.shipping-inc-highlight {
    margin: 18px 0;

    padding: 18px 20px;

    border: 1px solid rgba(31,106,165,.15);
    border-left: 4px solid var(--accent);

    border-radius: 8px;

    background: #f7fafc;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.75;
}

.shipping-inc-highlight strong {
    color: var(--primary-dark);
}


/* =========================================================
   CONTACT BOX
   ========================================================= */

.shipping-inc-contact-box {
    margin-top: 5px;

    padding: 28px 30px;

    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);

    border-radius: 10px;

    background: var(--section);

    box-shadow: 0 5px 18px rgba(15,23,42,.04);
}

.shipping-inc-contact-title {
    margin: 0 0 15px;

    color: var(--primary-dark);

    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;
}

.shipping-inc-contact-text {
    margin: 0 0 15px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.75;
}

.shipping-inc-contact-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.shipping-inc-contact-link:hover {
    color: var(--primary);
    text-decoration: underline;
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.shipping-inc-contact-details {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px 30px;
}

.shipping-inc-contact-item {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;
}

.shipping-inc-contact-item strong {
    display: block;

    margin-bottom: 3px;

    color: var(--text);

    font-size: 12px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .shipping-inc-container {
        width: calc(100% - 28px);
    }


    /* HERO */

    .shipping-inc-hero {
        padding: 45px 0 35px;
    }

    .shipping-inc-title {
        font-size: 31px;
        letter-spacing: -.5px;
    }

    .shipping-inc-intro {
        font-size: 13px;
        line-height: 1.75;
    }

    .shipping-inc-updated {
        font-size: 11px;
    }


    /* CONTENT */

    .shipping-inc-content {
        padding: 45px 0 60px;
    }

    .shipping-inc-section {
        padding-bottom: 30px;
    }


    /* HEADING */

    .shipping-inc-heading {
        gap: 10px;

        font-size: 17px;
    }

    .shipping-inc-heading::before {
        width: 3px;
        height: 21px;
    }


    /* TEXT */

    .shipping-inc-text {
        font-size: 13px;
        line-height: 1.8;
    }

    .shipping-inc-list {
        padding-left: 20px;

        font-size: 13px;
        line-height: 1.8;
    }


    /* HIGHLIGHT */

    .shipping-inc-highlight {
        padding: 16px 17px;

        font-size: 12.5px;
    }


    /* CONTACT */

    .shipping-inc-contact-box {
        padding: 22px 20px;
    }

    .shipping-inc-contact-details {
        grid-template-columns: 1fr;
        gap: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .shipping-inc-title {
        font-size: 28px;
    }

    .shipping-inc-heading {
        font-size: 16px;
    }

    .shipping-inc-text,
    .shipping-inc-list {
        font-size: 12.5px;
    }

    .shipping-inc-contact-box {
        padding: 20px 17px;
    }

}




.refund-inc-page {
    width: 100%;
    overflow: hidden;
    background: var(--white);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

.refund-inc-page *,
.refund-inc-page *::before,
.refund-inc-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.refund-inc-container {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.refund-inc-hero {
    padding: 65px 0 45px;

    background:
        linear-gradient(
            135deg,
            #f5f7fa 0%,
            #ffffff 70%
        );

    border-bottom: 1px solid var(--border);
}

.refund-inc-hero-inner {
    max-width: 900px;
}

.refund-inc-eyebrow {
    display: inline-block;

    margin-bottom: 13px;

    color: var(--accent);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.refund-inc-title {
    margin: 0 0 14px;

    color: var(--primary-dark);

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.refund-inc-intro {
    max-width: 900px;

    margin: 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   LAST UPDATED
   ========================================================= */

.refund-inc-updated {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 20px;
    padding: 8px 12px;

    border: 1px solid var(--border);
    border-radius: 6px;

    background: var(--white);

    color: var(--muted);

    font-size: 12px;
}

.refund-inc-updated strong {
    color: var(--text);
}


/* =========================================================
   CONTENT
   ========================================================= */

.refund-inc-content {
    padding: 60px 0 90px;

    background: var(--white);
}


/* =========================================================
   ARTICLE
   ========================================================= */

.refund-inc-article {
    width: 100%;
}


/* =========================================================
   SECTION
   ========================================================= */

.refund-inc-section {
    position: relative;

    padding-bottom: 38px;
    margin-bottom: 38px;
}

.refund-inc-section:not(:last-child)::after {
    content: "";

    display: block;

    width: 54px;
    height: 2px;

    position: absolute;
    bottom: 0;
    left: 50%;

    transform: translateX(-50%);

    background: #c7ccd2;
}


/* =========================================================
   HEADINGS
   ========================================================= */

.refund-inc-heading {
    display: flex;
    align-items: center;
    gap: 13px;

    margin: 0 0 16px;

    color: var(--primary-dark);

    font-size: 20px;
    line-height: 1.4;
    font-weight: 800;
}

.refund-inc-heading::before {
    content: "";

    display: block;

    flex-shrink: 0;

    width: 4px;
    height: 24px;

    border-radius: 4px;

    background: var(--accent);
}


/* =========================================================
   BODY TEXT
   ========================================================= */

.refund-inc-text {
    margin: 0 0 15px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.85;
}

.refund-inc-text:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LIST
   ========================================================= */

.refund-inc-list {
    margin: 15px 0 18px;

    padding-left: 22px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.85;
}

.refund-inc-list li {
    margin-bottom: 7px;
    padding-left: 4px;
}

.refund-inc-list li:last-child {
    margin-bottom: 0;
}

.refund-inc-list strong {
    color: var(--text);
}


/* =========================================================
   STRONG
   ========================================================= */

.refund-inc-page strong {
    color: var(--text);
}


/* =========================================================
   IMPORTANT INFORMATION BOX
   ========================================================= */

.refund-inc-highlight {
    margin: 22px 0 5px;

    padding: 20px 22px;

    border: 1px solid rgba(31,106,165,.15);
    border-left: 4px solid var(--accent);

    border-radius: 9px;

    background: var(--section);

    color: var(--muted);

    font-size: 13px;
    line-height: 1.75;
}

.refund-inc-highlight strong {
    color: var(--primary-dark);
}


/* =========================================================
   RETURN ADDRESS BOX
   ========================================================= */

.refund-inc-address-box {
    margin-top: 22px;

    padding: 25px 28px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: #fafbfc;

    box-shadow: 0 5px 18px rgba(15,23,42,.04);
}

.refund-inc-address-title {
    margin: 0 0 12px;

    color: var(--primary-dark);

    font-size: 17px;
    font-weight: 800;
}

.refund-inc-address {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT BOX
   ========================================================= */

.refund-inc-contact-box {
    margin-top: 22px;

    padding: 28px 30px;

    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);

    border-radius: 10px;

    background: var(--section);

    box-shadow: 0 5px 18px rgba(15,23,42,.04);
}

.refund-inc-contact-title {
    margin: 0 0 15px;

    color: var(--primary-dark);

    font-size: 18px;
    font-weight: 800;
}

.refund-inc-contact-details {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px 30px;
}

.refund-inc-contact-item {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;
}

.refund-inc-contact-item strong {
    display: block;

    margin-bottom: 3px;

    color: var(--text);

    font-size: 12px;
}


/* =========================================================
   LINKS
   ========================================================= */

.refund-inc-link {
    color: var(--accent);

    font-weight: 600;

    text-decoration: underline;

    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.refund-inc-link:hover {
    color: var(--primary-dark);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .refund-inc-container {
        width: calc(100% - 28px);
    }


    /* HERO */

    .refund-inc-hero {
        padding: 45px 0 35px;
    }

    .refund-inc-title {
        font-size: 31px;
        letter-spacing: -.5px;
    }

    .refund-inc-intro {
        font-size: 13px;
        line-height: 1.75;
    }

    .refund-inc-updated {
        font-size: 11px;
    }


    /* CONTENT */

    .refund-inc-content {
        padding: 45px 0 60px;
    }

    .refund-inc-section {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }


    /* HEADING */

    .refund-inc-heading {
        gap: 10px;

        font-size: 18px;
    }

    .refund-inc-heading::before {
        width: 3px;
        height: 21px;
    }


    /* TEXT */

    .refund-inc-text {
        font-size: 13px;
        line-height: 1.8;
    }

    .refund-inc-list {
        padding-left: 20px;

        font-size: 13px;
        line-height: 1.8;
    }


    /* HIGHLIGHT */

    .refund-inc-highlight {
        padding: 17px 18px;

        font-size: 12.5px;
    }


    /* ADDRESS */

    .refund-inc-address-box {
        padding: 21px 20px;
    }


    /* CONTACT */

    .refund-inc-contact-box {
        padding: 22px 20px;
    }

    .refund-inc-contact-details {
        grid-template-columns: 1fr;
        gap: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .refund-inc-title {
        font-size: 28px;
    }

    .refund-inc-heading {
        font-size: 17px;
    }

    .refund-inc-text,
    .refund-inc-list {
        font-size: 12.5px;
    }

    .refund-inc-contact-box,
    .refund-inc-address-box {
        padding: 19px 17px;
    }

}




#contact-status {
    display: none;
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}

#contact-status.success {
    display: block;
    background: #ecfdf3;
    border: 1px solid #a7f3d0;
    color: #166534;
}

#contact-status.error {
    display: block;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}