/* ============================================================
   Titan Email — Hero Fold
   Typography: use text.css classes only (h1, p1-*, p2-*)
   ============================================================ */

.titan-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 0;
    background-color: #f5f5fc;
    background-image: url("https://www.cloudways.com/wp-content/uploads/2026/08/titab_hero_bg-scaled.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.titan-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1096px;
    margin: 0 auto;
}

/* ── Product pill ── */
.titan-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 48px;
    border: 0.5px solid #f08af4;
    background: linear-gradient(118.46deg, rgba(255, 255, 255, 0.9) 14.05%, rgba(255, 255, 255, 0.4) 161.82%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    margin-bottom: 24px;
}

.titan-hero__badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 24px;
    flex-shrink: 0;
}

.titan-hero__badge-icon svg {
    display: block;
    width: 26px;
    height: 24px;
}

.titan-hero__badge-label {
    white-space: nowrap;
    margin: 0 !important;
}

/* ── Headline (typography from text.css h1) ── */
.titan-hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 16px;
    max-width: 945px;
}

.titan-hero__title-line {
    display: block;
    font-size: inherit;
}

.titan-hero__title-accent {
    background-image: linear-gradient(
        105deg,
        #f08af4 0%,
        #c67bf9 17%,
        #9c6cfe 34%,
        #7c3ece 67%,
        #6b27b5 84%,
        #5b109d 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: inherit;
}

/* ── Subcopy (typography from text.css .p1-regular) ── */
.titan-hero__sub {
    max-width: 912px;
    margin: 0 0 40px !important;
}

/* ── CTAs (typography from text.css .p2-semibold) ── */
.titan-hero__ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.titan-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 12px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    margin: 0 !important;
    box-sizing: border-box;
}

.titan-hero__btn--primary {
    background: #2f39bf;
    color: #fcfcfc !important;
    border: 1px solid #2f39bf;
}

.titan-hero__btn--primary:hover {
    background: #444dc5;
    border-color: #444dc5;
    color: #fcfcfc !important;
    transform: translateY(-1px);
}

.titan-hero__btn--secondary {
    background: transparent;
    color: #2f39bf !important;
    border: 1px solid #2f39bf;
}

.titan-hero__btn--secondary:hover {
    background: rgba(47, 57, 191, 0.06);
    color: #2f39bf !important;
    transform: translateY(-1px);
}

/* ── Video (videoBox / videoControlBox pattern) ── */
.titan-hero__video {
    width: 100%;
    max-width: 1096px;
}

.titan-hero__video-frame {
    position: relative;
    width: 100%;
    padding: 17px;
    border-radius: 19px;
    border: 2.24px solid #dfe1e6;
    background: rgba(245, 245, 252, 0.4);
    box-shadow: 0 24px 64px rgba(9, 30, 66, 0.1);
    overflow: hidden;
    box-sizing: border-box;
}

.titan-hero .videoBox {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #091e42;
}

.titan-hero .videoBox .embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding: 0 0 54.61% 0; /* 580 / 1062 */
    overflow: hidden;
}

.titan-hero .videoBox .videoPlayer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    border-radius: 10px;
    background: #091e42;
}

.titan-hero .videoBox .videoControlBox {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    text-align: center;
}

.titan-hero .videoBox .videoControlBox i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 54px;
    height: 54px;
    line-height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: #091e42;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(9, 30, 66, 0.25);
}

.titan-hero .videoBox .videoControlBox .fa-pause {
    display: none;
}

.titan-hero .videoBox .videoControlBox.play {
    opacity: 0;
    pointer-events: none;
}

.titan-hero .videoBox .videoControlBox.pause .fa-play {
    display: block;
}

.titan-hero .videoBox .videoControlBox.pause .fa-pause {
    display: none;
}

/* ============================================================
   Titan — Problems fold
   Typography: text.css only (h2, h4, p2-regular)
   ============================================================ */

.titan-problems {
    padding: 100px 0;
    background: #ffffff;
}

.titan-problems__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    max-width: 636px;
    margin: 0 auto 36px;
}

.titan-problems__title {
    margin: 0;
}

.titan-problems__sub {
    margin: 0 !important;
    max-width: 636px;
}

.titan-problems__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.titan-problems__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 36px 26px;
    border-radius: 12px;
    border: 1px solid rgba(218, 217, 255, 0.2);
    background:
        linear-gradient(145deg, rgba(112, 90, 254, 0.06) 0%, rgba(202, 124, 251, 0.04) 42%, rgba(255, 255, 255, 0.95) 100%),
        #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.titan-problems__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 93px;
    height: 93px;
    flex-shrink: 0;
    border-radius: 200px;
    background: #ffffff;
    box-shadow: 0 12.8px 11.9px rgba(0, 0, 0, 0.05);
}

.titan-problems__icon-wrap svg {
    display: block;
    width: 42px;
    height: 42px;
}

.titan-problems__card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    width: 100%;
}

.titan-problems__card-title {
    margin: 0;
    width: 100%;
}

.titan-problems__card-text {
    margin: 0 !important;
    width: 100%;
}

/* ============================================================
   Titan — Solutions fold
   Typography: text.css only (h2, p1-semibold, p2-regular)
   ============================================================ */

.titan-solutions {
    padding: 100px 0;
    background: #fcfcfc;
}

.titan-solutions__inner {
    display: flex;
    align-items: stretch;
    gap: 80px;
}

.titan-solutions__content {
    flex: 1 1 0;
    max-width: 527px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    min-width: 0;
}

.titan-solutions__intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.titan-solutions__title {
    margin: 0;
}

.titan-solutions__sub {
    margin: 0 !important;
}

.titan-solutions__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.titan-solutions__item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #dfe1e6;
}

.titan-solutions__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.titan-solutions__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid #705afe;
    background: #ffffff;
    box-sizing: border-box;
}

.titan-solutions__icon svg {
    display: block;
    width: 30px;
    height: 30px;
}

.titan-solutions__item-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.titan-solutions__item-title {
    margin: 0 !important;
}

.titan-solutions__item-text {
    margin: 0 !important;
}

.titan-solutions__media {
    position: relative;
    flex: 1 1 0;
    max-width: 690px;
    width: 100%;
    align-self: stretch;
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(129.49deg, rgba(112, 90, 254, 0.06) 9.82%, rgba(202, 124, 251, 0.06) 107.85%),
        #ffffff;
}

.titan-solutions__img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ============================================================
   Fold 4 — Simple pricing
   ============================================================ */

.titan-pricing {
    padding: 100px 0;
    background:
        radial-gradient(
            ellipse 90% 70% at 50% 45%,
            rgba(223, 212, 249, 0.45) 0%,
            rgba(252, 252, 252, 0) 70%
        ),
        #fcfcfc;
}

.titan-pricing__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    max-width: 820px;
    margin: 0 auto 64px;
}

.titan-pricing__title {
    margin: 0;
}

.titan-pricing__sub {
    margin: 0 !important;
    max-width: 820px;
}

.titan-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1098px;
    margin: 0 auto;
    align-items: stretch;
}

.titan-pricing__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
    border-radius: 20px;
    border: 1.5px solid #f08af440;
    background-color: transparent;
    background-image: linear-gradient(
        162.969deg,
        rgba(255, 255, 255, 0.3) 32.783%,
        rgba(223, 212, 249, 0.3) 161.59%
    );
    backdrop-filter: blur(1.916px);
    -webkit-backdrop-filter: blur(1.916px);
    box-sizing: border-box;
    min-width: 0;
    /* overflow: hidden; */
}

.titan-pricing__card--recommended {
    z-index: 1;
}

.titan-pricing__badge {
    position: absolute;
    top: -11px;
    right: 9%;
    /* transform: translate(-50%, -50%); */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1px 12px;
    border-radius: 20px;
    background: linear-gradient(168deg, #705afe 9.82%, #ca7cfb 107.85%);
    color: #ffffff !important;
    margin: 0 !important;
    white-space: nowrap;
}

.titan-pricing__card-top {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(9, 30, 66, 0.12);
}

.titan-pricing__plan {
    margin: 0;
}

.titan-pricing__desc {
    margin: 0 !important;
}

.titan-pricing__card-mid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.titan-pricing__price-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.titan-pricing__price-row {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 4px;
}

.titan-pricing__amount {
    margin: 0;
    color: #2f39bf;
}

.titan-pricing__period {
    margin: 0 0 6px !important;
    color: var(--paragraph-color, #253858);
}

.titan-pricing__storage {
    margin: 0 !important;
}

.titan-pricing__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    box-sizing: border-box;
    background: transparent;
    color: #2f39bf !important;
    border: 1px solid #2f39bf;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    margin: 0 !important;
}

.titan-pricing__btn:hover {
    background: rgba(47, 57, 191, 0.06);
    color: #2f39bf !important;
    transform: translateY(-1px);
}

.titan-pricing__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* margin-top: auto; */
}

.titan-pricing__features-label {
    margin: 0 !important;
}

.titan-pricing__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.titan-pricing__feature {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.titan-pricing__check {
    flex: 0 0 12px;
    width: 12px;
    height: 9px;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.titan-pricing__check svg {
    display: block;
    width: 12px;
    height: 9px;
}

.titan-pricing__feature .p2-regular {
    margin: 0 !important;
    flex: 1 1 auto;
    min-width: 0;
}

/* ============================================================
   Fold 5 — Up and running (steps)
   ============================================================ */

.titan-steps {
    padding: 100px 0;
    background: #ffffff;
}

.titan-steps__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    max-width: 636px;
    margin: 0 auto 56px;
}

.titan-steps__title {
    margin: 0;
}

.titan-steps__sub {
    margin: 0 !important;
    max-width: 636px;
}

.titan-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1298px;
    margin: 0 auto;
    align-items: start;
}

.titan-steps__card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}

.titan-steps__media {
    position: relative;
    width: 100%;
    aspect-ratio: 418 / 310;
    border-radius: 12px;
    overflow: hidden;
    background-image:
        linear-gradient(
            137.95deg,
            rgba(112, 90, 254, 0.06) 9.82%,
            rgba(202, 124, 251, 0.06) 107.85%
        ),
        linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
}

.titan-steps__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.titan-steps__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.titan-steps__label {
    margin: 0 !important;
    color: #444dc5 !important;
}

.titan-steps__copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.titan-steps__card-title {
    margin: 0;
}

.titan-steps__card-text {
    margin: 0 !important;
}

/* ============================================================
   Fold 6 — Inbox grows (golive + hero video pattern)
   ============================================================ */

.titan-inbox {
    padding: 100px 0;
    background: #ffffff;
}

.titan-inbox__header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.titan-inbox__title {
    margin: 0 0 16px;
}

.titan-inbox__sub {
    margin: 0 auto !important;
    max-width: 618px;
}

.titan-inbox__platform {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background:
        linear-gradient(
            155deg,
            rgba(112, 90, 254, 0.08) 9.82%,
            rgba(202, 124, 251, 0.08) 107.85%
        ),
        #ffffff;
}

.titan-inbox .videoBox {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #091e42;
}

.titan-inbox .videoBox .embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding: 0 0 38.3% 0; /* ~497 / 1297 */
    overflow: hidden;
}

.titan-inbox .videoBox .videoPlayer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    background: #091e42;
}

.titan-inbox .videoBox .videoControlBox {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    text-align: center;
}

.titan-inbox .videoBox .videoControlBox i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 54px;
    height: 54px;
    line-height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: #091e42;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(9, 30, 66, 0.25);
}

.titan-inbox .videoBox .videoControlBox .fa-pause {
    display: none;
}

.titan-inbox .videoBox .videoControlBox.play {
    opacity: 0;
    pointer-events: none;
}

.titan-inbox .videoBox .videoControlBox.pause .fa-play {
    display: block;
}

.titan-inbox .videoBox .videoControlBox.pause .fa-pause {
    display: none;
}

.titan-inbox__features {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    grid-template-rows: auto auto auto;
    background: #fff;
    border: 1px solid #dfe1e6;
    border-top: 0;
    border-radius: 0 0 12px 12px;
}

.titan-inbox__feature {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    min-width: 0;
}

.titan-inbox__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.titan-inbox__icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.titan-inbox__feature-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.titan-inbox__feature-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.titan-inbox__feature-title {
    margin: 0 !important;
    color: #091e42 !important;
}

.titan-inbox__badge {
    display: inline-flex;
    align-items: center;
    padding: 1px 12px;
    border-radius: 20px;
    background: #eaebf9;
    color: #2f39bf !important;
    margin: 0 !important;
    white-space: nowrap;
}

.titan-inbox__feature-desc {
    margin: 0 !important;
    color: #253858;
}

.titan-inbox__vdivider {
    width: 1px;
    background: #dfe1e6;
    align-self: center;
    height: 100%;
    max-height: 175px;
}

.titan-inbox__hdivider {
    grid-column: 1 / -1;
    height: 1px;
    background: #dfe1e6;
    width: 100%;
    max-width: 1228px;
    margin: 0 auto;
}

/* ============================================================
   Fold 7 — CTA
   ============================================================ */

.titan-cta {
    background-color: #0e0538;
    background-image: url("https://www.cloudways.com/wp-content/uploads/2026/08/CTA_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 86px 0 93px;
    overflow: hidden;
}

.titan-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.titan-cta__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 942px;
}

.titan-cta__title {
    margin: 0;
    color: #ffffff;
}

.titan-cta__sub {
    margin: 0 !important;
    color: #f4f5f7 !important;
    max-width: 942px;
}

.titan-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.titan-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    box-sizing: border-box;
    margin: 0 !important;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.titan-cta__btn--primary {
    background: #ffffff;
    color: #253858 !important;
    border: 1px solid #ffffff;
}

.titan-cta__btn--primary:hover {
    background: #f4f5f7;
    color: #253858 !important;
    transform: translateY(-1px);
}

.titan-cta__btn--secondary {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid #ffffff;
}

.titan-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    transform: translateY(-1px);
}
.titan a:hover{
    text-decoration: none;
}

/* ── YouTube video with CSS-only thumbnail overlay ── */

.titan-video-wrap {
    position: relative;
}

/* The iframe fills the embed-responsive container */
.titan-video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Thumbnail overlay sits on top of the iframe */
.titan-video-thumb {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    display: block;
    transition: opacity 0.25s ease;
}

.titan-video-thumb__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Play button circle */
.titan-video-thumb__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(9, 30, 66, 0.25);
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 1;
}

.titan-video-thumb__play .fa-play {
    color: #091e42;
    font-size: 18px;
    margin-left: 3px;
}

.titan-video-thumb:hover .titan-video-thumb__play {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.08);
}

/* When checkbox is checked → hide the thumbnail overlay */
.titan-video-toggle:checked + .titan-video-thumb {
    opacity: 0;
    pointer-events: none;
}
/* ============================================================
   Responsive — layout only (typography from text.css)
   ============================================================ */

@media (max-width: 1199px) {
    .titan-hero {
        padding: 100px 0 0;
    }

    .titan-hero__title {
        max-width: 720px;
    }

    .titan-hero__sub {
        max-width: 680px;
    }

    .titan-hero__ctas {
        margin-bottom: 56px;
    }

    .titan-problems {
        padding: 80px 0;
    }

    .titan-problems__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .titan-solutions {
        padding: 80px 0;
    }

    .titan-solutions__inner {
        gap: 48px;
    }

    .titan-solutions__content {
        gap: 48px;
    }

    .titan-pricing {
        padding: 80px 0;
    }

    .titan-pricing__header {
        margin-bottom: 48px;
    }

    .titan-pricing__grid {
        gap: 20px;
    }

    .titan-pricing__card {
        padding: 28px 24px;
        gap: 20px;
    }

    .titan-steps {
        padding: 80px 0;
    }

    .titan-steps__header {
        margin-bottom: 48px;
    }

    .titan-steps__grid {
        gap: 20px;
    }

    .titan-inbox {
        padding: 80px 0;
    }

    .titan-inbox__header {
        margin-bottom: 48px;
    }

    .titan-inbox__feature {
        padding: 28px 24px;
    }

    .titan-cta {
        padding: 72px 0;
    }
}

@media (max-width: 992px) {
    .titan-hero {
        padding: 80px 0 0;
    }

    .titan-hero__badge {
        padding: 10px 18px;
        margin-bottom: 20px;
    }

    .titan-hero__badge-icon,
    .titan-hero__badge-icon svg {
        width: 22px;
        height: 20px;
    }

    .titan-hero__title {
        margin-bottom: 12px;
    }

    .titan-hero__sub {
        margin-bottom: 28px !important;
    }

    .titan-hero__ctas {
        gap: 12px;
        margin-bottom: 40px;
    }

    .titan-hero__video-frame {
        padding: 12px;
        border-radius: 14px;
        border-width: 1.5px;
    }

    .titan-hero .videoBox,
    .titan-hero .videoBox .videoPlayer {
        border-radius: 8px;
    }

    .titan-hero .videoBox .videoControlBox i {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 16px;
    }

    .titan-problems {
        padding: 64px 0;
    }

    .titan-problems__header {
        margin-bottom: 28px;
        gap: 12px;
    }

    .titan-problems__card {
        padding: 28px 20px;
        gap: 20px;
    }

    .titan-problems__icon-wrap {
        width: 80px;
        height: 80px;
    }

    .titan-problems__icon-wrap svg {
        width: 36px;
        height: 36px;
    }

    .titan-solutions {
        padding: 64px 0;
    }

    .titan-solutions__inner {
        flex-direction: column;
        gap: 40px;
    }

    .titan-solutions__content {
        max-width: 100%;
        gap: 40px;
    }

    .titan-solutions__media {
        flex: none;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: unset;
        align-self: auto;
    }

    .titan-solutions__img {
        position: static;
        inset: auto;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .titan-pricing {
        padding: 64px 0;
    }

    .titan-pricing__header {
        margin-bottom: 40px;
        gap: 12px;
    }

    .titan-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 32px;
    }

    .titan-steps {
        padding: 64px 0;
    }

    .titan-steps__header {
        margin-bottom: 40px;
        gap: 12px;
    }

    .titan-steps__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        gap: 40px;
    }

    .titan-steps__card {
        gap: 24px;
    }

    .titan-inbox {
        padding: 64px 0;
    }

    .titan-inbox__header {
        margin-bottom: 40px;
    }

    .titan-inbox .videoBox .embed-responsive {
        padding: 0 0 56.25% 0;
    }

    .titan-inbox__features {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .titan-inbox__vdivider,
    .titan-inbox__hdivider {
        display: none;
    }

    .titan-inbox__feature {
        padding: 24px 20px;
        border-bottom: 1px solid #dfe1e6;
    }

    .titan-inbox__feature:last-child,
    .titan-inbox__feature--row2:last-child {
        border-bottom: none;
    }

    .titan-cta {
        padding: 64px 0;
    }

    .titan-cta__inner {
        gap: 24px;
    }

    .titan-cta__btn {
        min-height: 48px;
        padding: 10px 20px;
    }
}

@media (max-width: 575px) {
    .titan-hero {
        padding: 64px 0 0;
    }

    .titan-hero__badge {
        padding: 8px 14px;
        gap: 6px;
        margin-bottom: 16px;
    }

    .titan-hero__ctas {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin-bottom: 32px;
    }

    .titan-hero__btn {
        width: 100%;
    }

    .titan-hero__video-frame {
        padding: 8px;
        border-radius: 12px;
    }

    .titan-hero .videoBox,
    .titan-hero .videoBox .videoPlayer {
        border-radius: 6px;
    }

    .titan-hero .videoBox .videoControlBox i {
        width: 44px;
        height: 44px;
        line-height: 44px;
        font-size: 14px;
    }

    .titan-problems {
        padding: 48px 0;
    }

    .titan-problems__header {
        margin-bottom: 24px;
    }

    .titan-problems__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .titan-problems__card {
        padding: 24px 18px;
        gap: 16px;
    }

    .titan-problems__icon-wrap {
        width: 72px;
        height: 72px;
    }

    .titan-problems__icon-wrap svg {
        width: 32px;
        height: 32px;
    }

    .titan-solutions {
        padding: 48px 0;
    }

    .titan-solutions__content {
        gap: 32px;
    }

    .titan-solutions__list {
        gap: 20px;
    }

    .titan-solutions__item {
        gap: 16px;
        padding-bottom: 20px;
    }

    .titan-solutions__icon {
        width: 40px;
        height: 40px;
    }

    .titan-solutions__icon svg {
        width: 24px;
        height: 24px;
    }

    .titan-pricing {
        padding: 48px 0;
    }

    .titan-pricing__header {
        margin-bottom: 32px;
    }

    .titan-pricing__grid {
        max-width: 100%;
        gap: 28px;
    }

    .titan-pricing__card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .titan-pricing__card-top {
        padding-bottom: 20px;
    }

    .titan-pricing__card-mid {
        gap: 20px;
    }

    .titan-steps {
        padding: 48px 0;
    }

    .titan-steps__header {
        margin-bottom: 32px;
    }

    .titan-steps__grid {
        max-width: 100%;
        gap: 32px;
    }

    .titan-steps__media {
        border-radius: 10px;
    }

    .titan-steps__card {
        gap: 20px;
    }

    .titan-inbox {
        padding: 48px 0;
    }

    .titan-inbox__header {
        margin-bottom: 32px;
    }

    .titan-inbox__platform {
        border-radius: 10px 10px 0 0;
    }

    .titan-inbox__features {
        border-radius: 0 0 10px 10px;
    }

    .titan-inbox .videoBox .videoControlBox i {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 16px;
    }

    .titan-cta {
        padding: 56px 0;
    }

    .titan-cta__actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .titan-cta__btn {
        width: 100%;
    }
}
