/* ===== Design System (replicating provided mockups) ===== */
:root {
    --bg-page: #ffffff;
    --bg-section: #fcfcfc;
    --bg-card: #ffffff;
    --bg-card-soft: #f0f5ff;
    --bg-contact: #123a80;
    --bg-contact-dark: #0b2b63;
    --accent-teal: #1cd6c9;
    --accent-teal-soft: #c7fbf7;
    --accent-teal-mid: #5be6d8;
    --accent-blue-soft: #e1ebff;
    --accent-blue-border: #dde5f7;
    --accent-pill: #12b4c91c;
    --text-main: #0b2346;
    --text-muted: #747f97;
    --header-height: 72px;
    --radius-card-lg: 24px;
    --radius-card-md: 18px;
    --radius-pill: 999px;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    user-select: none;
    -webkit-user-select: none; /* For Safari */
    -moz-user-select: none;    /* For Firefox */
    -ms-user-select: none;
}
:root::-webkit-scrollbar {
    height: 0;
    width: 0;
}
.logo h1{
    display: none;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    min-height: 100%;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-page);
}

/* Generic layout */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px;
}

.container .title 
a:link,
a:visited,
a:hover,
a:active {
    color: var(--text-main); 
}

section {
    padding: 5rem 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ===== Header (white sticky bar like mockup) ===== */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: radial-gradient(circle at top left, #ffffff 0, #f4f7ff 45%, #eef3ff 100%);
    height: var(--header-height);
}

.sticky-header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.logo {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    font-size: 0.95rem;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

nav a:hover {
    color: var(--text-main);
    border-color: var(--accent-teal);
}

.container > .cta-button {
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-pill);
    color: #ffffff;
    background: linear-gradient(135deg, #1954b9, #0f327b);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.15s ease, filter 0.15s ease;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    color: #ffffff;
    background: linear-gradient(135deg, #0f327b, #1954b9);
}

/* ===== Hero ===== */
.hero {
    background: radial-gradient(circle at top left, #ffffff 0, #f4f7ff 45%, #eef3ff 100%);
    padding: 5rem 0 4.5rem;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1.1;
}

.hero-text h1 {
    font-size: clamp(2.6rem, 3.4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    font-family: familySignifer;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-main);
    max-width: 34rem;
    margin-bottom: 1.75rem;
}

.hero-text ul {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.hero-text li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.25rem;
    color: var(--text-main);
}

.hero-text li::before {
    content: "";
    flex-shrink: 0;
}

.input-chat-text {
    user-select: none;
    -webkit-user-select: none; /* For Safari */
    -moz-user-select: none;    /* For Firefox */
    -ms-user-select: none;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
}
.hero-buttons > .btn-primary {
    color: #ffffff;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.18s ease;
}

.btn-primary {
    background-color: var(--bg-contact);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--bg-contact-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--text-main);
    border: 1px solid var(--accent-blue-border);
    gap: 0.4rem;
}

.btn-secondary::before {
    content: "▶";
    font-size: 0.7rem;
    transform: scale(0.85);
}

.btn-secondary:hover {
    background-color: #f5f8ff;
}

/* Hero dashboard mockup (dark) */
.hero-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
}

.dashboard-mockup {
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    background: radial-gradient(circle at top left, #ffffff 0, #ffffff 55%, #ffffff 100%);
    padding: 0.5rem 0.5rem 0.5rem;
    display: grid;
    grid-template-columns: 78px 1fr;
    border: 1.5px solid rgb(151, 151, 151);
    column-gap: 0.6rem;
    color: #e9f2ff;
    position: relative;
}

.sidebar {
    max-width: 90px;
    border-radius: 9px;
    background: linear-gradient(180deg, #114c83, #033463);
    font-weight: 750;
    padding: 0.9rem 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.68rem;
}

.sidebar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    border-radius: 999px;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid transparent;
    transition: all 0.18s ease;
    user-select: none;
    -webkit-user-select: none; /* For Safari */
    -moz-user-select: none;    /* For Firefox */
    -ms-user-select: none;
}

.sidebar-item.active {
    color: #114c83;
    font-weight: 750;
    background: linear-gradient(135deg, rgb(255, 255, 255), rgb(255, 255, 255));
    
}

.sidebar-item:hover:not(.active) {
    background-color: rgba(138, 138, 138, 0.2);
    color: #ffffff;
}

.main-content {
    border-radius: 13px;
    /* border: 1px solid rgb(20, 77, 55); */
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* chat interface */
.chat-interface {
    flex: 1;
    border-radius: 8px;
    background: radial-gradient(circle at top left, #f0ece5 0, #f0ece5 70%);
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.chat-profile {
    flex: 1;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 12fr 2fr;
    padding: 0rem 0rem;
    max-height: 50px;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.chat-pic {
    grid-row: 1;
    grid-column: 1;
    width: 36px; height: 36px; 
    border-radius: 50%; 
    border: 2px solid #ffffff;
    background-color: #6d6d6d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-name {
    grid-row: 1;
    grid-column: 2;
    font-size: 1.25rem;
    color: #383838;
}

.chat-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    overflow: hidden;
    font-size: 0.75rem;
}

.message {
    max-width: 78%;
    margin-right: auto;
    padding: 0.45rem 0.7rem;
    border-radius: 1rem;
    background: #ffffff;
    color: #313131;
    user-select: none;
    -webkit-user-select: none; /* For Safari */
    -moz-user-select: none;    /* For Firefox */
    -ms-user-select: none;
}

.message.file:hover {
    background: linear-gradient(135deg, rgb(255, 255, 255), rgb(218, 218, 218));
    cursor: pointer;
}

.message.user {
    margin-left: auto;
    margin-right: 0px;
    background: linear-gradient(135deg, rgb(217, 253, 211), rgb(217, 253, 211));
    color: #03202a;
}
.message.user.n8n {
    margin-left: auto;
    margin-right: 0px;
    background: linear-gradient(135deg, rgb(217, 253, 211), rgb(217, 253, 211));
    cursor: pointer;
    /* background: linear-gradient(to left, rgb(217, 253, 211) 0%, rgb(217, 253, 211) 9%, rgb(207, 64, 119) 10%, rgb(217, 253, 211) 11%, rgb(217, 253, 211) 100%);
    background-size: 200% 100%;
    animation: shine 2s linear infinite; */
}

@keyframes shine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.loading-text {
  position: relative;
  display: inline-block;
  background: linear-gradient(
    90deg,
    #303030 0%,
    #6e6e6eb6 25%,
    rgb(235, 235, 235) 30%,
    #6e6e6eb6 35%,
    #303030 100%
  );
  background-size: 200% 100%;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  animation: loadingColor 1.25s infinite linear;
}
@keyframes loadingColor {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}


.chat-interface input {
    margin-top: auto;
    border-radius: 999px;
    border: 1px solid rgba(152, 172, 214, 0.6);
    background: rgba(255, 255, 255, 0.9);
    color: #f7fbff;
    font-size: 0.75rem;
    padding: 0.45rem 0.8rem;
    outline: none;
}

.chat-interface input::placeholder {
    color: #6c7894;
}

.channels {
    gap: 0.5rem;
    font-size: 0.9rem;
}

.fa-whatsapp {
    color: rgb(20, 77, 55);
}

.fa-envelope {
    color: rgb(190, 190, 190);
}

.fa-facebook {
    color: rgb(11, 13, 136);
}

/* ===== Shared section heading style (with subtitle) ===== */
section h2 {
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 2.6rem;
}

/* ===== Why AI Agents (horizontal cards) ===== */
.why-ai {
    background: var(--bg-section);
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1.9rem;
}

.card {
    background-color: var(--bg-card);
    border-radius: var(--radius-card-lg);
    border: 1px solid var(--accent-blue-border);
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    align-items: flex-start;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    margin-top: auto;
    margin-bottom: auto;
    background: linear-gradient(145deg, #1eb8cc1a, #1eb8cc1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #12b5c9;
    font-size: 1.2rem;
}

.card h3 {
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* apply icon wrapper to why-ai & features using existing markup */
.why-ai .card h3{
    grid-row: 1;
    grid-column: 2;
}

.why-ai .card p {
    grid-row: 1;
    grid-column: 2;
    margin-top: 32px;
}

/* ===== Feature grid (8 capability cards) ===== */
.features {
    background: var(--bg-section);
    padding: 50px;
}

.features h2{
    font-size: 2.5rem;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem 1.9rem;
}
.feature-grid-header {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1.9rem;
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-card-lg);
    border: 1px solid var(--accent-blue-border);
    padding: 1.7rem 1.8rem;
    display: grid;
    min-height: 120px;
    grid-template-columns: 2fr 8fr;
}

.card-icon{
    grid-row: 1;
    border-radius: 15px;
    justify-self: stretch;
}

.feature-card h3{
    grid-row: 1;
    grid-column: 2;
    margin-top: -1rem;
    font-size: 1.02rem;
}

.feature-card p {
    grid-row: 1;
    grid-column: 2;
    max-height: 50px;
    min-height: 49;
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-top: 15px;
}

/* ===== Unified Inbox & Analytics ===== */
.unified-inbox {
    background: var(--bg-section);
}

.unified-inbox h2{
    font-size: 2.5rem;
}

.inbox-content {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: center;
    gap: 3rem;
}

.laptop-mockup {
    border-radius: 34px;
    background: linear-gradient(135deg, #1fb69f, #0f7e98);
    padding: 1.4rem;
}

.screen {
    border-radius: 26px;
    background: radial-gradient(circle at top left, #1b2838, #020609 70%);
    padding: 1rem 1.2rem;
}

.graphs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.graph h4 {
    color: #f4fbff;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.bar-chart {
    height: 120px;
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
}

.bar {
    flex: 1;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, #4ffbe0, #15a89a);
}

.inbox-text h2 {
    text-align: left;
}

.inbox-text ul {
    list-style: none;
    margin-top: 0.8rem;
}

.inbox-text li {
    color: var(--text-muted);
    font-size: 0.96rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.inbox-text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 16px;
    height: 16px;
}

/* ===== How We Build (4 process cards) ===== */
.how-we-build {
    background: var(--bg-section);
    padding: 50px;
}

.how-we-build h2{
    font-size: 2.5rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.6rem;
}

.step {
    background-color: var(--bg-card);
    border-radius: var(--radius-card-lg);
    border: 1px solid var(--accent-blue-border);
    padding: 1.6rem 1.6rem 1.7rem;

}

.step-number {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 100px;
    height: 50px;
    border-radius: 999px;
    background: linear-gradient(135deg, #12b5c9, #12b5c9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.5rem;
}

.step h3 {
    margin-top: 1.7rem;
    margin-bottom: 0.4rem;
    font-size: 1.3rem;
}

.step p {
    font-size: 0.94rem;
    color: var(--text-muted);
}

/* ===== What's Included (single card) ===== */
.whats-included {
    background: var(--bg-section);
    padding: 50px;
}

.whats-included h2{
    font-size: 2.5rem;
}

.whats-included .container {
    max-width: 1080px;
}

.whats-included-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-card-lg);
    padding: 1.9rem 2.2rem;
    border: 1px solid var(--accent-blue-border);
}

.whats-included-cards {
    display: grid;
    grid-template-columns: 4fr 1fr;
}

.whats-included-left {
    max-width: 700px;
}

.whats-included-right {
    max-width: 300px;
}

.whats-included ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.whats-included li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    position: relative;
    font-size: 0.96rem;
    color: var(--text-main);
}

.whats-included li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 18px;
    height: 18px;
}

/* ===== Benefits section (2x2 grid with metric pills) ===== */
.benefits {
    background: var(--bg-section);
    padding: 50px;
}

.benefits h2{
    font-size: 2.5rem;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1.9rem;
}

.benefit-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-card-lg);
    border: 1px solid var(--accent-blue-border);
    padding: 1.7rem 2rem 1.9rem;
}

.benefit-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
}

.metric {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.05rem;
    border-radius: var(--radius-pill);
    background-color: var(--accent-pill);
    color: rgb(18, 181, 201);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== Who We Help + Social Proof band ===== */
.who-we-help {
    background: var(--bg-section);
    padding-bottom: 2.5rem;
}

.for-brokers {
    background: var(--bg-section);
    padding: 50px;
}
.for-brokers h2{
    font-size: 2.5rem;
}

.help-items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.pill {
    padding: 0.55rem 1.3rem;
    text-align: center;
    border-radius: var(--radius-pill);
    background-color: #ffffff;
    border: 1px solid var(--accent-blue-border);
    color: var(--text-main);
    font-size: 0.88rem;
}

.help-item {
    display: grid;
    grid-template-rows: 1fr 4fr;
    text-align: center;
    border-radius: 14px;
    background: linear-gradient(180deg, #0b2b63, #0b566373);;
    color: var(--text-main);
    font-size: 0.88rem;
    align-items: center;
    justify-content: center;
    padding: 0rem 0rem 0rem 0rem;
}

.help-item-top {
    padding: 0rem 1rem 0rem;
    color: rgb(255, 255, 255);
    font-size: 1.25rem;
}

.help-item-bottom {
    width: 100%;
}

.help-item-bottom img{
    min-width: 330px; /* The desired width of the cropped image */
    max-height: 150px; /* The desired height of the cropped image */
    object-fit:cover; /* Scales the image while maintaining aspect ratio, cropping as needed */
    padding: 5px 10px;
    border-radius: 15px;
}

.social-proof {
    background: var(--bg-section);
    padding: 50px;
    overflow: visible;
}

.social-proof h2{
    font-size: 2.5rem;
}

.trusted-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2.4rem;
    font-size: 0.96rem;
}

.testimonials {
    display: flex;
    overflow-x: auto;
    overflow-y: auto;
    padding-bottom: 6px;
    cursor: grab;
    gap: 1.5rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.testimonials::-webkit-scrollbar {
    height: 0;
    width: 0;
}

.testimonials.is-dragging {
  cursor: grabbing;
}

.testimonial {
    background-color: #ffffff;
    flex: 0 0 320px;
    min-width: 450px;
    border-radius: var(--radius-card-lg);
    /* extra top padding so the content doesn’t collide with the avatar */
    padding: 2.3rem 1.6rem 1.7rem;
    border: 1px solid var(--accent-blue-border);
    font-size: 0.95rem;
    position: relative;   /* anchor for the avatar */
    z-index: 0;
}

.testimonial p.quote {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-family: 'Source Sans 3', sans-serif;
    font-style: italic
}

/* ===== Final CTA + Footer band ===== */
.contact {
    background: radial-gradient(circle at top, #234c9c 0, #143577 40%, #0d285c 100%);
    color: #ffffff;
    text-align: center;
    padding: 4.5rem 0 4.5rem;
}

.contact h2 {
    color: #ffffff;
    margin-bottom: 0.6rem;
    font-size: 2.5rem;
}

.contact p {
    margin-bottom: 2rem;
    color: #e4edff;
    font-size: 1.02rem;
}

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1.7rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto minmax(120px, auto) auto;
    gap: 0.9rem 1rem;
}

.contact-form input,
.contact-form textarea {
    border-radius: 5px;
    border: 1px solid #d1daf3;
    padding: 0.7rem 0.9rem;
    font-family: inherit;
    font-size: 0.95rem;
}

.contact-form textarea {
    grid-column: 1 / -1;
    resize: none;
    min-height: 120px;
}

.contact-form > .btn-primary {
    grid-column: 1 / -1;
    border-radius: 5px;
    justify-self: stretch;
}

.footer {
    background-color: #0a2147;
    color: #e3edff;
    padding: 2.5rem 0 1.5rem;
    font-size: 0.9rem;
}

.footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.footer p {
    max-width: 360px;
    color: #c7d5ff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-links a {
    color: #d6e3ff;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 0.6rem;
    font-size: 1.4rem;
}

.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(178, 198, 248, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d6e3ff;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.social-icons a:hover {
    background-color: #1f4489;
    color: #ffffff;
    transform: translateY(-1px);
}


.center-visual {
    position: relative;
}

.center-visual-inner {
    border-radius: 24px;
    overflow: hidden;
    background: #161c3d;
    box-shadow: 0 24px 60px rgba(19, 8, 64, 0.5);
    padding: 16px 18px 22px;
}

.center-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 11px;
    color: #dde0ff;
}

.center-top-bar .dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.center-top-bar .dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.center-screen {
    background: #090f2b;
    border-radius: 16px;
    padding: 18px 18px 16px;
    position: relative;
    overflow: hidden;
}

.center-graph {
    height: 150px;
    border-radius: 12px;
    background: linear-gradient(145deg, #352a86, #9c54ff);
    display: flex;
    align-items: flex-end;
    padding: 12px 16px;
    gap: 8px;
}

.center-graph span {
    flex: 1;
    border-radius: 999px 999px 0 0;
    background: rgba(255, 255, 255, 0.3);
}

.center-graph span:nth-child(1) { height: 28%; }
.center-graph span:nth-child(2) { height: 70%; }
.center-graph span:nth-child(3) { height: 45%; }
.center-graph span:nth-child(4) { height: 82%; }
.center-graph span:nth-child(5) { height: 60%; }
.center-graph span:nth-child(6) { height: 35%; }

.center-tabs {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    font-size: 10px;
    color: #cdd0ff;
}

.center-tabs div {
    background: #171d3b;
    border-radius: 10px;
    padding: 8px 10px;
    text-align: left;
}

.center-tabs div strong {
    font-size: 11px;
    display: block;
    margin-bottom: 4px;
}

.center-tabs div span {
    font-size: 9px;
    opacity: 0.7;
}


@media (max-width:1530px) {
    .feature-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 1.6rem 1.9rem;
    }

    .steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1.6rem;
    }

    .help-items {
        display: grid;
        gap: 0.5rem;
    }

    .help-item {
        display: grid;
        grid-template-rows: 1fr 3fr;
        justify-content: center;
        align-items: center;
        align-content: center;
        text-align: center;
        width: 100%;
        background: linear-gradient(180deg, #0b2b63, #0b566373);;
        font-size: 0.88rem;
        padding: 0rem 0rem 0rem 0rem;
        margin-left: auto;
        margin-right: auto;
    }

    .help-item-top {
        padding: 1rem 1rem 0rem;
    }
    
    .help-item-bottom img{
        padding-left: 10%;
        padding-right: 10%;
    }

    .testimonial {
        background-color: #ffffff;
        flex: 0 0 320px;
        max-width: 450px;
        border-radius: var(--radius-card-lg);
        /* extra top padding so the content doesn’t collide with the avatar */
        padding: 2.3rem 1.6rem 1.7rem;
        border: 1px solid var(--accent-blue-border);
        font-size: 0.95rem;
        position: relative;   /* anchor for the avatar */
        z-index: 0;

    }

}

@media (min-width:1055px) and (max-width: 1529px) {

    .feature-card h3{
        font-size: 1.02rem;
    }

    .feature-card p {
        max-height: 20px;
        margin-top: 15px;
    }

    .help-item {
        display: grid;
        grid-template-rows: 1fr 2fr;
    }
    
    .help-item-bottom {
        justify-content: center;
        align-items: center;
        align-content: center;
        text-align: center;
        overflow: hidden;
    }

    .help-item-bottom img{
        margin-left: -2rem;
        padding-left: 0px;
        padding-right: 0px;
    }

}

@media (min-width:1055px) and (max-width: 1300px) {
    .logo h2{
        display: none;
    }
    
    .logo h1{
        display:block;
    }

    .container > nav{
        display: none;
    }

}
@media (max-width:1054px) {
    .logo h2{
        display: none;
    }
    
    .logo h1{
        display:block;
    }
    .container > nav{
        display: none;
    }
    .container > .cta-button {
        padding: 0.65rem 0.5rem;
    }

    .dashboard-mockup {
        max-width: 80%;
        position: absolute;
    }

    .features {
        margin-top: 400px;
    }
    .feature-grid-header {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.6rem 1.9rem;
    }
    
    .feature-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .feature-card {
        max-height: 10px!important;
        grid-template-columns: 1fr 5fr;
        align-items: center;
        padding: 10px;
    }
    
    .feature-card p{
        display: none;
    }
    
    .steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
    
    .benefit-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1.6rem 1.9rem;
    }
    
    .whats-included-cards {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 2fr;
        gap: 1rem;
    }
    
    .whats-included-left {
        grid-row: 1;
    }
    
    .whats-included-right {
        min-width: 100%;
        grid-row: 2;
    }
    
    .whats-included ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
    }
    
    .whats-included svg {
        display: none;
    }
    
    .whats-included-right img {
        min-width: 100%; /* The desired width of the cropped image */
        max-height: 350px; /* The desired height of the cropped image */
        object-fit:cover; /* Scales the image while maintaining aspect ratio, cropping as needed */
        padding: 5px 10px;
        border-radius: 50px;
    }
    .help-items {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .help-item {
        display: grid;
        grid-template-rows: 1fr;
        justify-content: center;
        align-items: center;
        align-content: center;
        text-align: center;
        width: 50%;
        background: linear-gradient(180deg, #0b2b63, #0b566373);;
        font-size: 0.88rem;
        padding: 0rem 0rem 0rem 0rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .help-item-top {
        padding: 0rem 1rem 0rem;
    }
    
    .help-item-bottom {
        display: none;
    }
}

@media (max-width:1025px) {
    .logo h2{
        display: none;
    }
    
    .logo h1{
        display:block;
    }
    .dashboard-mockup {
        max-width: 80%;
        max-height: 390px;
    }

    .container > nav{
        display: none;
    }
    

    .features {
        margin-top: 300px;
    }

    .feature-card{
        padding: 10px;
        max-height: 0px;
    }

    .feature-card h3{
        font-size: 1rem;
        margin-left: 10px;
    }

    .feature-card p{
        display: none;
    }

    .benefit-cards {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 1.6rem 1.9rem;
    }
    .help-item {
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
    }
    .whats-included-right img {
        display: none;
    }

}