.section-head{text-align:center;max-width:820px;margin:0 auto 38px}
.section-head h2{font-size:clamp(32px,4vw,48px);line-height:1.05;margin:12px 0 14px;letter-spacing:-.035em}
.section-head p{font-size:18px;color:var(--muted);margin:0}

.feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.feature-grid article{background:#fff;border:1px solid var(--line);border-radius:20px;padding:24px;box-shadow:0 8px 28px rgba(17,24,33,.06)}
.feature-grid span{font-size:32px}
.feature-grid h3{margin:14px 0 8px;font-size:18px}
.feature-grid p{margin:0;color:var(--muted)}

.reveal{opacity:0;transform:translateY(16px);animation:reveal .7s ease forwards}
.reveal:nth-child(2){animation-delay:.08s}
.reveal:nth-child(3){animation-delay:.16s}
@keyframes reveal{to{opacity:1;transform:none}}

@media(max-width:1050px){
  .feature-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
  .feature-grid{grid-template-columns:1fr}
}
:root {
    --orange: #ff5a11;
    --orange-2: #ff9700;
    --orange-3: #ff3d00;
    --dark: #121820;
    --dark-2: #1e2933;
    --muted: #64717d;
    --line: #e7eaee;
    --soft: #f6f8fa;
    --white: #ffffff;
    --green: #10a44a;
    --blue: #2478ff;
    --purple: #7d43d5;
    --shadow: 0 18px 60px rgba(18, 24, 32, .12);
    --radius: 22px;
    --container: 1180px;
}

@media (max-width: 640px) {
    body {
        position: relative;
        overflow-x: hidden;
    }

    body::before,
    body::after {
        content: "";
        position: fixed;
        border-radius: 50%;
        filter: blur(50px);
        z-index: -1;
        pointer-events: none;
        max-width: 100vw;
    }

    body::before {
        width: 260px;
        height: 260px;
        top: -60px;
        right: -60px;
        background: radial-gradient(circle, rgba(255, 90, 17, .5), rgba(100, 113, 125, .12) 70%, transparent);
        animation: orbFloat1 14s ease-in-out infinite;
    }

    body::after {
        width: 220px;
        height: 220px;
        bottom: 10%;
        left: -70px;
        background: radial-gradient(circle, rgba(100, 113, 125, .4), rgba(255, 90, 17, .1) 70%, transparent);
        animation: orbFloat2 18s ease-in-out infinite;
    }

    .hero::after {
        content: "";
        position: fixed;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        top: 45%;
        right: -50px;
        background: radial-gradient(circle, rgba(255, 61, 0, .35), rgba(30, 41, 51, .15) 60%, transparent);
        filter: blur(45px);
        z-index: -1;
        pointer-events: none;
        animation: orbFloat3 16s ease-in-out infinite;
    }

    .site-header::after {
        content: "";
        position: fixed;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        top: 8%;
        left: -80px;
        background: radial-gradient(circle, rgba(100, 113, 125, .38), rgba(255, 90, 17, .12) 65%, transparent);
        filter: blur(48px);
        z-index: -1;
        pointer-events: none;
        animation: orbFloat4 15s ease-in-out infinite;
    }

    .footer::before {
        content: "";
        position: fixed;
        width: 230px;
        height: 230px;
        border-radius: 50%;
        bottom: -70px;
        right: -60px;
        background: radial-gradient(circle, rgba(255, 90, 17, .4), rgba(100, 113, 125, .15) 70%, transparent);
        filter: blur(50px);
        z-index: -1;
        pointer-events: none;
        animation: orbFloat5 17s ease-in-out infinite;
    }

    @keyframes orbFloat1 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(-30px, 40px) scale(1.15); }
    }

    @keyframes orbFloat2 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(30px, -35px) scale(1.1); }
    }

    @keyframes orbFloat3 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(-25px, -30px) scale(1.2); }
    }

    @keyframes orbFloat4 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(25px, 30px) scale(1.12); }
    }

    @keyframes orbFloat5 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(-20px, -25px) scale(1.18); }
    }
}

* {
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%
}

body {
    margin: 0;
    font-family: 'Inter', 'Noto Sans Tamil', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--dark);
    background: url('../images/background_img.png?v=3') center top / cover no-repeat scroll;
    line-height: 1.55;
    overflow-x: hidden;
    width: 100%;
    position: relative
}

@media (min-width: 901px) {
    body {
        background-attachment: fixed;
    }
}


@media (max-width: 640px) {
    .hero::before {
        content: "";
        display: block;
        height: 140px;
        margin: -1px -14px 8px;
        background:
            linear-gradient(180deg, rgba(18,24,32,.15), rgba(255,90,17,.55)),
            url('../images/Construction.webp?v=3') center/cover;
    }
}



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

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

button, input, select, textarea {
    font: inherit
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto
}

.section {
    padding: 82px 0
}

.section-sm {
    padding: 48px 0
}

.center {
    text-align: center
}

.muted {
    color: var(--muted)
}

.orange {
    color: var(--orange)
}


.powered-by {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em
}

.powered-by img {
    height: 40px;
    width: auto;
    object-fit: contain
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    border: 1px solid rgba(255, 90, 17, .28);
    background: rgba(255, 90, 17, .08);
    border-radius: 999px;
    color: var(--orange);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 12px;
    padding: 14px 20px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease;
    min-height: 50px;
    white-space: normal;
    text-align: center;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.3
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 90, 17, .25)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(255, 90, 17, .32)
}

.btn-outline {
    border: 1px solid #cbd2d9;
    background: #fff;
    color: var(--dark)
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px)
}

.btn-dark {
    background: var(--dark);
    color: #fff
}

.btn-dark:hover {
    background: #000;
    transform: translateY(-2px)
}

.btn-login {
    background: #fff;
    color: var(--dark);
    border: 1.5px solid #cbd2d9;
    white-space: nowrap;
    padding: 14px 22px
}

.btn-login:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px)
}

.btn-block {
    width: 100%
}

.topbar {
    height: 34px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    color: #4b5563
}

.topbar .container {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 8px
}

.lang-btn {
    background: transparent;
    border: 0;
    padding: 2px 4px;
    cursor: pointer;
    color: #4b5563;
    font-weight: 700
}

.lang-btn.active {
    color: var(--orange)
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.nav {
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px
}

.brand-logo {
    height: 84px;
    width: auto;
    object-fit: contain
}

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

.nav-links a {
    font-weight: 750;
    font-size: 13px;
    padding: 12px 10px;
    border-radius: 10px;
    color: #323b45;
    white-space: nowrap
}

.nav-links a:hover, .nav-links a.active {
    color: var(--orange);
    background: rgba(255, 90, 17, .08)
}

.menu-btn {
    display: none;
    background: #fff;
    border: 1px solid var(--line);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 24px;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--line);
    padding: 10px 0 18px
}

.mobile-menu a {
    display: block;
    padding: 13px 20px;
    font-weight: 800
}

.mobile-menu.open {
    display: block
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line)
}

.nav-bar {
    height: 98px;
    display: flex;
    align-items: center;
    gap: 20px
}

.brand img {
    height: 60px;
    width: auto;
    object-fit: contain
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto
}

.main-nav a {
    font-weight: 750;
    font-size: 13px;
    padding: 12px 10px;
    border-radius: 10px;
    color: #323b45;
    white-space: nowrap
}

.main-nav a:hover, .main-nav a.active {
    color: var(--orange);
    background: rgba(255, 90, 17, .08)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700
}

.lang-btn {
    background: transparent;
    border: 0;
    padding: 2px 4px;
    cursor: pointer;
    color: #4b5563;
    font-weight: 700
}

.lang-btn.active {
    color: var(--orange)
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px
}

.hero {
    position: relative;
    overflow: hidden;
}


.section-soft {
    background: rgba(255,255,255,.55)
}



.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
    min-height: 680px;
    padding: 28px 0
}

.hero-copy {
    display: flex;
    flex-direction: column
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    border: 1px solid rgba(255, 90, 17, .35);
    background: #fff4ee;
    color: var(--orange);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .03em
}

.hero h1 {
    font-size: clamp(39px, 5vw, 68px);
    line-height: 1.02;
    margin: 18px 0 18px;
    letter-spacing: -.05em;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto
}

.lead {
    font-size: 20px;
    color: #394558;
    max-width: 650px;
    overflow-wrap: break-word;
    word-break: break-word
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 28px 0
}

.btn-large {
    padding: 16px 26px
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px
}

.hero-points div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(18, 24, 32, .06)
}

.hero-points strong {
    display: block
}

.hero-points span {
    display: block;
    font-size: 13px;
    color: var(--muted)
}

.construction-scene {
    min-height: 560px;
    border-radius: 32px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .1)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=80') center/cover;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden
}

.construction-scene:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .45), rgba(255, 255, 255, .05))
}

.phone-mockup {
    position: absolute;
    z-index: 2;
    left: 8%;
    top: 40px;
    width: min(310px, 55%);
    height: 500px;
    border: 12px solid #161b22;
    border-radius: 44px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    overflow: hidden
}

.phone-top {
    width: 110px;
    height: 22px;
    background: #161b22;
    border-radius: 0 0 16px 16px;
    margin: auto
}

.phone-screen {
    padding: 18px
}

.app-title {
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 14px
}

.orange-card {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden
}

.orange-card span {
    display: block;
    font-size: 12px;
    opacity: .9
}

.orange-card strong {
    display: block;
    font-size: 24px;
    margin-top: 6px
}

.orange-card em {
    display: block;
    height: 30px;
    margin-top: 12px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    opacity: .35;
    border-radius: 99px
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.app-grid div {
    background: #f5f6f8;
    border-radius: 14px;
    padding: 10px;
    font-size: 12px
}

.app-grid b {
    display: block
}

.app-grid span {
    color: var(--muted)
}

.activity-list {
    margin-top: 14px
}

.activity-list strong {
    font-size: 14px
}

.activity-list p {
    margin: 8px 0;
    padding: 9px;
    border-radius: 10px;
    background: #fafafa;
    font-size: 12px;
    color: #445064
}

.trust-strip {
    margin-top: -34px;
    position: relative;
    z-index: 4
}

.trust-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.trust-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 22px
}

.trust-item:not(:last-child) {
    border-right: 1px solid var(--line)
}

.trust-item .mini-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px
}

.trust-item strong {
    display: block
}

.trust-item p {
    margin: 2px 0 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.35
}

/* --- Trade grid ("Who it's for") --- */
.trade-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px
}

.trade-grid div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px 16px;
    text-align: center;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(18, 24, 32, .06)
}

/* --- Active site status section (dark, with glow) --- */
.status-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    color: #fff
}

.status-section:before {
    content: "";
    position: absolute;
    right: -15%;
    top: -20%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 90, 17, .18);
    filter: blur(10px)
}

.status-section .section-title p {
    color: #c8d2df
}

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

.status-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    padding: 28px;
    backdrop-filter: blur(8px)
}

.status-card h3 {
    font-size: 24px;
    margin: 12px 0 8px;
    color: #fff
}

.status-card p {
    color: #d7dde6;
    margin: 0
}

.status-dot {
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 50%;
    margin-bottom: 10px
}

.status-dot.active {
    background: #22c55e
}

.status-dot.hold {
    background: #f59e0b
}

.status-dot.done {
    background: #60a5fa
}

.video-placeholder {
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 420px;
    background: #0f1720;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,.22), rgba(0,0,0,.3)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=80') center/cover
}

.play-button {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
    font-size: 34px;
    box-shadow: 0 14px 36px rgba(0,0,0,.28);
    cursor: pointer
}

.video-bars {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    height: 7px;
    background: rgba(255,255,255,.25);
    border-radius: 99px;
    display: flex;
    overflow: hidden
}

.video-bars span:first-child {
    background: var(--orange);
    width: 32%
}

.video-card {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 0;
    align-items: stretch;
    background: #151e29;
    color: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.video-copy {
    padding: 42px
}

.video-copy p {
    color: #cbd5e1
}

.text-link {
    color: #ffb073;
    font-weight: 900
}

.video-box {
    min-height: 280px;
    position: relative;
    background: linear-gradient(rgba(18, 24, 32, .2), rgba(18, 24, 32, .45)), url("data:image/svg+xml,%3Csvg width='760' height='360' viewBox='0 0 760 360' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='760' height='360' fill='%23d5c7b2'/%3E%3Cg stroke='%2347525c' stroke-width='4' opacity='.65'%3E%3Cpath d='M30 300h690M80 300V155h220v145M120 300V190M170 300V190M220 300V190M270 300V190M80 220h220M80 260h220M420 300V125h260v175M460 300V170M520 300V170M580 300V170M640 300V170M420 205h260M420 250h260M365 70v230M330 100h120M330 100l35 200M450 100l-35 200'/%3E%3C/g%3E%3Cg fill='%23ff5a11' opacity='.8'%3E%3Ccircle cx='92' cy='145' r='18'/%3E%3Ccircle cx='432' cy='115' r='18'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat
}

.play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 34px;
    box-shadow: 0 20px 50px rgba(255, 90, 17, .35);
    cursor: pointer
}

.play:after {
    content: "▶";
    margin-left: 6px
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .72));
    display: flex;
    align-items: flex-end;
    padding: 0 18px 12px;
    color: #fff;
    font-size: 13px
}

.progress {
    height: 5px;
    background: rgba(255, 255, 255, .28);
    border-radius: 10px;
    flex: 1;
    margin: 0 12px
}

.progress span {
    display: block;
    height: 100%;
    width: 43%;
    background: var(--orange);
    border-radius: 10px
}

.section-title {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center
}

.section-title h2 {
    font-size: clamp(30px, 3.6vw, 48px);
    line-height: 1.1;
    margin: 8px 0 12px;
    letter-spacing: -.03em
}

.section-title p {
    color: var(--muted);
    font-size: 17px
}

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

.feature-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(18, 24, 32, .06);
    transition: .2s
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px
}

.feature-icon svg {
    width: 24px;
    height: 24px
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 17px
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.bg-soft {
    background: rgba(255,255,255,.55)
}

.packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch
}

.price-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(18, 24, 32, .08);
    display: flex;
    flex-direction: column
}

.price-card.popular {
    border: 2px solid var(--orange);
    transform: translateY(-10px)
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    padding: 7px 14px
}

.price-card h3 {
    font-size: 27px;
    color: var(--orange);
    margin: 0;
    text-align: center
}

.site-limit {
    text-align: center;
    font-weight: 800;
    margin-bottom: 18px
}

/* --- Package card: plan-for + limit-row --- */
.plan-for {
    text-align: center;
    color: var(--muted);
    font-weight: 700;
    margin: 4px 0 18px
}

.limit-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 22px
}

.limit-row span {
    display: block;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    font-weight: 900;
    font-size: 13px
}

.price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 16px 0 20px
}

.price-row div {
    padding: 14px;
    text-align: center
}

.price-row div:first-child {
    border-right: 1px solid var(--line)
}

.price-row span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800
}

.price-row b {
    display: block;
    font-size: 20px;
    margin-top: 3px
}

.ticks {
    list-style: none;
    padding: 0;
    margin: 0 0 24px
}

.ticks li {
    margin: 10px 0;
    color: #34404b;
    font-size: 14px
}

.ticks li:before {
    content: "✓";
    font-weight: 900;
    color: var(--green);
    margin-right: 8px
}

.price-card .btn {
    margin-top: auto
}

.tax-note {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    margin-top: 16px
}

/* --- Add-ons block --- */
.addons {
    margin-top: 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 34px rgba(18, 24, 32, .06)
}

.addons h3 {
    text-align: center;
    font-size: 25px;
    margin: 0 0 18px
}

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

.addon-grid div {
    border: 1px solid var(--line);
    background: var(--soft);
    border-radius: 16px;
    padding: 16px;
    text-align: center
}

.addon-grid strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px
}

.addon-grid span {
    color: var(--orange);
    font-weight: 900
}

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

.step-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(18, 24, 32, .06)
}

.step-num {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 16px
}

.step-card h3 {
    margin: 0 0 8px
}

.step-card p {
    color: var(--muted);
    margin: 0
}

.form-section {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.form-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr 1fr
}

.form-copy, .payment-copy, .download-copy {
    padding: 34px
}

.form-copy h2, .payment-copy h2, .download-copy h2 {
    font-size: 30px;
    line-height: 1.1;
    margin: 0 0 10px
}

.signup-form {
    padding: 34px;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line)
}

.field {
    margin-bottom: 14px
}

.field label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #38424d
}

.field input, .field select, .field textarea {
    width: 100%;
    border: 1px solid #d9dee4;
    border-radius: 10px;
    padding: 12px 13px;
    background: #fff;
    outline: 0
}

.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 90, 17, .1)
}

.pay-logos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0
}

.pay-pill {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 900;
    background: #fff
}

.pay-pill.visa {
    color: #1c4b9b
}

.pay-pill.master {
    color: #e33
}

.pay-pill.ez {
    color: #e59a00
}

.pay-pill.payhere {
    color: #0d9b50
}

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

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    border-radius: 12px;
    padding: 11px 14px;
    font-weight: 800;
    min-width: 160px
}

.store-btn small {
    display: block;
    color: #ccd3dc;
    font-size: 10px;
    font-weight: 700
}

.store-btn span {
    font-size: 15px;
    line-height: 1
}

.managed {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
    background: #fff
}

.managed h2 {
    text-align: center;
    font-size: 24px;
    margin: 0 0 20px
}

.managed-logos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px
}

.managed-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.managed-card img {
    max-height: 70px;
    max-width: 150px;
    margin: auto;
    object-fit: contain
}

.text-logo {
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -.04em
}

.text-logo span {
    color: var(--orange)
}

.csquare-mark {
    display: flex;
    align-items: center;
    gap: 10px
}

.csquare-mark b {
    font-size: 22px
}

.csquare-mark small {
    display: block;
    color: var(--muted);
    font-weight: 800;
    letter-spacing: .08em
}

.footer {
    background: linear-gradient(135deg, #121820, #1f2a34);
    color: #dce4ec;
    padding: 50px 0 22px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 30px
}

.footer h4 {
    color: var(--orange);
    margin: 0 0 12px
}

.footer a {
    display: block;
    color: #dce4ec;
    font-size: 14px;
    margin: 8px 0
}

.footer p {
    font-size: 14px;
    color: #b8c2cc
}

.footer p {
    font-size: 14px;
    color: #b8c2cc
}


.footer-contact-row{
    display:flex;
    align-items:center;
    gap:10px;
    margin:8px 0;
    font-size:14px;
    color:#b8c2cc;
}

.footer-contact-row .fc-icon{
    flex:none;
    width:18px;
    text-align:center;
}

.footer-contact-row a{
    display:inline;
    margin:0;
    color:#dce4ec;
    transition:.2s;
}

.footer-contact-row a:hover{
    color:var(--orange);
    text-decoration:underline;
}

.footer-logo {
    filter: brightness(1.05);
    height: 58px
}

.footer-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -.03em;
    color: #fff;
    line-height: 1
}

.footer-brand .fb-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.footer-brand .fb-dim {
    color: #aeb8c2;
    font-weight: 800;
    font-size: 24px;
    margin-left: 2px
}

.social {
    display: flex;
    gap: 10px;
    margin-top: 14px
}

.social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0
}

.copyright {
    text-align: center;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
    color: #aeb8c2
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    background: rgba(255,255,255,.55)
}

.page-hero:before {
    display: none;
}

.page-hero .container {
    position: relative;
    z-index: 1
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.06;
    margin: 12px 0;
    letter-spacing: -.04em
}

.page-hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 760px
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(18, 24, 32, .07)
}

.table-wrap {
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px
}

.compare-table th, .compare-table td {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    text-align: left
}

.compare-table th {
    background: #f8fafc;
    color: #22303b
}

.compare-table td:not(:first-child), .compare-table th:not(:first-child) {
    text-align: center
}

.yes {
    color: var(--green);
    font-weight: 900
}

.no {
    color: #a0a7ad;
    font-weight: 900
}

.faq {
    max-width: 920px;
    margin: auto
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden
}

.faq-q {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 0;
    padding: 18px 22px;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    cursor: pointer
}

.faq-a {
    display: none;
    padding: 0 22px 18px;
    color: var(--muted)
}

.faq-item.open .faq-a {
    display: block
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 24px
}

.contact-box {
    display: grid;
    gap: 16px
}

.contact-method {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px
}

.video-hero {
    border-radius: 24px;
    overflow: hidden;
    min-height: 460px;
    position: relative;
    background: linear-gradient(rgba(18, 24, 32, .25), rgba(18, 24, 32, .55)), url("data:image/svg+xml,%3Csvg width='1100' height='520' viewBox='0 0 1100 520' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1100' height='520' fill='%23d6c0a4'/%3E%3Cg stroke='%23313b45' stroke-width='5' opacity='.62' fill='none'%3E%3Cpath d='M70 440h960M110 440V210h280v230M150 440V250M210 440V250M270 440V250M330 440V250M110 300h280M110 370h280M560 440V150h340v290M610 440V205M680 440V205M750 440V205M820 440V205M560 260h340M560 350h340M460 90v350M410 130h150M410 130l55 310M560 130l-55 310'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat
}

.video-hero .play {
    width: 110px;
    height: 110px
}

.video-caption {
    position: absolute;
    left: 32px;
    bottom: 32px;
    color: #fff;
    max-width: 520px
}

.video-caption h2 {
    font-size: 38px;
    margin: 0 0 8px
}

.download-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.app-card {
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    background: #fff
}

.app-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 30px;
    flex: none
}

.toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--dark);
    color: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    display: none;
    z-index: 1000
}

.toast.show {
    display: block
}

@media (max-width:1180px) {
    .nav-links {
        display: none
    }

    .menu-btn {
        display: flex
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 45px 0
    }

    

    .construction-scene {
        min-height: 480px
    }

    .phone-mockup {
        left: 24px;
        width: 270px;
        height: 440px
    }

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

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

    .status-grid {
        grid-template-columns: 1fr
    }

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

    .video-card, .form-grid, .split, .contact-grid, .download-panel, .ownership-grid {
        grid-template-columns: 1fr
    }

    .signup-form {
        border: 0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line)
    }

    .packages {
        grid-template-columns: 1fr
    }

    .price-card.popular {
        transform: none
    }

    .steps-grid, .managed-logos {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .trust-item:not(:last-child) {
        border-right: 0
    }

    .trust-item {
        border-bottom: 1px solid var(--line)
    }
}



@media (max-width: 640px) {
    body {
        background-position: 30% center;
        background-size: cover;
    }

    .section-soft {
        background: rgba(255,255,255,.3);
    }

    .bg-soft {
        background: rgba(255,255,255,.3);
    }

    #for {
        background: rgba(255,255,255,.3);
    }

    .page-hero {
        background: rgba(255,255,255,.3);
    }
}

@media (max-width:640px) {
    .container {
        width: min(100% - 28px, var(--container))
    }
    .hero-points {
        grid-template-columns: 1fr
    }

    .logo-row {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center;
        gap: 16px
    }

    .logo-row img {
        max-width: 70px !important;
        width: auto;
        height: auto
    }

    .topbar {
        height: auto;
        padding: 6px 0;
    }

    .topbar .container {
        justify-content: center;
    }

    .language-switch {
        font-size: 12px;
        gap: 6px;
    }

    .nav {
        height: 70px
    }

    .brand-logo {
        height: 44px
    }

    .nav-actions .btn {
        display: none
    }

    .hero h1 {
        font-size: 38px
    }

    .lead {
        font-size: 16px
    }

    .hero-buttons {
        flex-direction: column
    }

    .btn-large {
        width: 100%
    }

    .trust-box, .features-grid, .footer-grid {
        grid-template-columns: 1fr
    }

    .construction-scene {
        min-height: 430px;
        border-radius: 22px
    }

    .phone-mockup {
        left: 50%;
        transform: translateX(-50%);
        top: 24px;
        width: 245px;
        height: 390px;
        border-width: 9px
    }

    .phone-screen {
        padding: 12px
    }

    .app-title {
        font-size: 20px
    }

    .orange-card strong {
        font-size: 19px
    }

    .activity-list {
        display: none
    }

    .trade-grid {
        grid-template-columns: 1fr
    }

    .addon-grid {
        grid-template-columns: 1fr
    }

    .phone-scene {
        min-height: 420px
    }

    

    

    .phone-screen {
        padding: 30px 12px 12px
    }

    

    .hero-grid {
        gap: 10px;
        padding-top: 8px;
    }

    .section {
        padding: 56px 0
    }

    .video-card {
        border-radius: 18px
    }

    .video-copy {
        padding: 28px
    }

    .video-box {
        min-height: 230px
    }

    .form-copy, .payment-copy, .download-copy, .signup-form {
        padding: 24px
    }

    .footer {
        padding-top: 36px
    }

    .page-hero {
        padding: 20px 0 56px
    }

    .price-card {
        padding: 24px
    }

    .trust-strip {
        margin-top: 0
    }

    .managed h2 {
        font-size: 20px
    }

    .contact-method, .card {
        padding: 20px
    }

    .video-placeholder {
        min-height: 360px
    }

    .video-caption h2 {
        font-size: 28px
    }

    .apps {
        display: grid
    }

    .store-btn {
        width: 100%;
        justify-content: center
    }

   
    

    .table-wrap {
        margin-inline: -14px;
        border-radius: 0;
        border-left: 0;
        border-right: 0
    }

    .page-hero h1 {
        font-size: 38px
    }

   

   
}

#for {
    background: rgba(255,255,255,.55);
}

.ownership {
    padding: 56px 0
}

.ownership-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 32px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(18, 24, 32, .07);
    max-width: 100%;
    overflow: hidden
}

@media (max-width: 640px) {
    .ownership-grid {
        padding: 22px
    }
}

.ownership h2 {
    margin: 0 0 10px
}

.ownership p {
    color: var(--muted);
    margin: 0
}

.logo-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    flex-wrap: wrap
}

.logo-row img {
    max-width: 100px;
    min-width: 40px;
    min-height: 20px;
    flex: none;
    flex-shrink: 0
}

.csq-logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1
}

.csq-logo:before {
    content: "▣";
    color: var(--orange);
    margin-right: 8px
}

.csq-logo span {
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted)
}

.cs-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18, 24, 32, .55);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: csFadeIn .2s ease;
}
.cs-modal-overlay.active { display: flex; }
.cs-modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
  animation: csSlideUp .25s ease;
}
.cs-modal-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
  margin: 0 auto 16px;
  box-shadow: 0 10px 25px rgba(255,90,17,.25);
}

.cs-modal h3 { margin: 0 0 26px; font-size: 22px; color: var(--dark); letter-spacing: -.02em; }
.cs-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: #f2f4f6;
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.cs-modal-close:hover { background: #e7eaee; color: var(--dark); }
.cs-modal-btn { width: 100%; }
@keyframes csFadeIn { from{opacity:0} to{opacity:1} }
@keyframes csSlideUp { from{transform:translateY(18px); opacity:0} to{transform:translateY(0); opacity:1} }

.package-option {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border: 2px solid var(--line);
      border-radius: 14px;
      cursor: pointer;
      font-weight: 700;
      transition: border-color .15s, background .15s;
    }

    .package-option:hover {
      border-color: var(--orange);
    }

    .package-option input[type="radio"] {
      width: 18px;
      height: 18px;
      accent-color: var(--orange);
      flex: none;
    }

    .package-option:has(input:checked) {
      border-color: var(--orange);
      background: rgba(255, 90, 17, .06);
    }

    .btn-confirm-update {
    background: linear-gradient(135deg, var(--orange-3), var(--orange));
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 61, 0, .28);
}

.btn-confirm-update:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(255, 61, 0, .35);
}

.btn-addons {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 90, 17, .25);
}

.btn-addons:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(255, 90, 17, .32);
}

.btn-monthly {
    background: rgba(255, 151, 0, .12);
    color: var(--orange-2);
    border: 1px solid rgba(255, 151, 0, .35);
    box-shadow: none;
}

.btn-monthly:hover {
    background: rgba(255, 151, 0, .18);
    transform: translateY(-2px);
}

.account-layout{
    display:grid;
    grid-template-columns:520px 1fr;
    gap:40px;
    align-items:start;
}

.account-image{
    position:sticky;
    top:120px;
}

.account-image img{
    width:100%;
    display:block;
}

.account-grid{
    display:flex;
    flex-direction:column;
    gap:24px;
}

@media(max-width:1100px){

    .account-layout{
        grid-template-columns:1fr;
    }

    .account-image{
        position:relative;
        top:auto;
        max-width:500px;
        margin:auto;
    }
}

/* ==== Mobile logo-row overflow fix (forced) ==== */
@media (max-width: 768px) {
    .ownership-grid {
        overflow: hidden !important;
        max-width: 100% !important;
    }

    .logo-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .logo-row img {
        max-width: 60px !important;
        min-width: 30px !important;
        width: auto !important;
        height: auto !important;
        flex: 0 1 auto !important;
        flex-shrink: 0 !important;
    }
}


@media (max-width: 640px) {
    .ownership-grid h2 {
        font-size: 18px !important;
        line-height: 1.35 !important;
    }

    .ownership-grid p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
}
.section-title h2,
.section-head h2 {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.nav-actions .btn,
.main-nav ~ .nav-actions .btn {
    white-space: nowrap;
    flex: none;
    width: auto;
}

.logo-row img {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}