/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f3ff;
    color: #222;
}

img {
    max-width: 100%;
    height: auto;
}

/* ================= GLOBAL ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.btn-primary {
    background: linear-gradient(135deg, #8b6cff, #6a5cff);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-outline {
    border: 2px solid #8b6cff;
    color: #8b6cff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
}

/* ================= HEADER ================= */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo img {
    height: 36px;
}

/* Desktop Nav */
nav {
    display: flex;
    gap: 22px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.desktop-demo {
    display: inline-block;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #6a5cff;
    border-radius: 3px;
    transition: 0.3s;
}


.mobile-demo {
    display: none;
}
/* ================= HERO ================= */
.hero {
    padding: 80px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    background: #ebe8ff;
    color: #6a5cff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 18px;
}

.hero-text span {
    color: #6a5cff;
}

.hero-text p {
    color: #555;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(106,92,255,0.25);
}

/* ================= FEATURES ================= */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-card i {
    font-size: 34px;
    color: #6a5cff;
    margin-bottom: 15px;
}

/* ================= FOOTER ================= */
.footer {
    background: #fff;
    text-align: center;
    padding: 22px;
    font-size: 13px;
    color: #777;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

    /* Hamburger */
    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        display: none;
    }

    nav.active {
        display: flex;
    }

    .desktop-demo {
        display: none;
    }

    .mobile-demo {
        padding: 8px 18px;
        font-size: 14px;
        display: inline-block;
        
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= FEATURE SECTION ================= */
.kootaan-feature {
    background: #f3f2ff;
    padding: 90px 0;
}

.feature-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #f6f5ff;
    border-radius: 30px;
    padding: 70px;
}

.feature-badge {
    display: inline-block;
    background: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: #6a5cff;
    margin-bottom: 18px;
}

.feature-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.feature-content span {
    color: #6a5cff;
}

.feature-content p {
    color: #555;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #333;
}

.feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #6a5cff;
    font-weight: bold;
}

/* ================= VISUAL UI ================= */
.feature-visual {
    position: relative;
}

.ui-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(106,92,255,0.25);
}

.ui-card h4 {
    margin-bottom: 20px;
}

.gauge {
    width: 160px;
    height: 80px;
    border-radius: 160px 160px 0 0;
    background: #eee;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}

.gauge-fill {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #8b6cff, #6a5cff);
    clip-path: inset(0 0 0 0);
}

.score {
    font-size: 14px;
    color: #444;
}

.status-card {
    background: #fff;
    padding: 18px 22px;
    border-radius: 14px;
    position: absolute;
    bottom: -30px;
    right: -20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.status-card .dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .feature-wrap {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }

    .feature-visual {
        margin-top: 40px;
    }

    .status-card {
        position: static;
        margin-top: 20px;
    }
}


/* ================= SCREENSHOT FEATURE ================= */

.screenshot-card {
    background: #fff;
    padding: 16px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(106,92,255,0.25);
    max-width: 480px;
}

.screenshot-card img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

/* Floating Status */
.status-card {
    background: #fff;
    padding: 14px 20px;
    border-radius: 999px;
    position: absolute;
    bottom: -22px;
    right: -18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    font-size: 14px;
    font-weight: 500;
}

.status-card .dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
}

/* Responsive Fix */
@media (max-width: 900px) {
    .feature-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .status-card {
        position: static;
        margin-top: 16px;
    }
}




/* ================= ANALYTICS FEATURE ================= */

.kootaan-analytics {
    padding: 100px 0;
    background: #ffffff;
}

.analytics-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT SIDE */
.analytics-visual {
    position: relative;
}

.metric-pill {
    background: linear-gradient(135deg, #8b6cff, #6a5cff);
    color: #fff;
    padding: 16px 22px;
    border-radius: 18px;
    width: fit-content;
    box-shadow: 0 20px 40px rgba(106,92,255,0.35);
    position: absolute;
    top: -30px;
    right: 30px;
}

.metric-pill span {
    font-size: 13px;
    opacity: 0.9;
    display: block;
}

.metric-pill strong {
    font-size: 24px;
    display: block;
}

.metric-pill em {
    font-size: 12px;
    opacity: 0.85;
}

.analytics-card {
    background: #fff;
    padding: 30px;
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.analytics-card h4 {
    margin-bottom: 25px;
}

/* Fake chart */
.chart-placeholder {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    height: 180px;
    margin-bottom: 15px;
}

.chart-placeholder .bar {
    width: 36px;
    border-radius: 10px;
    background: #e6e4ff;
}

.bar.low { height: 40px; }
.bar.mid { height: 80px; }
.bar.high { height: 120px; }
.bar.highest { height: 150px; background: #6a5cff; }

.chart-note {
    font-size: 13px;
    color: #666;
}

/* RIGHT SIDE */
.analytics-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.analytics-content span {
    color: #6a5cff;
}

.analytics-content p {
    color: #555;
    margin-bottom: 35px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.mini-feature i {
    font-size: 22px;
    color: #6a5cff;
    margin-bottom: 10px;
}

.mini-feature h4 {
    margin-bottom: 6px;
}

.mini-feature p {
    font-size: 14px;
    color: #666;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .analytics-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .metric-pill {
        position: static;
        margin: 0 auto 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .chart-placeholder {
        justify-content: center;
    }
}



/* ================= DATA MIGRATION & ONBOARDING (KOOTAAN) ================= */

.kootaan-onboarding2 {
  padding: 110px 0;
  background: #ffffff;
}

.onboarding2-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.onboarding2-content h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 18px 0 18px;
}

.onboarding2-content h2 span {
  color: #6a5cff;
}

.onboarding2-content p {
  color: #555;
  max-width: 560px;
  margin-bottom: 22px;
}

.onboarding2-points {
  list-style: none;
  margin-bottom: 30px;
}

.onboarding2-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #333;
}

.onboarding2-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #6a5cff;
  font-weight: 700;
}

/* RIGHT BOARD */
.onboarding2-visual {
  display: flex;
  justify-content: center;
}

.onboarding2-board {
  background: #f6f5ff;
  border: 1px solid rgba(106, 92, 255, 0.20);
  padding: 46px;
  border-radius: 30px;
  position: relative;
  width: 100%;
  max-width: 520px;
}

/* IMPORT CARD */
.import-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.import-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.import-head h4 {
  font-size: 18px;
}

.tag-pill {
  background: #efeefe;
  color: #6a5cff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.import-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
}

.import-row:last-of-type {
  border-bottom: none;
}

.import-row .label {
  color: #777;
  font-size: 13px;
}

.import-row .value {
  color: #333;
  font-size: 13px;
  font-weight: 500;
  text-align: right;
}

.progress-wrap {
  margin-top: 18px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.progress-bar {
  height: 10px;
  background: #ecebff;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  width: 92%;
  height: 100%;
  background: linear-gradient(135deg, #8b6cff, #6a5cff);
  border-radius: 999px;
}

.import-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn-mini {
  border: none;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
}

.btn-mini-solid {
  background: linear-gradient(135deg, #8b6cff, #6a5cff);
  color: #fff;
}

.btn-mini-ghost {
  background: #f3f2ff;
  color: #6a5cff;
}

/* CHECKLIST CARD (FLOATING) */
.checklist-card {
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.check-title {
  font-weight: 700;
  margin-bottom: 12px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid #f2f2f2;
  color: #444;
  font-size: 14px;
}

.check-item:first-of-type {
  border-top: none;
}

.check-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cfcaff;
}

.check-item.done .check-dot {
  background: #6a5cff;
}

.check-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f2f2f2;
  font-size: 13px;
  color: #555;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .onboarding2-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .onboarding2-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .onboarding2-board {
    padding: 32px;
  }

  .checklist-card {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .import-row .value {
    text-align: left;
  }

  .import-actions {
    justify-content: center;
  }
}



/* ================= FOOTER ================= */

.kootaan-footer {
    background: #0f0f1a;
    color: #cfcfe6;
    margin-top: 120px;
}

.footer-wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 80px 0 60px;
}

/* Brand */
.footer-brand img {
    height: 38px;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 360px;
    color: #b8b8d6;
}

/* Columns */
.footer-col h4 {
    font-size: 15px;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-col a {
    display: block;
    color: #b8b8d6;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.25s;
}

.footer-col a:hover {
    color: #8b6cff;
    transform: translateX(4px);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
}

.footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #9b9bc7;
}

.footer-links a {
    color: #9b9bc7;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.25s;
}

.footer-links a:hover {
    color: #8b6cff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

    .footer-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 60px 0 40px;
    }

    .footer-bottom-wrap {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 520px) {

    .footer-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-col a:hover {
        transform: none;
    }
}



/* ================= FAQ SECTION ================= */

.kootaan-faq {
    padding: 110px 0;
    background: #f4f3ff;
}

.faq-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.faq-badge {
    display: inline-block;
    background: #ffffff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    color: #6a5cff;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.kootaan-faq h2 {
    font-size: 40px;
    margin-bottom: 12px;
}

.kootaan-faq h2 span {
    color: #6a5cff;
}

.faq-subtitle {
    color: #555;
    margin-bottom: 50px;
}

/* FAQ Items */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    color: #222;
}

.faq-question .icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #6a5cff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 26px 22px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 600px) {
    .kootaan-faq h2 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }
}




/* ================= ABOUT PAGE ================= */

.about-hero {
    padding: 120px 0 90px;
    background: #f4f3ff;
    text-align: center;
}

.page-badge {
    display: inline-block;
    background: #ffffff;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 13px;
    color: #6a5cff;
    margin-bottom: 18px;
}

.about-hero h1 {
    font-size: 46px;
    line-height: 1.25;
    margin-bottom: 18px;
}

.about-hero h1 span {
    color: #6a5cff;
}

.about-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: #555;
}

/* Sections */
.about-section {
    padding: 100px 0;
}

.soft-bg {
    background: #f8f7ff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-grid.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.about-content p {
    color: #555;
    margin-bottom: 14px;
}

/* Cards */
.about-card,
.about-highlight {
    background: #ffffff;
    padding: 32px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.about-card ul {
    list-style: none;
}

.about-card li {
    padding-left: 22px;
    margin-bottom: 12px;
    position: relative;
}

.about-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #6a5cff;
}

/* Companies */
.company-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.company-item h4 {
    margin-bottom: 6px;
    color: #6a5cff;
}

/* Mission */
.about-center {
    text-align: center;
}

.about-center p {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mission-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* CTA */
.about-cta {
    background: linear-gradient(135deg, #8b6cff, #6a5cff);
    color: #ffffff;
    padding: 90px 0;
    text-align: center;
}

.about-cta p {
    opacity: 0.9;
    margin: 12px 0 26px;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid,
    .about-grid.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 34px;
    }
}

/* ================= FEATURES PAGE ================= */

.features-hero {
    background: #f4f3ff;
    padding: 120px 0 80px;
    text-align: center;
}

.features-hero h1 {
    font-size: 48px;
    line-height: 1.25;
    margin-bottom: 18px;
}

.features-hero h1 span {
    color: #6a5cff;
}

.features-hero p {
    max-width: 720px;
    margin: 0 auto 34px;
    color: #555;
    font-size: 16px;
}

.features-hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Screenshot Section */
.features-screenshot {
    background: #f4f3ff;
    padding-bottom: 100px;
}

.screenshot-wrap {
    background: #ffffff;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.10);
}

.screenshot-wrap img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* Feature Listing */
.features-listing {
    padding: 110px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.feature-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-item p {
    color: #555;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .features-hero h1 {
        font-size: 34px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}



/* ================= WHY CHOOSE KOOTAAN ================= */

.why-kootaan {
    padding: 110px 0;
    background: #ffffff;
    text-align: center;
}

.why-wrap h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.why-wrap h2 span {
    color: #6a5cff;
}

.why-subtitle {
    max-width: 720px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 16px;
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.why-card {
    background: #f4f3ff;
    padding: 36px 28px;
    border-radius: 26px;
    text-align: left;
    transition: 0.35s ease;
    border: 1px solid rgba(106,92,255,0.15);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(106,92,255,0.25);
}

/* Icon */
.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    color: #555;
    font-size: 14.5px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1000px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-wrap h2 {
        font-size: 32px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        text-align: center;
    }

    .why-icon {
        margin-left: auto;
        margin-right: auto;
    }
}


/* ================= FEATURE SPLIT SECTION ================= */

.kootaan-feature-split {
    padding: 110px 0;
    background: #ffffff;
}

.feature-split-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

/* Left */
.feature-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.feature-text h2 span {
    color: #6a5cff;
}

.feature-text p {
    color: #555;
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.7;
}

/* Right */
.feature-visual {
    display: flex;
    justify-content: center;
}

.feature-image-wrap {
    background: #f4f3ff;
    border-radius: 28px;
    padding: 22px;
    border: 1px solid rgba(106,92,255,0.25);
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
    max-width: 520px;
    width: 100%;
}

.feature-image-wrap img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .feature-split-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-image-wrap {
        margin-top: 40px;
    }
}


/* ================= FEATURE BOX SECTION ================= */

.kootaan-feature-box {
    padding: 120px 0;
    background: #ffffff;
}

.feature-box-wrap {
    background: #f4f3ff;
    border-radius: 40px;
    padding: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT */
.feature-box-visual {
    position: relative;
}

.feature-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.10);
}

.feature-card img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

.feature-card.small {
    position: absolute;
    bottom: -40px;
    left: 60px;
    width: 75%;
}

/* RIGHT */
.feature-box-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 26px;
}

.feature-box-content h2 span {
    color: #6a5cff;
}

.feature-points {
    list-style: none;
    margin-bottom: 34px;
}

.feature-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    color: #333;
    line-height: 1.6;
}

.feature-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #6a5cff;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
    .feature-box-wrap {
        grid-template-columns: 1fr;
        padding: 50px 30px;
        text-align: center;
    }

    .feature-box-content h2 {
        font-size: 32px;
    }

    .feature-card.small {
        position: static;
        width: 100%;
        margin-top: 24px;
    }

    .feature-points li {
        padding-left: 0;
    }

    .feature-points li::before {
        display: none;
    }
}

/* ================= URGENCY CTA ================= */

.kootaan-urgency {
    padding: 120px 0;
    background: linear-gradient(135deg, #6a5cff, #8b6cff);
    color: #ffffff;
}

.urgency-wrap {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}

/* Left */
.urgency-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 16px;
}

.urgency-content h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.urgency-content h2 span {
    color: #ffe76a;
}

.urgency-content p {
    opacity: 0.95;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 34px;
}

/* Actions */
.urgency-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.urgency-note {
    font-size: 13px;
    opacity: 0.9;
}

/* Right Highlight Card */
.urgency-highlight {
    display: flex;
    justify-content: center;
}

.highlight-card {
    background: #ffffff;
    color: #222;
    padding: 34px;
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    width: 100%;
    max-width: 380px;
}

.highlight-card h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.highlight-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.highlight-card li {
    margin-bottom: 10px;
    font-size: 14.5px;
}

/* Footer Pulse */
.highlight-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6a5cff;
    font-weight: 600;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 1.4s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Responsive */
@media (max-width: 900px) {
    .urgency-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .urgency-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .urgency-highlight {
        margin-top: 40px;
    }
}


/* ================= CONTACT PAGE ================= */

.contact-hero {
    background: #f4f3ff;
    padding: 120px 0 90px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.contact-hero h1 span {
    color: #6a5cff;
}

.contact-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: #555;
}

/* Content */
.contact-section {
    padding: 110px 0;
    background: #ffffff;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: flex-start;
}

/* Info */
.contact-info h3 {
    margin-bottom: 12px;
}

.contact-info p {
    color: #555;
    margin-bottom: 24px;
}

.info-card {
    background: #f4f3ff;
    padding: 18px 22px;
    border-radius: 18px;
    margin-bottom: 16px;
}

.info-card strong {
    display: block;
    margin-bottom: 4px;
}

/* Form */
.contact-form-wrap {
    background: #ffffff;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.contact-form-wrap h3 {
    margin-bottom: 22px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6a5cff;
}

/* CTA */
.contact-cta {
    background: linear-gradient(135deg, #6a5cff, #8b6cff);
    color: #ffffff;
    padding: 90px 0;
    text-align: center;
}

.contact-cta p {
    opacity: 0.9;
    margin: 10px 0 24px;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 30px;
    }

    .contact-hero h1 {
        font-size: 34px;
    }
}


/* Accounts & Analytics Screenshot */
.onboarding2-screenshot {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  display: block;
}


/* ================= KOOTAAN DARK SECTION ================= */

.kootaan-dark-section {
  background: linear-gradient(135deg, #031b3a, #042a5c);
  padding: 100px 0;
  color: #ffffff;
}

.dark-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* Left */
.dark-left h2 {
  font-size: 42px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.dark-left h2 span {
  display: block;
  margin-top: 6px;
}

.dark-left p {
  max-width: 520px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

/* Right */
.dark-right {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.dark-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dark-icon {
  width: 46px;
  height: 46px;
  background: #ffffff;
  color: #6a5cff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.dark-feature h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.dark-feature p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .dark-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dark-left p {
    margin: 0 auto;
  }

  .dark-feature {
    justify-content: center;
    text-align: left;
  }
}


/* ================= MOBILE APP SECTION ================= */

.kootaan-mobile {
  padding: 120px 0;
  background: #c8c7f4;
}

.mobile-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* Left */
.mobile-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.mobile-content h2 span {
  color: #6a5cff;
}

.mobile-content p {
  max-width: 520px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Right */
.mobile-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-circle {
  position: absolute;
  width: 360px;
  height: 360px;
  background: rgba(106, 92, 255, 0.15);
  border-radius: 50%;
  z-index: 1;
}

.mobile-screen {
  width: 220px;
  z-index: 2;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.screen-front {
  position: relative;
}

.screen-back {
  position: absolute;
  right: 20px;
  top: 30px;
  transform: scale(0.95);
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 900px) {
  .mobile-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mobile-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .mobile-visual {
    margin-top: 50px;
  }
}


/* ================= DEMO MODAL ================= */

.demo-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.demo-modal.active {
  display: block;
}

/* Backdrop */
.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
}

.demo-modal-box {
  position: relative;
  max-width: 720px;
  margin: 5vh auto;

  background: #ffffff;
  border-radius: 26px;

  /* 👇 reduced padding */
  padding: 26px 30px 28px;

  box-shadow: 0 40px 100px rgba(0,0,0,0.25);
}



/* Two-column form layout */
.demo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

/* Full width row */
.demo-form-grid .full {
  grid-column: 1 / -1;
}



@keyframes modalPop {
  from {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

/* Close */
.demo-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* Text */
.modal-badge {
  display: inline-block;
  background: #f4f3ff;
  color: #6a5cff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 14px;
}

.demo-modal-box h2 {
  font-size: 30px;
  margin-bottom: 8px;
}

.demo-modal-box h2 span {
  color: #6a5cff;
}

.modal-desc {
  color: #555;
  margin-bottom: 22px;
}

/* Form */
.demo-form .form-row {
  margin-bottom: 14px;
}

.demo-form label {
  display: block;
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-family: inherit;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: #6a5cff;
}

/* Footer note */
.modal-note {
  margin-top: 14px;
  font-size: 12px;
  color: #777;
  text-align: center;
}

/* Mobile */
@media (max-width: 520px) {
  .demo-modal-box {
    margin: 5vh 16px;
    padding: 30px 24px;
  }
}



/* Step form */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step label {
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}

.form-step input,
.form-step select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  margin-bottom: 18px;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}


/* ================= WHATSAPP FLOAT BUTTON ================= */

.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float i {
  color: #ffffff;
  font-size: 28px;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

/* Mobile */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-float i {
    font-size: 26px;
  }
}
