/* ============================================================
   ContactSave — style.css
   Color theme inspired by BulkSenderMarketing.com
   ============================================================ */

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

html {
    scroll-behavior: smooth;
}
html,
body {
    overflow-x: hidden !important;
}

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

a {
    text-decoration: none;
}

button {
    cursor: pointer;
}

/* ===== TOKENS ===== */
:root {
    --g50: #f0fdf4;
    --g100: #dcfce7;
    --g200: #bbf7d0;
    --g300: #86efac;
    --g400: #4ade80;
    --g500: #22c55e;
    --g600: #16a34a;
    --g700: #15803d;
    --g800: #166534;
    --g900: #14532d;
    --white: #ffffff;
    --gray50: #f9fafb;
    --gray100: #f3f4f6;
    --gray200: #e5e7eb;
    --gray400: #9ca3af;
    --gray600: #4b5563;
    --gray800: #1f2937;
    --gray900: #111827;
    --text-h: var(--gray900);
    --text-b: var(--gray600);
    --text-m: var(--gray400);
    --bg-page: var(--gray50);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-xs: 0 1px 4px rgba(0, 0, 0, .06);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, .08);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, .10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .13);
    --font: 'Inter', sans-serif;
}

/* ===== BASE ===== */
body {
    font-family: var(--font);
    background: var(--bg-page);
    color: var(--text-b);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--text-h);
    line-height: 1.25;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
}

h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    font-size: .97rem;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

.text-green {
    color: var(--g600);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--g600);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: .95rem;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(22, 163, 74, .35);
    border: none;
}

.btn-primary:hover {
    background: var(--g700);
    box-shadow: 0 6px 22px rgba(22, 163, 74, .45);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: scale(.97);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    color: var(--g700);
    border: 2px solid var(--g600);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: .95rem;
    transition: background .2s, transform .15s;
}

.btn-outline:hover {
    background: var(--g50);
    transform: translateY(-1px);
}

/* ===== SECTION BADGE ===== */
.section-badge {
    display: inline-block;
    background: var(--g100);
    color: var(--g700);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: .3px;
}

.section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-head h2 {
    margin-bottom: 12px;
}

.section-head p {
    color: var(--text-b);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--gray200);
    transition: box-shadow .3s;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-h);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--g600);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    color: var(--gray600);
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--g600);
}

.nav-cta {
    margin-left: 12px;
    padding: 10px 22px;
    font-size: 16px;
}

.margin-button {
    margin-left: 50px !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    margin-left: auto;
    padding: 8px;

}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray800);
    border-radius: 2px;
    transition: transform .3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 80%;
    background: linear-gradient(160deg, #f0fdf4 0%, #dcfce7 45%, #bbf7d0 100%);
    display: flex;
    align-items: center;
    position: relative;

    overflow: hidden;
}



.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 24px;
}

.stat-item:first-child {
    padding-left: 0;
}

.stat-item:last-child {
    padding-right: 0;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--g700);
    line-height: 1;
}

.stat-label {
    font-size: .75rem;
    color: var(--text-m);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: var(--gray200);
    margin: 4px 0;
}


.phone-frame {
    width: 280px;
    background: var(--white);
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .18), 0 0 0 10px rgba(255, 255, 255, .6), 0 0 0 11px var(--g200);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.phone-notch {
    width: 100px;
    height: 22px;
    background: var(--gray900);
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
}

.phone-screen {
    background: #eef5ec;
    min-height: 460px;
    padding: 12px 10px 16px;
}

.app-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 2px 10px;
}

.app-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--white);
    border: none;
    border-radius: 8px;
    padding: 8px 10px;
    box-shadow: var(--shadow-xs);
}

.app-menu-btn span {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--gray800);
    border-radius: 2px;
}

.app-settings-btn {
    background: transparent;
    border: none;
    color: var(--g600);
    display: flex;
    align-items: center;
}

.app-hero-banner {
    background: linear-gradient(135deg, #c9edc4 0%, #d8f0d4 100%);
    border-radius: 18px;
    padding: 16px 14px 14px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, .2);
}

.app-hero-icon {
    width: 44px;
    height: 44px;
    background: var(--g600);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.app-hero-title {
    font-size: .85rem;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 3px;
}

.app-hero-sub {
    font-size: .7rem;
    color: var(--gray600);
    line-height: 1.4;
}

.app-watermark {
    position: absolute;
    right: 12px;
    bottom: 10px;
    font-size: 70px;
    font-weight: 900;
    color: rgba(34, 197, 94, .1);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.app-start-btn {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: var(--g600);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: .8rem;
    font-weight: 700;
}

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

.app-card {
    background: var(--white);
    border-radius: 14px;
    padding: 14px 12px 12px;
    box-shadow: var(--shadow-xs);
}

.app-card--wide {
    grid-column: 1 / -1;
}

.app-card-icon {
    width: 38px;
    height: 38px;
    background: var(--g50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g600);
    margin-bottom: 8px;
}

.app-card-title {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 6px;
}

.app-card-tags {
    display: flex;
    gap: 5px;
}

.app-card-tags span {
    width: 26px;
    height: 26px;
    background: var(--gray100);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}

.phone-shadow {
    width: 200px;
    height: 24px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, .2) 0%, transparent 70%);
    margin-top: -10px;
}



/* ===== ABOUT ===== */
.about-section {
    background: var(--white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 32px;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.point-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.point-icon.green {
    background: var(--g100);
}

.about-point strong {
    display: block;
    font-size: .95rem;
    color: var(--text-h);
    margin-bottom: 4px;
}

.about-point p {
    font-size: .88rem;
    margin: 0;
}

.about-card-stack {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stack-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-h);
    white-space: nowrap;
    border: 1px solid var(--gray200);
}

.stack-icon {
    font-size: 1.4rem;
}

.stack-card--1 {
    top: 20px;
    left: 0;
    z-index: 3;
    transform: rotate(-3deg);
}

.stack-card--2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.stack-card--3 {
    bottom: 20px;
    right: 0;
    z-index: 1;
    transform: rotate(2deg);
}

/* ===== WHY ===== */
.why-section {
    background: var(--g50);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--gray200);
    transition: transform .2s, box-shadow .2s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.why-card h3 {
    margin-bottom: 8px;
}

.why-card p {
    font-size: .9rem;
}

/* ===== HOW IT WORKS ===== */
.how-section {
    background: var(--white);
}

.steps-row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 0 20px;
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--g600);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 16px;
}

.step-item h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.step-item p {
    font-size: .88rem;
}

.step-arrow {
    font-size: 1.8rem;
    color: var(--g400);
    align-self: center;
    padding-bottom: 30px;
    flex-shrink: 0;
}

/* ===== FEATURES ===== */
.features-section {
    background: var(--g50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--gray200);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.feat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--g300);
}

.feat-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feat-card h3 {
    margin-bottom: 10px;
}

.feat-card p {
    font-size: .9rem;
}

/* ===== REVIEWS ===== */
.reviews-section {
    background: var(--white);
    overflow: hidden;
}

.reviews-track-wrap {
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollReviews 28s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    background: var(--g50);
    border: 1px solid var(--gray200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    min-width: 300px;
    max-width: 300px;
    box-shadow: var(--shadow-xs);
}

.review-stars {
    font-size: 1rem;
    margin-bottom: 12px;
}

.review-card p {
    font-size: .88rem;
    color: var(--gray600);
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reviewer strong {
    font-size: .85rem;
    color: var(--text-h);
}

@keyframes scrollReviews {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== PRICING ===== */
.pricing-section {
    background: var(--g50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    box-shadow: var(--shadow-xs);
    border: 2px solid var(--gray200);
    position: relative;
    transition: transform .2s, box-shadow .2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card--popular {
    border-color: var(--g500);
    box-shadow: 0 8px 32px rgba(34, 197, 94, .18);
    transform: scale(1.03);
}

.pricing-card--popular:hover {
    transform: scale(1.03) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--g600);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 100px;
    white-space: nowrap;
}

.plan-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-m);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.plan-old {
    font-size: .9rem;
    color: var(--text-m);
    text-decoration: line-through;
    margin-right: 6px;
}

.plan-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-h);
}

.plan-period {
    font-size: .85rem;
    color: var(--text-m);
}

.plan-price {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.plan-features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-features li {
    font-size: .9rem;
}

.plan-features li.yes {
    color: var(--g700);
}

.plan-features li.no {
    color: var(--text-m);
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: .9rem;
    transition: all .2s;
}

.plan-btn--solid {
    background: var(--g600);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(22, 163, 74, .3);
}

.plan-btn--solid:hover {
    background: var(--g700);
}

.plan-btn--outline {
    border: 2px solid var(--gray200);
    color: var(--text-h);
}

.plan-btn--outline:hover {
    border-color: var(--g400);
    color: var(--g700);
    background: var(--g50);
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--gray200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 18px 20px;
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-h);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background .2s;
}

.faq-q:hover {
    background: var(--g50);
}

.faq-arrow {
    font-size: .7rem;
    color: var(--text-m);
    transition: transform .3s;
    flex-shrink: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: .9rem;
    color: var(--text-b);
    line-height: 1.7;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 20px 18px;
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--g50);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.contact-left h2 {
    margin-bottom: 12px;
}

.contact-left p {
    margin-bottom: 32px;
}

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

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

.contact-method-icon {
    width: 44px;
    height: 44px;
    background: var(--g100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    font-size: .95rem;
    color: var(--text-h);
    margin-bottom: 4px;
}

.contact-method p {
    font-size: .88rem;
    margin: 0;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

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

.form-group label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-h);
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--gray200);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: .9rem;
    color: var(--text-h);
    background: var(--gray50);
    transition: border-color .2s;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--g500);
    background: var(--white);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--gray900);
    color: var(--gray400);
    padding: 70px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-col h4 {
    color: var(--white);
    font-size: .9rem;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--gray400);
    font-size: .88rem;
    margin-bottom: 10px;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--g400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 24px;
    text-align: center;
    font-size: .85rem;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--gray900);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 100px;
    font-size: .88rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity .25s, transform .25s;
    z-index: 9999;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== AOS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

[data-aos].aos-done {
    opacity: 1;
    transform: translateY(0);
}




.hero {
    position: relative;

    overflow: hidden;

    padding-top: 120px;
    padding-bottom: 80px;

    background:
        linear-gradient(160deg,
            #f0fdf4 0%,
            #dcfce7 45%,
            #bbf7d0 100%);
}

/* =========================================================
   BACKGROUND EFFECTS
========================================================= */

.hero-bg-blob {
    position: absolute;

    top: -150px;
    right: -150px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(34, 197, 94, .18) 0%,
            transparent 70%);

    pointer-events: none;
}

.hero-bg-dots {
    position: absolute;

    left: 40px;
    bottom: 60px;

    width: 180px;
    height: 180px;

    background-image:
        radial-gradient(#86efac 1.5px, transparent 1.5px);

    background-size: 18px 18px;

    opacity: .45;
}

/* =========================================================
   MAIN GRID
========================================================= */

.hero-inner {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: #16a34a;

    color: white;

    padding: 8px 18px;

    border-radius: 100px;

    font-size: .82rem;

    font-weight: 700;

    margin-bottom: 24px;
}

.hero-heading {
    font-size: clamp(2.8rem, 5vw, 4.4rem);

    line-height: 1.08;

    font-weight: 800;

    color: #111827;

    margin-bottom: 24px;
}

.text-green {
    display: block;

    color: #16a34a;
}

.hero-sub {
    max-width: 560px;

    font-size: 1.08rem;

    line-height: 1.8;

    color: #4b5563;

    margin-bottom: 36px;
}

/* =========================================================
   BUTTONS
========================================================= */

.hero-cta-row {
    display: flex;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;
}

.playstore-img {
    height: 54px;

    border-radius: 10px;

    transition: transform .2s;
}

.hero-btn:hover .playstore-img {
    transform: translateY(-2px);
}

.hero-feature-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    height: 54px;

    padding: 0 30px;

    border-radius: 16px;

    border: 2px solid #16a34a;

    color: #166534;

    font-weight: 700;

    transition:
        background .2s,
        transform .2s;
}

.hero-feature-btn:hover {
    background: #f0fdf4;

    transform: translateY(-2px);
}

/* =========================================================
   RIGHT SIDE
========================================================= */

.hero-right {
    display: flex;

    justify-content: center;

    position: relative;
}

/* =========================================================
   PHONE WRAPPER
========================================================= */

.phone-wrapper {
    position: relative;
}

/* phone glow */
.phone-wrapper::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle,
            rgba(34, 197, 94, .25) 0%,
            transparent 70%);

    transform: scale(1.2);

    z-index: -1;
}

/* =========================================================
   PHONE IMAGE
========================================================= */

.hero-img {
    width: 100%;

    max-width: 330px;

    height: auto;

    display: block;

    border-radius: 32px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .18);

    transition:
        transform .3s ease;
}

.hero-img:hover {
    transform: translateY(-6px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {

    .hero-inner {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 50px;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-row {
        justify-content: center;
    }

    .hero-right {
        order: 2;
        /* # image niche aayegi */
    }

    .hero-left {
        order: 1;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--gray200);
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

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



    .hamburger {
        display: flex;
    }



    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img {
        display: none;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .steps-row {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        padding: 0;
        margin: 8px 0;
    }
    .contact-inner {

        grid-template-columns: 1fr;

        gap: 40px;
    }

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

    .contact-info {
        align-items: center;
    }

    .contact-method {
        width: 100%;

        max-width: 500px;
    }

    .contact-right {
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }

}

@media (max-width: 768px) {

    .hero {
        padding-top: 95px;
        padding-bottom: 60px;
    }

    .hero-inner {
        gap: 36px;
    }

    .hero-heading {
        font-size: 2.5rem;

        line-height: 1.15;

        text-align: left;
    }

    .hero-sub {
        font-size: 1rem;

        line-height: 1.7;
    }

    .hero-img {
        max-width: 260px;
    }

    .playstore-img {
        height: 48px;
    }

    .hero-feature-btn {
        width: 100%;

        max-width: 260px;
    }

    .contact-form {
        padding: 26px 20px;
    }

    .contact-title {
        font-size: 1.7rem;

        text-align: center;
    }

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

    .contact-box {
        padding: 16px;
    }

    .contact-box-icon {
        width: 52px;
        height: 52px;

        font-size: 1.3rem;
    }

    .contact-box-content strong {
        font-size: .95rem;
    }

    .contact-box-content span {
        font-size: .85rem;
    }

    .section {
        padding: 60px 0;
    }


    .phone-frame {
        width: 240px;
    }

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

    .pricing-card--popular {
        transform: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .logo-text {
        display: none;
    }

    .hero-badge {
        margin-top: 30px;
        margin-right: 109px ! important;
        margin-bottom: 18px;
    }

    .btn-primary {

        font-weight: 600;
        font-size: .70rem;

    }
    .contact-section {
        overflow: hidden;
    }

    .contact-inner {
        gap: 30px;
    }

    .contact-form {
        padding: 22px 18px;
    }

    .contact-box {
        width: 100%;

        padding: 16px;

        gap: 14px;
    }

    .contact-box-icon {
        width: 50px;
        height: 50px;

        font-size: 1.2rem;
    }

    .contact-box-content strong {
        font-size: .95rem;
    }

    .contact-box-content span {
        font-size: .84rem;

        word-break: break-word;
    }

    .contact-method {
        flex-direction: column;

        text-align: center;

        align-items: center;
    }

    .contact-method-icon {
        margin-bottom: 10px;
    }

}

@media (max-width: 480px) {

    .hero-heading {
        font-size: 2.1rem;
    }

    .hero-cta-row {
        flex-direction: column;
    }

    .hero-img {
        max-width: 230px;
    }

    .hero-sub br {
        display: none;
    }

    .contact-box {
        flex-direction: row;

        align-items: center;

        gap: 14px;
    }

    .contact-title {
        font-size: 1.5rem;
    }
}

/* =========================================
   CONTACT BOX SECTION
========================================= */

.contact-form {
    background: #ffffff;

    border-radius: 28px;

    padding: 36px 30px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .08);

    border: 1px solid #e5e7eb;

    display: flex;

    flex-direction: column;

    gap: 18px;
}

/* =========================================
   HEADING
========================================= */

.contact-title {
    font-size: 2rem;

    font-weight: 800;

    color: #111827;

    margin-bottom: 8px;
}

.contact-text {
    color: #6b7280;

    font-size: 1rem;

    line-height: 1.7;

    margin-bottom: 10px;
}

/* =========================================
   CONTACT BOX
========================================= */

.contact-box {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px 20px;

    background: #f9fafb;

    border-radius: 18px;

    border: 1px solid #e5e7eb;

    transition:
        transform .2s,
        border-color .2s,
        background .2s;

    text-decoration: none;
}

.contact-box:hover {
    transform: translateY(-3px);

    border-color: #22c55e;

    background: #f0fdf4;
}

/* =========================================
   ICON
========================================= */

.contact-box-icon {
    width: 58px;

    height: 58px;

    border-radius: 16px;

    background: #dcfce7;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.5rem;

    flex-shrink: 0;
}

/* =========================================
   CONTENT
========================================= */

.contact-box-content {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.contact-box-content strong {
    color: #111827;

    font-size: 1rem;

    font-weight: 700;
}

.contact-box-content span {
    color: #6b7280;

    font-size: .92rem;

    line-height: 1.5;
}