*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #f04037;
    --red-dark: #EF4036;
    --black: #0a0a0a;
    --white: #ffffff;
    --yellow-bg: #FFF3D3;
    --second-yellow-bg: #ffeccc;
    --dark: #1a1a1a;
    --head: #333333;
    --desc: #666666;
    --gradient-card: linear-gradient(145deg, rgba(239, 64, 54, 0.08) 0%, rgba(239, 64, 54, 0.02) 100%);
    --accent-glow: rgba(239, 64, 54, 0.15);
    --green: #49de80;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background: var(--yellow-bg);
    overflow-x: hidden;
    margin-top: 82px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    background: #FFF3D3;
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(224, 62, 26, 0.12);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all 0.3s;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 52px;
}

.logo p {
    font-weight: 400;
    font-size: 0.95em;
}

.nav {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav a {
    color: var(--black);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95em;
    position: relative;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: var(--red-dark);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-dark);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav .dl-btn {
    background: var(--red-dark);
    color: var(--yellow-bg) !important;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s !important;
    font-size: 0.87em !important;
}

.nav .dl-btn::after {
    display: none;
}

.nav .dl-btn:hover {
    color: var(--red-dark) !important;
    border: 1.5px solid rgba(239, 64, 54, 1);
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(239, 64, 54, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--red);
    border-radius: 2px;
    display: block;
    transition: 0.3s;
}

/* ===== FEATURES DROPDOWN ===== */
.nav li.has-dropdown {
    position: relative;
}

.nav li.has-dropdown>a {
    padding-right: 18px;
}

.nav li.has-dropdown>a::before {
    content: '▾';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1em;
    transition: transform 0.3s;
    line-height: 1;
}

.nav li.has-dropdown>a::after {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: -16px;
    background: var(--yellow-bg);
    border-radius: 14px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    min-width: 500px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 200;
    border: 1px solid rgba(239, 64, 54, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 28px;
    width: 14px;
    height: 14px;
    background: var(--yellow-bg);
    border-left: 1px solid rgba(239, 64, 54, 0.08);
    border-top: 1px solid rgba(239, 64, 54, 0.08);
    transform: rotate(45deg);
    border-radius: 2px;
}

.nav li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav li.has-dropdown:hover>a {
    color: var(--red-dark);
}

.nav li.has-dropdown:hover>a::before {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    color: var(--head) !important;
    font-size: 0.88em;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: rgba(239, 64, 54, 0.06);
    color: var(--red-dark) !important;
}

.dropdown-menu li:not(:last-child) a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dd-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(239, 64, 54, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.dd-icon i {
    color: var(--red-dark);
    font-size: 12px;
    transition: color 0.2s;
}

.dropdown-menu a:hover .dd-icon {
    background: var(--red-dark);
}

.dropdown-menu a:hover .dd-icon i {
    color: #fff;
}

/* ===== HERO ===== */
.hero {
    background: var(--dark);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4.5% 5% 3%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    right: 8%;
    bottom: -10%;
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(circle, rgba(224, 62, 26, 0.3) 0%, transparent 65%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.1)
    }
}

.hero-content {
    margin-left: 10px;
    flex: 1;
    max-width: 46%;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 4vw, 58px);
    font-weight: 700;
    color: #FFF3D3;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.7s 0.3s ease forwards;
}

.hero-content h1 .highlight {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 3.6vw, 52px);
    color: var(--red);
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 0.5s ease forwards;
}

.hero-content p {
    font-family: 'Poppins', sans-serif;
    color: #FFF3D3;
    font-size: 1.25em;
    line-height: 1.7;
    margin: 18px 0 30px;
    max-width: 550px;
    opacity: 0;
    animation: fadeUp 0.7s 0.7s ease forwards;
}

.hero-btns {
    display: flex;
    gap: 14px;
    opacity: 0;
    animation: fadeUp 0.7s 0.9s ease forwards;
}

.btn-primary {
    background: var(--red-dark);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary:hover {
    background: transparent;
    color: var(--red-dark) !important;
    border: 1.5px solid rgba(239, 64, 54, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(239, 64, 54, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #EF4036;
    border: 1.5px solid rgba(239, 64, 54, 1);
    padding: 12px 26px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    gap: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
    border-color: var(--red-dark);
    color: var(--white);
    background: var(--red-dark);
    transform: translateY(-3px);
}

/* Float badges */
.float-badge {
    position: absolute;
    top: 80px;
    left: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 9px 14px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: badgeFadeIn 0.6s 1.2s ease forwards, floatAnim 3s 1.8s ease-in-out infinite;
}

.float-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.float-badge1 {
    position: absolute;
    top: 20%;
    right: -14%;
    background: rgba(73, 222, 128, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(73, 222, 128, 0.35);
    border-radius: 12px;
    padding: 16px 20px;
    color: #4ade80;
    font-size: 12px;
    font-weight: 600;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: badgeFadeIn 0.6s 1.2s ease forwards, floatAnim 3s 1.8s ease-in-out infinite;
}

.float-badge1 .badge-dot1 {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.float-badge2 {
    position: absolute;
    top: 30%;
    right: 60%;
    background: rgba(239, 64, 54, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(239, 64, 54, 0.35);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--red);
    font-size: 12px;
    font-weight: 600;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: badgeFadeIn 0.6s 1.2s ease forwards, floatAnim 3s 1.8s ease-in-out infinite;
}

.float-badge2 .badge-dot2 {
    width: 8px;
    height: 8px;
    background: var(--red-dark);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.float-badge3 {
    position: absolute;
    top: 60%;
    right: -15%;
    background: rgba(126, 87, 194, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(126, 87, 194, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    color: #7e57c2;
    font-size: 12px;
    font-weight: 600;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: badgeFadeIn 0.6s 1.2s ease forwards, floatAnim 3s 1.8s ease-in-out infinite;
}

.float-badge3 .badge-dot3 {
    width: 8px;
    height: 8px;
    background: #7e57c2;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes badgeFadeIn {
    to {
        opacity: 1
    }
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

/* Phones */
.hero-phones {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 2;
    height: 80vh;
    max-height: 520px;
}

.phone {
    position: absolute;
    bottom: 0;
    border-radius: 30px;
    overflow: hidden;
}

.phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.phone-left {
    width: 17vw;
    height: 33vw;
    max-width: 219px;
    max-height: 428px;
    left: 8vw;
    bottom: 6vw;
    z-index: 2;
    opacity: 0;
    animation: slideInLeft 0.8s 0.5s ease forwards;
}

.phone-left1 {
    width: 16vw;
    height: 21vw;
    max-width: 211px;
    max-height: 281px;
    left: -8vw;
    bottom: -3vw;
    z-index: 2;
    opacity: 0;
    animation: slideInLeft 0.8s 0.5s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.phone-center {
    width: 17.5vw;
    height: 34vw;
    max-width: 222px;
    max-height: 440px;
    z-index: 4;
    left: 50%;
    opacity: 0;
    animation: slideInCenter 0.8s 0.3s ease forwards;
}

@keyframes slideInCenter {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }
}

.phone-right {
    width: 17vw;
    height: 33vw;
    max-width: 219px;
    max-height: 428px;
    right: 8vw;
    bottom: 6vw;
    z-index: 2;
    opacity: 0;
    animation: slideInRight 0.8s 0.5s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

/* SOS badges */
.sos-badge {
    position: absolute;
    bottom: 1.5vw;
    right: 39%;
    width: 11vw;
    height: 11vw;
    max-width: 145px;
    max-height: 145px;
    z-index: 8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sos-badge1 {
    position: absolute;
    margin-bottom: -17%;
    width: 11vw;
    height: 11vw;
    max-width: 145px;
    max-height: 145px;
    z-index: 8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sos-badge2 {
    position: absolute;
    margin-top: 3%;
    right: 5%;
    width: 11vw;
    height: 11vw;
    max-width: 145px;
    max-height: 145px;
    z-index: 8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(2.5px);
}

.sos-pulse {
    position: absolute;
    width: 17vw;
    height: 17vw;
    max-width: 220px;
    max-height: 220px;
    border-radius: 50%;
    border: 1.5px solid rgba(224, 62, 26, 0.4);
    animation: sosRingOut 2.4s ease-out infinite;
}

.sos-pulse:nth-child(2) {
    animation-delay: 0.8s
}

.sos-pulse:nth-child(3) {
    animation-delay: 1.6s
}

@keyframes sosRingOut {
    0% {
        transform: scale(1);
        opacity: 0.7
    }

    100% {
        transform: scale(1.7);
        opacity: 0
    }
}

.sos-r1 {
    position: absolute;
    width: 15.8vw;
    height: 15.8vw;
    max-width: 205px;
    max-height: 205px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 64, 54, 0.2));
    animation: sosBreathe 2.5s ease-in-out infinite;
}

.sos-r2 {
    position: absolute;
    width: 13vw;
    height: 13vw;
    max-width: 170px;
    max-height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 64, 54, 0.4));
}

.sos-r3 {
    position: absolute;
    width: 10.4vw;
    height: 10.4vw;
    max-width: 135px;
    max-height: 135px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 64, 54, 0.6));
}

.sos-r4 {
    position: absolute;
    width: 7.7vw;
    height: 7.7vw;
    max-width: 100px;
    max-height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 35%, rgba(239, 64, 54, 1));
    box-shadow: 0 0 28px rgba(239, 64, 54, 1), inset 0 2px 5px rgba(239, 64, 54, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

@keyframes sosBreathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9
    }

    50% {
        transform: scale(1.04);
        opacity: 1
    }
}

.sos-label {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1;
    margin-bottom: 2px;
}

.sos-text {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

/* ===== WELCOME ===== */
.welcome-alerto {
    padding: 90px 0;
}

.welcome-alerto-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.welcome-alerto-inner1 {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-alerto-inner2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2em, 3.463vw, 4.85em);
    font-weight: 700;
    color: var(--head);
    line-height: 1.15;
    margin-bottom: 20px;
}

.welcome-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25em;
    color: var(--desc);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 50ch;
}

.welcome-alerto-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.welcome-alerto-right1 {
    display: flex;
    justify-content: left;
    align-items: left;
    position: relative;
}

.welcome-phone-img {
    max-width: 550px;
    height: 550px;
    object-fit: contain;
    animation: _floatY 6s ease-in-out infinite;
}

.welcome-phone-img1 {
    max-width: 550px;
    height: 400px;
    object-fit: contain;
    animation: _floatY 6s ease-in-out infinite;
}

/* Buttons */
.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red-dark);
    color: var(--yellow-bg) !important;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
}

.dl-btn::after {
    display: none;
}

.dl-btn:hover {
    color: var(--red-dark) !important;
    border: 1.5px solid rgba(239, 64, 54, 1);
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(239, 64, 54, 0.4);
}

.dl-btn1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red-dark) !important;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
    border: 1.5px solid rgba(239, 64, 54, 1);
    box-shadow: 0 4px 10px rgba(239, 64, 54, 0.4);
}

.dl-btn1::after {
    display: none;
}

.dl-btn1:hover {
    color: var(--white) !important;
    background: var(--red-dark);
    transform: translateY(-2px);
}

.downloadalerto {
    padding: 10px 20px;
    color: white !important;
    background: var(--red);
    border-radius: 25px;
    border: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.downloadalerto:hover {
    color: var(--red) !important;
    background: white;
    border: 1px solid var(--red);
}

/* Location icons */
.location-icon {
    position: absolute;
    width: 180px;
    height: 180px;
    margin-bottom: 30%;
    left: 3%;
    animation: bounceIn 2s ease-in-out infinite;
}

.location-icon1 {
    position: absolute;
    width: 16vw;
    height: 21vw;
    margin-top: -17%;
    right: 8%;
    transform: rotate(-10deg);
}

.location-icon2 {
    position: absolute;
    width: 180px;
    height: 180px;
    margin-top: -10%;
    left: 5%;
    animation: bounceIn 2s ease-in-out infinite;
}

.location-icon3 {
    position: absolute;
    width: 16vw;
    height: 21vw;
    margin-top: -8%;
    left: 8%;
    transform: rotate(-10deg);
}

.location-icon4 {
    position: absolute;
    width: 16vw;
    height: 21vw;
    margin-top: -20%;
    right: -15%;
    transform: rotate(-10deg);
}

/* WhatsApp */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 60px;
    right: 60px;
    background-color: #25d366;
    color: white;
    font-size: 50px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9999;
    animation: bounceIn 2s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: none;
}

@keyframes bounceIn {
    0% {
        transform: translateY(20px)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0)
    }
}

.whatsapp-floating-btn i {
    display: block;
    text-align: center;
    line-height: 1;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--second-yellow-bg);
    padding: 90px 0 20px;
}

.features-section1 {
    background: var(--second-yellow-bg);
    padding: 10px 0 20px;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 700;
    color: var(--head);
    line-height: 1.15;
    margin-bottom: 16px;
}

.features-header h2 span {
    color: var(--red-dark);
}

.features-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: var(--desc);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.75;
}

.features-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    align-items: center;
}

.features-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.flip-card {
    background: var(--gradient-card);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 28px;
    max-width: 700px;
    height: 170px;
    cursor: pointer;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.flip-card:hover {
    animation: featureFloat1 5s ease-in-out infinite;
}

.flip-card-inner,
.flip-front {
    display: contents;
}

.flip-front-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(239, 64, 54, 0.35);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.flip-card:hover .flip-front-icon {
    box-shadow: none;
}

.flip-front-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.flip-front-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75em;
    font-weight: 700;
    color: var(--head);
    margin-bottom: 5px;
    transition: color 0.35s ease;
}

.flip-front-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25em;
    color: var(--desc);
    line-height: 1.55;
    transition: color 0.35s ease;
}

.features-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.features-phone-img {
    width: 100%;
    max-width: 550px;
    height: 600px;
    border-radius: 36px;
    animation: featureFloat 5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes featureFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

@keyframes featureFloat1 {

    0%,
    100% {
        transform: translateY(-5px)
    }

    50% {
        transform: translateY(-14px)
    }
}

.features-phone::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(239, 64, 54, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* ===== SOLUTION GRIDS ===== */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card:nth-child(1) {
    grid-column: 1/3
}

.solution-card:nth-child(2) {
    grid-column: 3/5
}

.solution-card:nth-child(3) {
    grid-column: 5/7
}

.solution-card:nth-child(4) {
    grid-column: 2/4
}

.solution-card:nth-child(5) {
    grid-column: 4/6
}

.solution-card {
    background: var(--gradient-card);
    border: 1px solid rgba(239, 64, 54, 0.15);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.solution-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 64, 54, 0.3);
}

.solution-card1:nth-child(1) {
    grid-column: 1/3
}

.solution-card1:nth-child(2) {
    grid-column: 3/5
}

.solution-card1:nth-child(3) {
    grid-column: 5/7
}

.solution-card1:nth-child(4) {
    grid-column: 2/4
}

.solution-card1:nth-child(5) {
    grid-column: 4/6
}

.solution-card1 {
    background: var(--red-dark);
    border: 1px solid rgba(239, 64, 54, 0.15);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.solution-card1:hover {
    transform: translateY(-4px);
}

.solution-card2:nth-child(1) {
    grid-column: 1/3
}

.solution-card2:nth-child(2) {
    grid-column: 3/5
}

.solution-card2:nth-child(3) {
    grid-column: 5/7
}

.solution-card2:nth-child(4) {
    grid-column: 1/3
}

.solution-card2:nth-child(5) {
    grid-column: 3/5
}

.solution-card2:nth-child(6) {
    grid-column: 5/7
}

.solution-card2:nth-child(7) {
    grid-column: 2/4
}

.solution-card2:nth-child(8) {
    grid-column: 4/6
}

.solution-card2 {
    background: var(--gradient-card);
    border: 1px solid rgba(239, 64, 54, 0.15);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.solution-card2:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 64, 54, 0.3);
}

.solution-card3:nth-child(1) {
    grid-column: 1/3
}

.solution-card3:nth-child(2) {
    grid-column: 3/5
}

.solution-card3:nth-child(3) {
    grid-column: 5/7
}

.solution-card3:nth-child(4) {
    grid-column: 2/4
}

.solution-card3:nth-child(5) {
    grid-column: 4/6
}

.solution-card3 {
    background: transparent;
    border: 1px solid rgba(255, 243, 212, 1);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.solution-card3:hover {
    transform: translateY(-4px);
    background: rgba(239, 64, 54, 0.2);
    border-color: rgba(239, 64, 54, 1);
}

.solution-card4:nth-child(1) {
    grid-column: 1/7
}

.solution-card4:nth-child(2) {
    grid-column: 1/3
}

.solution-card4:nth-child(3) {
    grid-column: 3/5
}

.solution-card4:nth-child(4) {
    grid-column: 5/7
}

.solution-card4:nth-child(5) {
    grid-column: 1/3
}

.solution-card4:nth-child(6) {
    grid-column: 3/5
}

.solution-card4:nth-child(7) {
    grid-column: 5/7
}

.solution-card4:nth-child(8) {
    grid-column: 1/3
}

.solution-card4:nth-child(9) {
    grid-column: 3/5
}

.solution-card4:nth-child(10) {
    grid-column: 5/7
}

.solution-card4 {
    background: var(--gradient-card);
    border: 1px solid rgba(239, 64, 54, 0.15);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.solution-card4:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 64, 54, 0.3);
}

.solution-card5:nth-child(1) {
    grid-column: 1/7
}

.solution-card5:nth-child(2) {
    grid-column: 1/3
}

.solution-card5:nth-child(3) {
    grid-column: 3/5
}

.solution-card5:nth-child(4) {
    grid-column: 5/7
}

.solution-card5:nth-child(5) {
    grid-column: 2/4
}

.solution-card5:nth-child(6) {
    grid-column: 4/6
}

.solution-card5 {
    background: var(--gradient-card);
    border: 1px solid rgba(239, 64, 54, 0.15);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.solution-card5:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 64, 54, 0.3);
}

.solution-card6:nth-child(1) {
    grid-column: 1/7
}

.solution-card6:nth-child(2) {
    grid-column: 1/3
}

.solution-card6:nth-child(3) {
    grid-column: 3/5
}

.solution-card6:nth-child(4) {
    grid-column: 5/7
}

.solution-card6:nth-child(5) {
    grid-column: 1/3
}

.solution-card6:nth-child(6) {
    grid-column: 3/7
}

.solution-card6 {
    background: var(--gradient-card);
    border: 1px solid rgba(239, 64, 54, 0.15);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.solution-card6:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 64, 54, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.solution-card .card-icon,
.solution-card2 .card-icon,
.solution-card3 .card-icon,
.solution-card4 .card-icon,
.solution-card5 .card-icon,
.solution-card6 .card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-dark);
    flex-shrink: 0;
}

.solution-card1 .card-icon1 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow-bg);
    flex-shrink: 0;
}

.card-icon-img {
    width: 38px;
}

.card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--head);
    line-height: 1.25;
    margin: 0;
}

.solution-card p,
.solution-card4 p,
.solution-card5 p,
.solution-card6 p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--desc);
    line-height: 1.55;
    margin-top: 0;
}

.solution-card1 p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--yellow-bg);
    line-height: 1.55;
    margin-top: 0;
    font-weight: 400;
}

.check,
.check1,
.check2 {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: .85rem;
    padding: 8px 14px;
    border-radius: 4px;
}

.check {
    background: rgba(73, 222, 128, .2);
    color: var(--green);
}

.check1 {
    background: rgba(224, 138, 0, .16);
    color: #e0b700;
}

.check2 {
    background: var(--yellow-bg);
    color: var(--red);
}

.readMore {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: var(--red-dark);
}

/* ===== HOW IT WORKS ===== */
.how-steps {
    background: var(--second-yellow-bg);
    padding: 90px 0 20px;
}

.how-steps-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
}

.how-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.how-step-card {
    border-radius: 20px;
    padding: 0 0 36px 0;
    overflow: hidden;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.how-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(107, 15, 26, 0.12);
}

.step-badge {
    background: var(--red-dark);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.94em;
    padding: 10px 24px;
    border-radius: 8px;
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.step-img-wrap {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    margin-bottom: 2%;
    margin-top: 8%;
    overflow: hidden;
}

.step-phone-img {
    max-height: 290px;
    max-width: 302px;
    object-fit: contain;
    object-position: top;
    display: block;
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75em;
    font-weight: 700;
    color: var(--head);
    margin-bottom: 12px;
    padding: 0 20px;
    height: 13%;
}

.step-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25em;
    color: var(--desc);
    line-height: 1.6;
    padding: 0 24px;
}

.how-steps-cta {
    margin-top: 10px;
}

/* ===== BUBBLE ===== */
.bubble-canvas {
    position: relative;
    width: 560px;
    height: 520px;
    flex-shrink: 0;
    margin: 0 auto;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bubble:hover {
    transform: scale(1.07) !important;
}

.b-center {
    width: 110px;
    height: 110px;
    top: 245px;
    left: 225px;
    background: #EF4036;
    z-index: 10;
    animation: centerPulse 2.8s ease-in-out infinite;
    padding: 10px;
}

@keyframes centerPulse {

    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(239, 64, 54, 0.18), 0 0 0 18px rgba(239, 64, 54, 0.07)
    }

    50% {
        box-shadow: 0 0 0 14px rgba(239, 64, 54, 0.22), 0 0 0 28px rgba(239, 64, 54, 0.09)
    }
}

.b-top {
    width: 152px;
    height: 152px;
    top: 5px;
    left: 205px;
    background: #F5A623;
    z-index: 5;
    animation: floatTop 3.5s ease-in-out infinite;
    padding: 18px;
}

.b-left {
    width: 152px;
    height: 152px;
    top: 50px;
    left: 15px;
    background: #2eae88;
    z-index: 5;
    animation: floatLeft 3.8s ease-in-out infinite;
    padding: 16px;
}

.b-right {
    width: 152px;
    height: 152px;
    top: 65px;
    left: 375px;
    background: #1a4a8a;
    z-index: 5;
    animation: floatRight 4.1s ease-in-out infinite;
    padding: 16px;
}

.b-bottomleft {
    width: 152px;
    height: 152px;
    top: 220px;
    left: -50px;
    background: #2563EB;
    z-index: 5;
    animation: floatBL 3.3s ease-in-out infinite;
    padding: 16px;
}

.b-bottomright {
    width: 152px;
    height: 152px;
    top: 220px;
    right: -50px;
    background: #C0392B;
    z-index: 5;
    animation: floatBR 3.9s ease-in-out infinite;
    padding: 16px;
}

@keyframes floatTop {

    0%,
    100% {
        top: 5px
    }

    50% {
        top: -4px
    }
}

@keyframes floatLeft {

    0%,
    100% {
        left: 15px
    }

    50% {
        left: 10px
    }
}

@keyframes floatRight {

    0%,
    100% {
        left: 375px
    }

    50% {
        left: 385px
    }
}

@keyframes floatBL {

    0%,
    100% {
        top: 220px
    }

    50% {
        top: 230px
    }
}

@keyframes floatBR {

    0%,
    100% {
        top: 220px
    }

    50% {
        top: 230px
    }
}

.bubble-icon {
    font-size: 22px;
    margin-bottom: 4px;
    line-height: 1;
}

.bubble-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    font-size: 18px;
}

.connector-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.conn-line {
    fill: none;
    stroke-width: 2;
    stroke-dasharray: 7 5;
    animation: dashMove 1.8s linear infinite;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -24
    }
}

/* Points / list */
.list {
    list-style: none;
}

.points {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 10px 0;
    color: var(--yellow-bg);
    font-size: 20px;
    font-weight: 400;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.points:last-child {
    border-bottom: none;
}

.points1 {
    color: var(--yellow-bg);
    width: 20px;
    font-size: 1.1em;
    flex-shrink: 0;
}

/* ===== CTA SECTION (red card) ===== */
.cta-section {
    background: linear-gradient(120deg, #e8382d 0%, #EF4036 45%, #f55a50 100%);
    border-radius: 28px;
    padding: 0 80px;
    color: var(--yellow-bg);
    box-shadow: 0 24px 70px rgba(239, 64, 54, 0.4);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 80px auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 320px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 38%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-content {
    flex: 1;
    padding: 56px 0;
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.cta-content i.fa-crown {
    font-size: 3.8em;
    margin-bottom: 18px;
    display: block;
    color: #FFD700;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
    animation: crownBob 3s ease-in-out infinite;
}

@keyframes crownBob {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg)
    }

    50% {
        transform: translateY(-6px) rotate(3deg)
    }
}

.cta-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3.2vw, 52px);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.cta-content .cta-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25em;
    margin-bottom: 24px;
    opacity: 0.88;
    font-weight: 400;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-pill-text {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 243, 212, 0.35);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 11px 22px;
    font-size: 1.15em;
    font-weight: 500;
    color: #fff;
    backdrop-filter: blur(6px);
}

.cta-btn-w {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--red);
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.cta-btn-w:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
    color: var(--red-dark);
}

.cta-image {
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 450px;
    z-index: 2;
    position: relative;
}

.cta-image img {
    height: 105%;
    max-width: 450px;
    object-fit: contain;
    object-position: bottom;
    display: block;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.2));
}

/* ===== COUNTERS ===== */
.counters {
    padding: 90px 0;
    background: var(--second-yellow-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.counter-item {
    transition: transform 0.3s;
    background: var(--red-dark);
    border-radius: 16px;
    padding: 56px;
}

.counter-item:hover {
    transform: translateY(-5px);
}

.counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    background: var(--yellow-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 500;
    opacity: 0.9;
    color: var(--yellow-bg);
}

/* ===== STAY PROTECTED ===== */
.stay-protected {
    background: #232323;
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

.stay-protected::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.stay-protected-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sp-top {
    display: grid;
    grid-template-columns: 3.5fr 1fr 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 60px;
}

.sp-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 4.67vw, 52px);
    font-weight: 700;
    color: var(--yellow-bg);
    line-height: 1.2;
    margin-bottom: 16px;
}

.sp-title span {
    color: var(--red);
}

.sp-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25em;
    color: var(--yellow-bg);
    line-height: 1.75;
    max-width: 38ch;
    margin-bottom: 24px;
}

.sp-divider {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
    border-radius: 2px;
}

.sp-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 4.67vw, 51px);
    font-weight: 700;
    color: var(--yellow-bg);
}

.sp-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-family-img {
    max-width: 260px;
    height: auto;
    object-fit: contain;
    animation: spFamilyFloat 6s ease-in-out infinite;
}

@keyframes spFamilyFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

/* ===== PLANS ===== */
.plans {
    padding: 100px 0 80px;
    background: var(--yellow-bg);
    max-width: 1200px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    align-items: stretch;
}

.plan-card {
    background: var(--yellow-bg);
    border-radius: 16px;
    border: 1.5px solid var(--red-dark);
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(239, 64, 54, 0.15);
}

.plan-card.featured {
    background: var(--red-dark);
    border-color: var(--red-dark);
    box-shadow: 0 20px 60px rgba(239, 64, 54, 0.35);
}

.plan-card.featured:hover {
    transform: translateY(-8px);
}

.best-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: #F5A623;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72em;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 0 0 10px 10px;
    letter-spacing: 0.04em;
}

.plan-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2em;
    font-weight: 800;
    color: var(--red-dark);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
}

.plan-card.featured .plan-price {
    color: #fff;
}

.plan-price .currency {
    font-size: 0.55em;
    font-weight: 700;
}

.plan-price .per-year {
    font-size: 0.3em;
    font-weight: 500;
    opacity: 0.75;
    margin-left: 2px;
}

.plan-billing {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82em;
    color: var(--desc);
    margin-bottom: 24px;
}

.plan-card.featured .plan-billing {
    color: rgba(255, 255, 255, 0.75);
}

.plan-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95em;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 24px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.plan-btn-free {
    background: #1a1a1a;
    color: #fff;
}

.plan-btn-free:hover {
    background: #333;
    transform: translateY(-2px);
}

.plan-btn-premium {
    background: #F5A623;
    color: #fff;
}

.plan-btn-premium:hover {
    background: #e0941a;
    transform: translateY(-2px);
}

.plan-btn-dark {
    background: #1a1a1a;
    color: #fff;
}

.plan-btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88em;
    color: var(--desc);
    padding: 9px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    line-height: 1.45;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-card.featured .plan-features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.plan-features li i {
    color: #4ade80;
    font-size: 0.95em;
    margin-top: 2px;
    flex-shrink: 0;
}

.plan-card.featured .plan-features li i {
    color: #fff;
}

/* ===== SCREENSHOTS ===== */
.screenshots {
    padding: 100px 0 80px;
    background: var(--second-yellow-bg);
    overflow: hidden;
}

.carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    margin-top: 50px;
}

.carousel {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: flex-end;
    padding: 20px 0 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.screenshot {
    flex: 0 0 240px;
    height: 520px;
    scroll-snap-align: center;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
}

.screenshot:hover {
    transform: translateY(-10px) scale(1.02);
}

.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--red), var(--red-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 16px;
}

.screenshot-placeholder i {
    font-size: 4em;
    opacity: 0.7;
}

.screenshot-placeholder span {
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    font-size: 1.1em;
    opacity: 0.85;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(224, 62, 26, 0.25);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--red);
    transform: scale(1.3);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--red-dark);
    border-radius: 28px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 950px;
    margin: 0 auto;
}

.cta-banner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 4.7vw, 52px);
    font-weight: 700;
    color: var(--yellow-bg);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-banner-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25em;
    color: rgba(255, 243, 212, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-banner-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-store-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s, filter 0.3s;
    border-radius: 10px;
    overflow: hidden;
}

.cta-store-btn:hover {
    transform: translateY(-4px);
    filter: brightness(1.08) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

/* ===== FOOTER ===== */
.footer {
    background: #232323;
    color: var(--yellow-bg);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    margin-bottom: 50px;
    align-items: start;
}
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer h4 {
    color: var(--yellow-bg);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer h4 i {
    color: var(--red);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.footer a:hover {
    color: var(--red);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding: 24px;
    font-size: 0.88em;
    color: #555;
    margin-top: 10px;
}

/* =====================================================
           RESPONSIVE OVERRIDES — tablets & mobile only
           Desktop layout is UNTOUCHED above this block
        ===================================================== */

/* ── TABLET (≤ 1024px) ──────────────────────────── */
@media (max-width:1024px) {
    .nav {
        gap: 16px;
    }

    .nav a {
        font-size: 0.85em;
    }

    .nav .dl-btn {
        padding: 8px 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        gap: 32px;
        flex-wrap: wrap;
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .welcome-alerto-inner,
    .welcome-alerto-inner1,
    .welcome-alerto-inner2 {
        padding: 0 32px;
        gap: 40px;
    }

    .solution-grid {
        padding: 0 24px;
    }
}

/* ── MOBILE (≤ 768px) ───────────────────────────── */
@media (max-width:768px) {
    body {
        margin-top: 70px;
    }

    /* Header */
    .header {
        padding: 10px 0;
    }

    .logo img {
        height: 40px;
    }

    .logo p {
        font-size: 0.72em;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--yellow-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 4px;
        border-top: 1px solid rgba(239, 64, 54, 0.1);
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }

    .nav li {
        width: 100%;
    }

    .nav a {
        display: block;
        padding: 10px 4px;
        font-size: 0.95em;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }

    .nav .dl-btn {
        margin-top: 8px;
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9em !important;
        border-radius: 8px;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 8px;
        padding: 4px 0 4px 12px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: rgba(239, 64, 54, 0.04);
        margin: 4px 0 4px 4px;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav li.has-dropdown.open .dropdown-menu {
        display: block;
    }

    .nav li.has-dropdown>a::before {
        right: 4px;
        font-size: 1.2em;
    }

    .dropdown-menu a {
        padding: 10px 12px;
        font-size: 0.9em;
    }

    /* Hero */
    .hero {
        padding: 40px 20px 380px;
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(22px, 6vw, 32px);
    }

    .hero-content p {
        font-size: 1em;
        margin: 14px 0 20px;
    }

    .hero-btns {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 18px;
        font-size: 13px;
    }

    .hero-phones {
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        height: 360px;
        max-height: 360px;
    }

    .phone-left1 {
        display: none;
    }

    .phone-left {
        width: 28vw;
        height: 54vw;
        max-width: 130px;
        max-height: 250px;
        left: 2vw;
        bottom: 2vw;
    }

    .phone-center {
        width: 30vw;
        height: 58vw;
        max-width: 140px;
        max-height: 270px;
    }

    .phone-right {
        width: 28vw;
        height: 54vw;
        max-width: 130px;
        max-height: 250px;
        right: 2vw;
        bottom: 2vw;
    }

    .sos-badge {
        width: 18vw;
        height: 18vw;
        max-width: 80px;
        max-height: 80px;
        right: 42%;
        bottom: 2vw;
    }

    .sos-r4 {
        width: 13vw;
        height: 13vw;
        max-width: 55px;
        max-height: 55px;
    }

    .sos-label {
        font-size: 11px;
    }

    .sos-text {
        font-size: 10px;
    }

    .sos-r1 {
        width: 26vw;
        height: 26vw;
        max-width: 110px;
        max-height: 110px;
    }

    .sos-r2 {
        width: 21vw;
        height: 21vw;
        max-width: 90px;
        max-height: 90px;
    }

    .sos-r3 {
        width: 17vw;
        height: 17vw;
        max-width: 72px;
        max-height: 72px;
    }

    .sos-pulse {
        width: 28vw;
        height: 28vw;
        max-width: 120px;
        max-height: 120px;
    }

    .float-badge {
        top: 12px;
        left: 12px;
        font-size: 9px;
        padding: 6px 10px;
    }

    /* Welcome / 2-col → 1 col */
    .welcome-alerto {
        padding: 50px 0;
    }

    .welcome-alerto-inner,
    .welcome-alerto-inner1,
    .welcome-alerto-inner2 {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 32px;
    }

    .welcome-alerto-right {
        order: -1;
    }

    .welcome-alerto-right1 {
        order: -1;
        justify-content: center;
    }

    .welcome-phone-img {
        height: 280px;
        max-width: 100%;
    }

    .welcome-title {
        font-size: clamp(1.6em, 5vw, 2.4em);
    }

    .welcome-desc {
        font-size: 1em;
        max-width: 100%;
    }

    .sos-badge1 {
        max-width: 80px;
        max-height: 80px;
    }

    .sos-badge2 {
        max-width: 80px;
        max-height: 80px;
        right: 48%;
    }

    /* Features */
    .features-section {
        padding: 60px 0 20px;
    }

    .features-header h2 {
        font-size: clamp(22px, 5vw, 36px);
    }

    .features-header p {
        font-size: 16px;
        padding: 0 16px;
    }

    .features-layout {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 24px;
    }

    .features-phone {
        order: -1;
    }

    .features-phone-img {
        height: 320px;
        max-width: 220px;
    }

    .location-icon1,
    .location-icon3,
    .location-icon4 {
        display: none;
    }

    .location-icon2 {
        width: 80px;
        height: 80px;
        margin-top: -6%;
        left: 2%;
    }

    .flip-card {
        height: auto;
        min-height: 90px;
        padding: 16px 20px;
        gap: 16px;
        max-width: 100%;
    }

    .flip-front-icon {
        width: 60px;
        height: 60px;
    }

    .flip-front-icon img {
        width: 34px;
        height: 34px;
    }

    .flip-front-text h3 {
        font-size: 1.2em;
    }

    .flip-front-text p {
        font-size: 1em;
    }

    .float-badge1,
    .float-badge2,
    .float-badge3 {
        display: none;
    }

    /* Solution grids → 1 col */
    .solution-grid {
        grid-template-columns: 1fr !important;
        padding: 0 16px;
        gap: 16px;
    }

    .solution-card:nth-child(n),
    .solution-card1:nth-child(n),
    .solution-card2:nth-child(n),
    .solution-card3:nth-child(n) {
        grid-column: 1 / -1 !important;
    }

    .solution-card,
    .solution-card1,
    .solution-card2,
    .solution-card3 {
        padding: 20px;
    }

    .card-header h3 {
        font-size: 1.1em;
    }

    .card-icon-img {
        width: 28px;
    }

    .solution-card .card-icon,
    .solution-card1 .card-icon1,
    .solution-card2 .card-icon,
    .solution-card3 .card-icon {
        width: 52px;
        height: 52px;
    }

    /* How it works */
    .how-steps {
        padding: 60px 0 20px;
    }

    .how-steps-inner {
        padding: 0 16px;
    }

    .how-steps-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto 40px;
        gap: 20px;
    }

    .step-img-wrap {
        height: 240px;
    }

    .step-phone-img {
        max-height: 200px;
    }

    .step-title {
        font-size: 1.3em;
        height: auto;
        padding: 0 16px;
        margin-bottom: 8px;
    }

    .step-desc {
        font-size: 1em;
        padding: 0 16px;
    }

    /* Bubble canvas — scale down */
    .bubble-canvas {
        width: 320px;
        height: 320px;
        transform: scale(0.6);
        transform-origin: top center;
        margin-bottom: -120px;
    }

    /* CTA section */
    .cta-section {
        padding: 40px 20px 0;
        flex-direction: column;
        text-align: center;
        min-height: auto;
        border-radius: 20px;
        margin: 40px 16px;
    }

    .cta-content {
        padding: 0;
        max-width: 100%;
    }

    .cta-content h3 {
        font-size: clamp(20px, 5vw, 32px);
    }

    .cta-content .cta-sub {
        font-size: 1em;
    }

    .cta-actions {
        align-items: center;
        gap: 16px;
    }

    .cta-pill-text {
        font-size: 0.95em;
        text-align: center;
        white-space: normal;
    }

    .cta-image {
        height: 200px;
        margin-top: 16px;
    }

    .cta-image img {
        max-width: 220px;
    }

    /* Counters */
    .counters {
        padding: 50px 0;
        margin-top: -40px;
    }

    .counters-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }

    .counter-item {
        padding: 32px 20px;
    }

    .counter {
        font-size: 52px;
    }

    .counter-label {
        font-size: 20px;
    }

    /* Stay Protected */
    .stay-protected {
        padding: 50px 0 40px;
    }

    .stay-protected-inner {
        padding: 0 16px;
    }

    .sp-top {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }

    .sp-title {
        font-size: clamp(22px, 6vw, 36px);
    }

    .sp-desc {
        font-size: 1em;
        max-width: 100%;
    }

    .sp-subheading {
        font-size: clamp(20px, 5vw, 32px);
    }

    .sp-right {
        justify-content: center;
    }

    .sp-family-img {
        max-width: 180px;
    }

    /* Plans */
    .plans {
        padding: 60px 0 40px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .plan-card {
        padding: 28px 20px 24px;
    }

    .plan-price {
        font-size: 2.4em;
    }

    /* Screenshots */
    .screenshots {
        padding: 60px 0 40px;
    }

    .carousel-wrapper {
        padding: 0 12px;
    }

    .carousel {
        gap: 12px;
        padding: 10px 0 20px;
        justify-content: flex-start;
    }

    .screenshot {
        flex: 0 0 200px;
        height: 420px;
    }

    .screenshot:nth-child(2),
    .screenshot:nth-child(3) {
        height: 420px;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 50px 20px;
        border-radius: 20px;
        margin: 0 16px 50px;
    }

    .cta-banner-title {
        font-size: clamp(20px, 5vw, 30px);
    }

    .cta-banner-sub {
        font-size: 0.95em;
    }

    .cta-banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-store-btn img {
        height: 46px !important;
        width: auto !important;
        margin-left: 0 !important;
    }

    /* Footer */
    .footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding: 0 16px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer h4 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .footer a {
        font-size: 14px;
    }

    /* WhatsApp */
    .whatsapp-floating-btn {
        bottom: 20px;
        right: 16px;
        font-size: 36px;
        padding: 11px;
    }

    /* Button rows wrap */
    .how-steps-cta {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .dl-btn,
    .dl-btn1 {
        padding: 12px 22px;
        font-size: 0.9em;
        width: 100%;
        justify-content: center;
    }
}

/* ── SMALL MOBILE (≤ 480px) ─────────────────────── */
@media (max-width:480px) {
    .header .container {
        padding: 0 14px;
    }

    .logo img {
        height: 34px;
    }

    .logo p {
        display: none;
    }

    .hero {
        padding-bottom: 320px;
    }

    .hero-phones {
        height: 300px;
        max-height: 300px;
    }

    .phone-left {
        max-height: 220px;
    }

    .phone-center {
        max-height: 240px;
    }

    .phone-right {
        max-height: 220px;
    }

    .welcome-phone-img {
        height: 220px;
    }

    .welcome-title {
        font-size: 1.5em;
    }

    .bubble-canvas {
        width: 280px;
        transform: scale(0.52);
        margin-bottom: -140px;
    }

    .counter {
        font-size: 42px;
    }

    .counter-label {
        font-size: 17px;
    }

    .plan-price {
        font-size: 2em;
    }

    .screenshot {
        flex: 0 0 170px;
        height: 360px;
    }

    .cta-banner {
        margin: 0 10px 40px;
        padding: 40px 16px;
    }
}



/* ============== features page css ========================= */
.hero1 {
    position: relative;
    height: 550px;
    background: url('../assets/Header1.png') center top / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Dark overlay — matches Figma's ~91% dark overlay */
.hero-overlay1 {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.88);
}

/* Subtle grid pattern like homepage hero */
.hero1::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

/* Red glow — bottom right, like Figma's family silhouette area */
.hero-glow1 {
    position: absolute;
    right: 5%;
    bottom: -5%;
    width: 50vw;
    height: 50vw;
    max-width: 560px;
    max-height: 560px;
    background: radial-gradient(circle, rgba(224, 62, 26, 0.28) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-content1 {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px;
}

/* Breadcrumb */
.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.82em;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    backdrop-filter: blur(6px);
}

.hero-breadcrumb i {
    color: var(--red);
    font-size: 0.9em;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.hero-breadcrumb a:hover {
    color: var(--red);
}

.hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

/* Title — first line red, second line white */
.hero1 h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero1 h1 .red-line1 {
    color: var(--red);
    display: block;
}

.hero1 h1 .white-line1 {
    color: var(--yellow-bg);
    display: block;
}

.hero1 p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    color: rgba(255, 243, 212, 0.82);
    font-weight: 400;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 32px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-dark);
    color: var(--yellow-bg);
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(239, 64, 54, 0.4);
}

.btn-primary:hover {
    background: transparent;
    border: 1.5px solid var(--red-dark);
    color: var(--red-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--red-dark);
    border: 1px solid var(--red-dark);
    /* color: var(--dark); */
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--red-dark);
    color: var(--yellow-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.emergency-num {
    background: var(--second-yellow-bg);
    border: 1px solid rgba(239, 64, 54, 0.2);
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}

.emergency-num:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(239, 64, 54, 0.3);
}

.enum {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: var(--red-dark);
    line-height: 1;
    transition: color 0.2s;
}

.elabel {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78em;
    color: var(--desc);
    transition: color 0.2s;
}

.emergency-num:hover .enum,
.emergency-num:hover .elabel {
    color: #fff;
}

/* Emergency Broadcasting grid — 3×2 table with dividers */
.broadcast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(239, 64, 54, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 4px;
}

.broadcast-cell {
    font-family: 'Poppins', sans-serif;
    font-size: 1.0rem;
    color: var(--desc);
    line-height: 1.5;
    padding: 14px 16px;
    border-right: 1px solid rgba(239, 64, 54, 0.12);
    border-bottom: 1px solid rgba(239, 64, 54, 0.12);
}

/* Remove right border on last column */
.broadcast-cell:nth-child(3n) {
    border-right: none;
}

/* Remove bottom border on last row */
.broadcast-cell:nth-child(n+4) {
    border-bottom: none;
}

/* Hover highlight per cell */
.broadcast-cell:hover {
    background: rgba(239, 64, 54, 0.05);
    color: var(--head);
}

/* Mobile: collapse to 1 col */
@media (max-width: 768px) {
    .broadcast-grid {
        grid-template-columns: 1fr;
    }

    .broadcast-cell:nth-child(3n) {
        border-right: none;
    }

    .broadcast-cell:nth-child(n+4) {
        border-bottom: 1px solid rgba(239, 64, 54, 0.12);
    }

    .broadcast-cell:last-child {
        border-bottom: none;
    }
}

/* =====================================================
           ABOUT PAGE — STORY SECTION
        ===================================================== */
.about-story {
    background: var(--yellow-bg);
    padding: 100px 0 80px;
}

.about-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

/* LEFT COLUMN */
.story-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Red testimonial / quote card */
.story-quote-card {
    background: var(--red-dark);
    border-radius: 20px;
    padding: 32px 36px 36px;
    position: relative;
}

/* Speech bubble tail */
.story-quote-card::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 48px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid var(--red-dark);
}

.story-quote-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25em;
    color: rgba(255, 243, 212, 0.92);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 18px;
}

.story-stars {
    display: flex;
    gap: 4px;
}

.story-stars i {
    color: #FFD700;
    font-size: 1.1em;
}

/* "The Alerto Promise" badge */
.story-promise {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.promise-logo {
    width: 125px;
    height: 125px;
    /* border-radius: 50%; */
    /* border: 3px solid rgba(239,64,54,0.2); */
    overflow: hidden;
    /* flex-shrink: 0; */
    /* background: var(--yellow-bg); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-logo img {
    width: 118px;
    height: 118px;
    object-fit: contain;
}

.promise-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.55em;
    font-weight: 700;
    color: var(--head);
    margin-bottom: 4px;
}

.promise-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82em;
    color: var(--red-dark);
    font-weight: 500;
}

.promise-verified i {
    font-size: 0.9em;
}

/* RIGHT COLUMN */
.story-right {}

.story-right h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 700;
    color: var(--head);
    line-height: 1.2;
    margin-bottom: 8px;
}

.story-right h2 span {
    color: var(--red-dark);
    display: block;
}

.story-right p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25em;
    color: var(--desc);
    line-height: 1.75;
    margin-bottom: 20px;
}

.story-right p:last-child {
    margin-bottom: 0;
}

/* =====================================================
           MISSION & VISION SECTION
        ===================================================== */
.mission-section {
    background: var(--second-yellow-bg);
    padding: 90px 0 100px;
}

.mission-header {
    text-align: center;
    margin-bottom: 60px;
}

.mission-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 700;
    color: var(--head);
    line-height: 1.2;
    margin-bottom: 12px;
}

.mission-header h2 span {
    color: var(--red-dark);
}

.mission-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25em;
    color: var(--desc);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.65;
}

/* 3-col layout: mission card | center illustration | vision card */
.mission-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: center;
}

/* Mission / Vision card */
.mv-card {
    background: var(--gradient-card);
    border: 1px solid rgba(239, 64, 54, 0.12);
    border-radius: 20px;
    padding: 36px 32px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(239, 64, 54, 0.12);
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--red-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mv-icon i {
    color: #fff;
    width: 40px;
    height: 40px;
}

.mv-card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75em;
    font-weight: 700;
    color: var(--head);
    line-height: 1.2;
}

.mv-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25em;
    color: var(--desc);
    line-height: 1.75;
}

/* Center target illustration */
.mission-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.target-wrap {
    width: 250px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: targetFloat 5s ease-in-out infinite;
}

/* SVG target / bullseye */
.target-svg {
    width: 100%;
    height: 100%;
}

@keyframes targetFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.image-arrow {
    position: absolute;
    top: 4%;
    left: 49%;
    height: 150px;
}

/* =====================================================
           RESPONSIVE
        ===================================================== */
@media (max-width: 1024px) {
    .about-story-inner {
        padding: 0 32px;
        gap: 40px;
    }

    .mission-layout {
        padding: 0 32px;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .about-story {
        padding: 60px 0 60px;
    }

    .about-story-inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 40px;
    }

    .mission-section {
        padding: 60px 0 70px;
    }

    .mission-layout {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 24px;
    }

    .mission-center {
        order: -1;
    }

    .target-wrap {
        width: 160px;
        height: 160px;
    }

    .story-quote-card p {
        font-size: 0.95em;
    }

    .story-right h2 {
        font-size: clamp(24px, 6vw, 36px);
    }
}

@media (max-width: 480px) {
    .about-story-inner {
        padding: 0 16px;
    }

    .mission-layout {
        padding: 0 16px;
    }

    .mv-card {
        padding: 24px 20px;
    }
}


/* =====================================================
           WHY ALERTO EXISTS
        ===================================================== */
.why-section {
    background: var(--yellow-bg);
    padding: 90px 0 80px;
}

.why-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 700;
    color: var(--head);
    line-height: 1.2;
}

.why-header h2 span {
    color: var(--red-dark);
}

.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-card {
    background: var(--second-yellow-bg);
    border: 1px solid rgba(239, 64, 54, 0.1);
    border-radius: 16px;
    padding: 28px 28px 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(239, 64, 54, 0.1);
}

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--red-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon img {
    width: 50px;
    height: 50px;
}

.why-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: var(--desc);
    line-height: 1.7;
    margin: 0;
    padding-top: 8px;
}

/* =====================================================
           LEADERSHIP SECTION
        ===================================================== */
.leadership-section {
    background: var(--second-yellow-bg);
    padding: 90px 0 80px;
}

.leadership-header {
    text-align: center;
    margin-bottom: 12px;
}

.leadership-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 700;
    color: var(--head);
    line-height: 1.2;
    margin-bottom: 24px;
}

.leadership-header h2 span {
    color: var(--red-dark);
}

.leadership-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25em;
    color: var(--desc);
    max-width: 700px;
    margin: 12px auto 50px;
    line-height: 1.65;
}

.leadership-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.leader-card {
    background: var(--red-dark);
    border-radius: 20px;
    padding: 36px 36px 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(239, 64, 54, 0.35);
}

/* subtle circle decoration */
.leader-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.leader-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.leader-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.leader-avatar i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 2em;
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.leader-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.leader-role {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25em;
    color: rgba(255, 243, 212, 0.75);
    font-weight: 400;
}

.leader-bio {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25em;
    color: rgba(255, 243, 212, 0.85);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* =====================================================
           TESTIMONIALS SECTION
        ===================================================== */
.testimonials-section {
    background: var(--yellow-bg);
    padding: 90px 0 80px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 700;
    color: var(--head);
    line-height: 1.2;
}

.testimonials-header h2 span {
    color: var(--red-dark);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--second-yellow-bg);
    border: 1px solid rgba(239, 64, 54, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(239, 64, 54, 0.1);
}

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    color: #F5A623;
    font-size: 0.9em;
}

.testimonial-dots {
    display: flex;
    gap: 4px;
    cursor: pointer;
}

.testimonial-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--desc);
}

.testimonial-reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(239, 64, 54, 0.1);
    border: 2px solid rgba(239, 64, 54, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.reviewer-avatar i {
    color: var(--red-dark);
    font-size: 1.4em;
}

.reviewer-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: var(--head);
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25em;
    color: var(--desc);
    line-height: 1.7;
    flex: 1;
}

/* Responsive for new sections */
@media (max-width:1024px) {
    .why-grid {
        padding: 0 32px;
    }

    .leadership-grid {
        padding: 0 32px;
    }

    .testimonials-grid {
        padding: 0 32px;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:768px) {
    .why-section {
        padding: 60px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .leadership-section {
        padding: 60px 0;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

@media (max-width:480px) {
    .why-grid {
        padding: 0 16px;
    }

    .leadership-grid {
        padding: 0 16px;
    }

    .testimonials-grid {
        padding: 0 16px;
    }
}

/* ===== LEGAL CONTENT AREA ===== */
.legal-container {
    max-width: 1200px;
    margin: 130px auto 80px auto;
    background: var(--gradient-card);
    padding: 10px 40px 40px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.25em;
    font-weight: 700;
    text-align: center;
    margin: 30px 0 10px;
    color: var(--black);
}

.last-updated {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

.legal-container h2 {
    margin-top: 35px;
    color: var(--head);
    border-bottom: 2px solid rgba(224, 62, 26, 0.15);
    padding-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45em;
    font-weight: 700;
}

.legal-container h3 {
    margin-top: 20px;
    color: var(--red);
    font-size: 1.25em;
    font-weight: 700;
}

.legal-container p {
    margin: 10px 0;
    color: #666;
    font-size: 1.25em;
    line-height: 1.75;
}

.legal-container ul {
    margin: 10px 0 10px 20px;
}

.legal-container ul li {
    margin-bottom: 8px;
    color: #666;
    font-size: 1.25em;
    line-height: 1.6;
}

.legal-container strong,
.legal-container b {
    font-weight: 700;
    color: #333;
}


/* ============ Contact us page css ============ */
.container3 {
    max-width: 1200px;
    margin: 80px auto;
}

.contact-main {
    display: grid;
    grid-template-rows: 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-bottom: 90px;
    /* background: var(--gradient-card); */
    /* border-radius: 24px; */
    /* padding: 50px 44px; */
    /* box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08); */
    /* border: 1.5px solid rgba(224, 62, 26, 0.08); */
}

.form-header {
    margin-bottom: 36px;
}

.form-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.25em;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header h2 span {
    color: var(--red);
}

.form-header p {
    color: var(--head);
    font-size: 1.25em;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    display: block;
    font-weight: 700;
    font-size: 1em;
    margin-bottom: 8px;
    color: #333;
}

.form-group label span {
    color: var(--red);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.97em;
    color: var(--black);
    background: var(--gray);
    transition: all 0.3s;
    outline: none;
}

.form-control:focus {
    border-color: var(--red);
    background: var(--gradient-card);
    box-shadow: 0 0 0 4px rgba(224, 62, 26, 0.08);
}

.form-control::placeholder {
    color: #aaa;
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

select.form-control {
    cursor: pointer;
}

.subject-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.chip {
    padding: 8px 18px;
    border-radius: 25px;
    border: 2px solid rgba(224, 62, 26, 0.2);
    color: #666;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--gradient-card);
    font-family: 'Poppins', sans-serif;
}

.chip:hover,
.chip.active {
    background: var(--red);
    color: var(--gradient-card);
    border-color: var(--red);
}

.chip-label {
    display: block;
    font-weight: 700;
    font-size: 0.9em;
    margin-bottom: 10px;
    color: #333;
}

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.05em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(224, 62, 26, 0.35);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(224, 62, 26, 0.45);
}

.submit-btn:active {
    transform: translateY(0);
}

.success-msg {
    display: none;
    text-align: center;
    padding: 50px 30px;
}

.success-msg.show {
    display: block;
    animation: fadeInDown 0.5s ease;
}

.success-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #4caf50, #388e3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.3);
}

.success-icon i {
    font-size: 2.8em;
    color: white;
}

.success-msg h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-msg p {
    color: #666;
    font-size: 1.05em;
    line-height: 1.6;
}

.contact-sidebar {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.sidebar-card {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    border: 1.5px solid rgba(224, 62, 26, 0.07);
}

.sidebar-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card h4 i {
    color: var(--red);
}

.response-list {
    list-style: none;
}

.response-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.2em;
    color: #666;
}

.response-list li:last-child {
    border-bottom: none;
}

.response-list li i {
    color: var(--red);
    width: 20px;
}

.response-list .tag {
    margin-left: auto;
    background: rgba(76, 175, 80, 0.12);
    color: #4caf50;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.82em;
    font-weight: 700;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    background: var(--gray);
    color: #444;
    font-weight: 600;
    font-size: 0.95em;
}

.social-link:hover {
    background: var(--red);
    color: white;
    transform: translateX(4px);
}

.social-link i {
    font-size: 25px;
    width: 24px;
    text-align: center;
}

.social-link .s-label {
    font-size: 0.9em;
    color: inherit;
    opacity: 0.7;
    margin-left: auto;
}

.contact-map {
    display: grid;
    grid-template-rows: 1fr;
}

.rectangle {
    background: var(--red-dark);
    width: 400px;
    height: 740px;
    justify-self: end;
}

.map-rectangle {
    width: 420px;
    height: 600px;
    position: absolute;
    justify-self: center;
    align-self: center;
    right: 11.2%;
}


/* =======================================================
   ALERTO — RESPONSIVE ADDITIONS
   Paste at the END of style.css
   Desktop layout is completely untouched.
   Breakpoints:
     1280px — large laptop
     1024px — tablet landscape / small laptop (already partial)
     768px  — tablet portrait / large phone
     480px  — small phone
     360px  — very small phone
======================================================= */

/* =====================================================
   1280px — large laptop tweaks
===================================================== */
@media (max-width: 1280px) {

    /* Contact page map */
    .map-rectangle {
        width: 380px;
        height: 520px;
        right: 8%;
    }

    .rectangle {
        width: 360px;
        height: 700px;
    }

    /* Leadership / testimonials */
    .leadership-grid {
        padding: 0 32px;
    }

    .testimonials-grid {
        padding: 0 32px;
    }

    .why-grid {
        padding: 0 32px;
    }

    /* Mission layout */
    .mission-layout {
        padding: 0 32px;
    }

    /* About story */
    .about-story-inner {
        padding: 0 32px;
    }
}

/* =====================================================
   1024px — tablet landscape
===================================================== */
@media (max-width: 1024px) {

    /* ── CONTACT PAGE ── */
    .container3 {
        padding: 0 24px;
        margin: 60px auto;
    }

    .contact-form-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-map {
        position: relative;
    }

    .rectangle {
        width: 100%;
        height: 400px;
        justify-self: unset;
    }

    .map-rectangle {
        width: 90%;
        height: 360px;
        position: absolute;
        right: 5%;
        top: 20px;
    }

    .contact-sidebar {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* ── FAQ ──
    .faq-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px 60px;
    }

    .faq-right { order: -1; }

    .faq-blob-wrap { width: 200px; height: 190px; } */

    /* ── SOLUTION CARD4 / CARD5 / CARD6 — collapse to 2-col ── */
    .solution-card4:nth-child(n),
    .solution-card5:nth-child(n),
    .solution-card6:nth-child(n) {
        grid-column: auto !important;
    }

    .solution-grid:has(.solution-card4),
    .solution-grid:has(.solution-card5),
    .solution-grid:has(.solution-card6) {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Force first card (red intro card) to span full width */
    .solution-card4:first-child,
    .solution-card5:first-child,
    .solution-card6:first-child {
        grid-column: 1 / -1 !important;
    }

    /* ── ABOUT / MISSION ── */
    .about-story-inner {
        grid-template-columns: 1fr;
        padding: 0 32px;
        gap: 36px;
    }

    .mission-layout {
        grid-template-columns: 1fr 1fr;
        padding: 0 32px;
    }

    .mission-center {
        display: none;
    }

    /* ── WHY / LEADERSHIP / TESTIMONIALS ── */
    .why-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 32px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        padding: 0 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 32px;
    }

    /* ── LEGAL ── */
    .legal-container {
        margin: 100px 24px 60px;
        padding: 10px 24px 32px;
    }

    .heading {
        font-size: 2.2em;
    }

    /* ── FORM HEADER ── */
    .form-header h2 {
        font-size: 2.4em;
    }
}

/* =====================================================
   768px — tablet portrait / large phone
===================================================== */
@media (max-width: 768px) {

    /* ── HERO (features/sub-pages) ── */
    .hero1 {
        height: auto;
        min-height: 480px;
        padding: 80px 0 60px;
    }

    .hero1 h1 {
        font-size: clamp(26px, 7vw, 44px);
    }

    .hero1 p {
        font-size: 1em;
        padding: 0 16px;
    }

    .hero-content1 {
        padding: 0 20px;
    }

    .hero-buttons1 {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons1 .btn-primary,
    .hero-buttons1 .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* ── CONTACT PAGE ── */
    .container3 {
        padding: 0 16px;
        margin: 40px auto;
    }

    .contact-form-card {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 50px;
    }

    .form-header h2 {
        font-size: 2em;
    }

    .form-header p {
        font-size: 1em;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .subject-chips {
        gap: 8px;
    }

    .chip {
        padding: 7px 14px;
        font-size: 0.82em;
    }

    /* Contact info cards (3-col → 1-col) */
    .contact-info .solution-grid {
        grid-template-columns: 1fr !important;
        padding: 0 16px;
    }

    .contact-info .solution-card:nth-child(n) {
        grid-column: 1 / -1 !important;
        padding: 24px 20px !important;
        text-align: center;
    }

    .contact-info .card-header {
        justify-content: center;
    }

    .contact-sidebar {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sidebar-card {
        padding: 24px 20px;
    }

    .sidebar-card h4 {
        font-size: 1.1em;
    }

    .response-list li {
        font-size: 1em;
    }

    /* Map */
    .contact-map {
        display: block;
        position: relative;
        min-height: 320px;
        margin-top: 24px;
    }

    .rectangle {
        width: 100%;
        height: 280px;
    }

    .map-rectangle {
        width: 92%;
        height: 260px;
        position: absolute;
        right: 4%;
        top: 12px;
    }

    /* ── FAQ SECTION ── */
    /* .faq-section1 { padding: 50px 0; }
    .faq-section {
        grid-template-columns: 1fr;
        padding: 0 16px 50px;
        gap: 32px;
    }
    .faq-right { order: -1; }
    .faq-blob-wrap { width: 160px; height: 150px; margin: 0 auto; }
    .faq-ask-card { padding: 20px; }
    .faq-ask-card h3 { font-size: 1.2em; }

    .faq-list { max-width: 100%; }
    .faq-q { padding: 16px 20px; font-size: 0.95em; }
    .faq-a-inner { padding: 0 20px 18px; font-size: 0.9em; } */

    /* ── FEATURES SECTION ── */
    .features-section {
        padding: 50px 0 20px;
    }

    .features-header {
        padding: 0 16px;
        margin-bottom: 40px;
    }

    .features-header h2 {
        font-size: clamp(22px, 5vw, 36px);
    }

    .features-header p {
        font-size: 1em;
    }

    /* ── SOLUTION GRID OVERRIDES ── */
    .solution-grid {
        grid-template-columns: 1fr !important;
        padding: 0 16px;
        gap: 14px;
    }

    .solution-card:nth-child(n),
    .solution-card1:nth-child(n),
    .solution-card2:nth-child(n),
    .solution-card3:nth-child(n),
    .solution-card4:nth-child(n),
    .solution-card5:nth-child(n),
    .solution-card6:nth-child(n) {
        grid-column: 1 / -1 !important;
    }

    .solution-card,
    .solution-card1,
    .solution-card2,
    .solution-card3,
    .solution-card4,
    .solution-card5,
    .solution-card6 {
        padding: 20px 18px;
    }

    .card-header h3 {
        font-size: 1.1em;
    }

    .card-icon-img {
        width: 28px;
    }

    .solution-card .card-icon,
    .solution-card2 .card-icon,
    .solution-card3 .card-icon,
    .solution-card4 .card-icon,
    .solution-card5 .card-icon,
    .solution-card6 .card-icon {
        width: 54px;
        height: 54px;
    }

    .solution-card p,
    .solution-card4 p,
    .solution-card5 p,
    .solution-card6 p {
        font-size: 0.95rem;
    }

    /* Broadcast grid */
    .broadcast-grid {
        grid-template-columns: 1fr 1fr;
    }

    .broadcast-cell:nth-child(3n) {
        border-right: 1px solid rgba(239, 64, 54, 0.12);
    }

    .broadcast-cell:nth-child(2n) {
        border-right: none;
    }

    .broadcast-cell:nth-child(n+3) {
        border-bottom: 1px solid rgba(239, 64, 54, 0.12);
    }

    .broadcast-cell:last-child,
    .broadcast-cell:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
    }

    /* Emergency grid */
    .emergency-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .enum {
        font-size: 1.1em;
    }

    /* ── ABOUT PAGE ── */
    .about-story {
        padding: 50px 0 40px;
    }

    .about-story-inner {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 32px;
    }

    .story-quote-card p {
        font-size: 1em;
    }

    .story-right h2 {
        font-size: clamp(22px, 6vw, 36px);
    }

    .story-right p {
        font-size: 1em;
    }

    .promise-logo {
        width: 80px;
        height: 80px;
    }

    .promise-logo img {
        width: 70px;
        height: 70px;
    }

    .promise-text h4 {
        font-size: 1.1em;
    }

    /* Mission & Vision */
    .mission-section {
        padding: 50px 0 60px;
    }

    .mission-header h2 {
        font-size: clamp(22px, 5vw, 36px);
    }

    .mission-header p {
        font-size: 1em;
        padding: 0 16px;
    }

    .mission-layout {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 20px;
    }

    .mission-center {
        display: none;
    }

    .mv-card {
        padding: 24px 20px;
    }

    .mv-card-header h3 {
        font-size: 1.2em;
    }

    .mv-card p {
        font-size: 0.95em;
    }

    .mv-icon {
        width: 52px;
        height: 52px;
    }

    /* Why Alerto */
    .why-section {
        padding: 50px 0 40px;
    }

    .why-header {
        padding: 0 16px;
    }

    .why-header h2 {
        font-size: clamp(22px, 5vw, 36px);
    }

    .why-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 14px;
    }

    .why-card {
        padding: 20px 18px;
        gap: 14px;
    }

    .why-icon {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .why-icon img {
        width: 32px;
        height: 32px;
    }

    .why-card p {
        font-size: 0.95em;
        padding-top: 4px;
    }

    /* Leadership */
    .leadership-section {
        padding: 50px 0 40px;
    }

    .leadership-header {
        padding: 0 16px;
    }

    .leadership-header h2 {
        font-size: clamp(22px, 5vw, 36px);
    }

    .leadership-header p {
        font-size: 1em;
        margin: 10px auto 32px;
        padding: 0 16px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 16px;
    }

    .leader-card {
        padding: 24px 20px;
    }

    .leader-name {
        font-size: 1.4em;
    }

    .leader-role {
        font-size: 1em;
    }

    .leader-bio {
        font-size: 1em;
    }

    .leader-avatar {
        width: 72px;
        height: 72px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 50px 0 40px;
    }

    .testimonials-header {
        padding: 0 16px;
    }

    .testimonials-header h2 {
        font-size: clamp(22px, 5vw, 36px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 16px;
    }

    .testimonial-card {
        padding: 20px 18px;
    }

    .reviewer-name {
        font-size: 1.1em;
    }

    .testimonial-text {
        font-size: 1em;
    }

    .reviewer-avatar {
        width: 52px;
        height: 52px;
    }

    /* ── LEGAL PAGES ── */
    .legal-container {
        margin: 80px 16px 40px;
        padding: 10px 16px 24px;
        border-radius: 8px;
    }

    .heading {
        font-size: 1.8em;
    }

    .legal-container h2 {
        font-size: 1.2em;
    }

    .legal-container h3 {
        font-size: 1.1em;
    }

    .legal-container p,
    .legal-container ul li {
        font-size: 1em;
    }

    /* ── LOCATION DECORATIONS ── */
    .location-icon1,
    .location-icon2,
    .location-icon3,
    .location-icon4 {
        display: none;
    }

    /* ── FEATURES DROPDOWN (mobile already in base CSS) ── */

    /* ── CTA section ── */
    .cta-section {
        padding: 36px 16px 0;
        flex-direction: column;
        text-align: center;
        min-height: auto;
        border-radius: 20px;
        margin: 40px 16px;
    }

    .cta-content {
        padding: 0;
        max-width: 100%;
    }

    .cta-content h3 {
        font-size: clamp(20px, 5vw, 32px);
    }

    .cta-content .cta-sub {
        font-size: 1em;
    }

    .cta-image {
        height: 180px;
        margin-top: 16px;
    }

    .cta-image img {
        max-width: 200px;
    }

    /* ── PLANS (contact / feature pages) ── */
    .plans {
        padding: 50px 0 30px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 28px;
        padding: 0 16px;
    }

    .plan-card {
        padding: 24px 18px;
    }

    .plan-price {
        font-size: 2.2em;
    }

    /* ── FOOTER spacing ── */
    .footer-grid {
        padding: 0 16px;
    }

    /* ── WHATSAPP ── */
    .whatsapp-floating-btn {
        bottom: 16px;
        right: 16px;
        font-size: 34px;
        padding: 10px;
    }

    /* ── CHECKBOX on contact form ── */
    .checkbox-group {
        font-size: 0.88em;
    }

    /* ── Submit button ── */
    .submit-btn {
        padding: 14px 20px;
        font-size: 0.95em;
    }

    /* ── Social links ── */
    .social-link {
        padding: 12px 14px;
        font-size: 0.88em;
    }

    .social-link i {
        font-size: 20px;
    }
}

/* =====================================================
   480px — small phone
===================================================== */
@media (max-width: 480px) {

    /* Hero sub-pages */
    .hero1 {
        min-height: 420px;
        padding: 70px 0 50px;
    }

    .hero1 h1 {
        font-size: clamp(22px, 8vw, 34px);
    }

    /* Contact */
    .form-header h2 {
        font-size: 1.6em;
    }

    .form-control {
        padding: 12px 14px;
        font-size: 0.9em;
    }

    .sidebar-card {
        padding: 18px 16px;
    }

    /* Map */
    .map-rectangle {
        width: 94%;
        height: 220px;
        right: 3%;
    }

    .rectangle {
        height: 240px;
    }

    /* Emergency grid → 2x4 */
    .emergency-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .enum {
        font-size: 1em;
    }

    .elabel {
        font-size: 0.7em;
    }

    /* Broadcast */
    .broadcast-grid {
        grid-template-columns: 1fr;
    }

    .broadcast-cell:nth-child(n) {
        border-right: none !important;
        border-bottom: 1px solid rgba(239, 64, 54, 0.12) !important;
    }

    .broadcast-cell:last-child {
        border-bottom: none !important;
    }

    /* About story */
    .story-quote-card {
        padding: 24px 20px 28px;
    }

    .story-promise {
        gap: 12px;
    }

    .promise-text h4 {
        font-size: 1em;
    }

    /* Mission cards */
    .mv-card {
        padding: 20px 16px;
    }

    .mv-card-header h3 {
        font-size: 1.1em;
    }

    /* Why cards */
    .why-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* Leader cards */
    .leader-card {
        padding: 20px 16px;
    }

    .leader-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .leader-name {
        font-size: 1.2em;
    }

    /* Testimonial */
    .testimonial-card {
        padding: 16px 14px;
    }

    /* Legal */
    .legal-container {
        margin: 70px 10px 32px;
        padding: 8px 14px 20px;
    }

    .heading {
        font-size: 1.5em;
    }

    /* Features header */
    .features-header h2 {
        font-size: clamp(20px, 6vw, 32px);
    }

    /* Solution cards padding */
    .solution-card,
    .solution-card4,
    .solution-card5,
    .solution-card6 {
        padding: 16px 14px;
    }

    /* Card icon */
    .solution-card .card-icon,
    .solution-card4 .card-icon,
    .solution-card5 .card-icon,
    .solution-card6 .card-icon {
        width: 46px;
        height: 46px;
    }

    .card-icon-img {
        width: 24px;
    }

    .card-header h3 {
        font-size: 1em;
    }

    /* CTA banner */
    .cta-banner {
        padding: 36px 14px;
        margin: 0 8px 36px;
        border-radius: 16px;
    }

    .cta-banner-title {
        font-size: clamp(18px, 5vw, 28px);
    }

    .cta-banner-sub {
        font-size: 0.88em;
    }

    .cta-store-btn img {
        height: 42px !important;
        width: auto !important;
    }

    /* Plans */
    .plan-price {
        font-size: 1.9em;
    }

    /* FAQ */
    /* .faq-q { padding: 14px 16px; font-size: 0.9em; }
    .faq-a-inner { padding: 0 16px 16px; } */

    /* Footer */
    .footer {
        padding: 32px 0 0;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer h4 {
        font-size: 15px;
    }

    .footer a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 0.8em;
        padding: 18px;
    }

    /* Contact form submit */
    .submit-btn {
        padding: 13px 16px;
        font-size: 0.9em;
    }

    /* Chips */
    .chip {
        padding: 6px 12px;
        font-size: 0.78em;
    }
}

/* =====================================================
   360px — very small phones
===================================================== */
@media (max-width: 360px) {

    body {
        margin-top: 65px;
    }

    .header .container {
        padding: 0 12px;
    }

    .logo img {
        height: 30px;
    }

    .logo p {
        display: none;
    }

    .hero1 {
        min-height: 380px;
        padding: 60px 0 40px;
    }

    .hero1 h1 {
        font-size: 20px;
    }

    .hero1 p {
        font-size: 0.88em;
    }

    .solution-grid {
        padding: 0 10px;
        gap: 12px;
    }

    .solution-card,
    .solution-card4,
    .solution-card5,
    .solution-card6 {
        padding: 14px 12px;
    }

    .card-header {
        gap: 10px;
    }

    .card-header h3 {
        font-size: 0.95em;
    }

    .features-header h2 {
        font-size: 18px;
    }

    .features-header p {
        font-size: 0.88em;
    }

    .cta-banner {
        padding: 28px 12px;
        margin: 0 6px 28px;
    }

    .cta-banner-title {
        font-size: 18px;
    }

    .why-grid {
        padding: 0 10px;
    }

    .leadership-grid {
        padding: 0 10px;
    }

    .testimonials-grid {
        padding: 0 10px;
    }

    .mission-layout {
        padding: 0 10px;
    }

    .about-story-inner {
        padding: 0 10px;
    }

    .legal-container {
        margin: 65px 8px 24px;
        padding: 6px 12px 16px;
    }

    .heading {
        font-size: 1.3em;
    }

    .footer-grid {
        padding: 0 12px;
    }

    .whatsapp-floating-btn {
        bottom: 12px;
        right: 12px;
        font-size: 30px;
        padding: 8px;
    }

    .emergency-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .enum {
        font-size: 0.95em;
    }

    /* .faq-ask-card { padding: 14px 12px; }
    .faq-blob-wrap { width: 130px; height: 120px; } */
}

.faq-section {
    padding: 80px 20px;
    background: var(--second-yellow-bg);
    min-height: auto;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    background: var(--red-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: var(--gradient-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    align-self: start;
}

.faq-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--red-dark);
    box-shadow: 0 8px 24px rgba(240, 64, 65, 0.3);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: var(--gradient-card);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--red-dark);
}

.faq-item.active .faq-question {
    background: var(--red-dark);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-right: 16px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--yellow-bg);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow-bg);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: rgba(255, 255, 255, 0.2);
}

.faq-icon svg {
    color: var(--red-dark);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon svg {
    color: var(--yellow-bg);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer-content {
    padding-top: 8px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

@media (max-width: 968px) {
    .faq-section {
        padding: 60px 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 30px;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-answer.open {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 20px;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .faq-subtitle {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 16px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}


.step-img-wrap1 {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    margin-bottom: 2%;
    margin-top: -10%;
    overflow: hidden;
}

.step-phone-img1 {
    max-height: 290px;
    max-width: 100%;
    object-fit: contain;
    object-position: top;
    display: block;
}

/* ── TRUST RIBBON (NEW) ──────────────────── */
.sc-trust-ribbon {
    background: var(--red-dark);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.sc-trust-ribbon-inner {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: ribbonScroll 20s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.sc-trust-ribbon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88em;
    font-weight: 600;
    color: rgba(255, 243, 212, 0.92);
    flex-shrink: 0;
}

.sc-trust-ribbon-item i {
    color: rgba(255, 243, 212, 0.7);
}

@keyframes ribbonScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@media (max-width:768px) {
    .sc-trust-ribbon-inner {
        animation-duration: 12s;
    }
}

/* ── OTHER PRODUCTS RIBBON ── */
.op-viewport {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    position: relative;
}

.op-viewport::before,
.op-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.op-viewport::before {
    left: 0;
    background: linear-gradient(to right, #232323, transparent);
}

.op-viewport::after {
    right: 0;
    background: linear-gradient(to left, #232323, transparent);
}

.op-viewport.dragging {
    cursor: grabbing;
}

.op-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.op-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 20px 32px;
    min-width: 280px;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    pointer-events: none;
}

.op-viewport:not(.dragging) .op-card {
    pointer-events: auto;
}

.op-card:hover {
    background: rgba(239, 64, 54, 0.06);
    transform: translateY(-3px);
}

.op-prod-logo {
    width: 56px;
    height: 90px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.op-prod-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    font-weight: 700;
    color: #FFF3D3;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
    max-width: 260px;
}

.op-prod-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    color: rgba(255, 243, 212, 0.45);
    text-align: center;
    white-space: normal;
    max-width: 240px;
    line-height: 1.4;
}

.op-prod-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.07);
    align-self: stretch;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .op-card {
        padding: 16px 22px;
        min-width: 160px;
    }

    .op-prod-logo {
        width: 46px;
        height: 46px;
    }

    .op-prod-name {
        font-size: 0.8em;
    }

    .op-prod-tag {
        font-size: 0.65em;
    }
}

/* ── NEW FAQ LAYOUT ── */
.faq-new-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-new-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-new-item {
    background: var(--yellow-bg);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-new-item:hover {
    box-shadow: 0 6px 24px rgba(239, 64, 54, 0.1);
}

.faq-new-item.open {
    border-color: rgba(239, 64, 54, 0.3);
}

.faq-new-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    cursor: pointer;
    gap: 16px;
}

.faq-new-q span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05em;
    font-weight: 600;
    color: var(--head);
    line-height: 1.4;
}

.faq-new-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(239, 64, 54, 0.3);
    background: transparent;
    color: var(--red-dark);
    font-size: 1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-new-item.open .faq-new-btn {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: #fff;
    transform: rotate(45deg);
}

.faq-new-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-new-item.open .faq-new-a {
    max-height: 300px;
    padding: 0 24px 22px;
}

.faq-new-a p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95em;
    color: var(--desc);
    line-height: 1.7;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 16px;
}

/* RIGHT SIDE */
.faq-new-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.faq-blob-wrap {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-blob {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: _floatY 4s ease-in-out infinite;
}

.faq-ask-card {
    background: var(--yellow-bg);
    border: 1.5px solid rgba(239, 64, 54, 0.15);
    border-radius: 16px;
    padding: 28px 24px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-ask-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--head);
    margin-bottom: 8px;
}

.faq-ask-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    color: var(--desc);
    margin-bottom: 16px;
}

.faq-input-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85em;
    font-weight: 600;
    color: var(--head);
    margin-bottom: 8px;
}

.faq-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(239, 64, 54, 0.25);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.faq-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    background: transparent;
    color: var(--head);
}

.faq-input::placeholder {
    color: #bbb;
}

.faq-input-clear {
    background: transparent;
    border: none;
    padding: 0 14px;
    color: #aaa;
    font-size: 1em;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-input-clear:hover {
    color: var(--red-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-new-layout {
        padding: 0 32px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .faq-new-layout {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 32px;
    }
    .faq-new-right {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .faq-blob-wrap {
        width: 160px;
        height: 160px;
    }
    .faq-ask-card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .faq-new-q span { font-size: 0.95em; }
    .faq-new-right { flex-direction: column; }
    .faq-blob-wrap { width: 130px; height: 130px; }
}