/*
Theme Name: Trust1 Theme
Theme URI: https://trust1.io
Author: trustshop
Author URI: https://trustshop.io
Description: Trust1.io landing page theme
Version: 2.0
*/

/* ========================================
   Design Tokens
======================================== */
:root {
    font-size: 16px;
    --t1-brand-dark: #070a1d;
    --t1-brand-dark-rgb: 7, 10, 29;
    --t1-green-start: #c0e52b;
    --t1-green-end: #7bd50c;
    --t1-green-gradient: linear-gradient(170deg, #c0e52b, #7bd50c);
    --t1-bg-light: #f1f1f1;
    --t1-bg-white: #ffffff;
    --t1-bg-black: #303030;
    --t1-text-primary: #303030;
    --t1-text-secondary: #ffffff;
    --t1-text-muted: #6b6b6b;
    --t1-border: #e3e3e3;
    --t1-radius-sm: 8px;
    --t1-radius-md: 16px;
    --t1-radius-lg: 24px;
    --t1-radius-pill: 9000px;
    --t1-content-width: 1120px;
    --t1-section-padding-y: 100px;
}

/* ========================================
   Reset & Base
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Be Vietnam Pro", sans-serif;
    color: var(--t1-text-primary);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-weight: 400;
    scroll-behavior: smooth;
    background-color: var(--t1-bg-white);
}

ul,
li {
    list-style-type: none;
}

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

/* ========================================
   Layout
======================================== */
.t1-container,
.t1-wrap {
    width: 100%;
}

.t1-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
}

.t1-section__inner {
    width: 100%;
    max-width: var(--t1-content-width);
}

/* ========================================
   Utilities
======================================== */
.t1--title {
    font-size: 2.875rem;
    font-weight: 900;
    line-height: 1.2;
}

.t1--subtitle {
    font-size: 1.125rem;
    color: var(--t1-text-muted);
    line-height: 28px;
}

.t1-text-gradient {
    background: var(--t1-green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.t1-text-gradient--green {
    background: linear-gradient(154deg, #C0E52B 9.03%, #7BD50C 92.17%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.t1-text-gradient--blue {
    background: linear-gradient(180deg, #779DFF 0%, #2D68FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.t1-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--t1-radius-md);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: opacity 0.2s;
    border: 1px solid currentColor;
}

.t1-btn--primary {
    background: var(--t1-brand-dark);
    color: var(--t1-text-secondary);
}

.t1-btn--primary *,
.t1-btn--primary {
    color: var(--t1-text-secondary);
}

.t1-btn--primary:hover {
    background: var(--t1-bg-white);
    color: var(--t1-text-primary);
}

.t1-btn--primary:hover * {
    color: var(--t1-text-primary);
}

.t1-btn--outline {
    background: transparent;
    border: 1px solid #070A1D;
    color: var(--t1-text-primary);
}

.t1-btn--outline:hover {
    background: var(--t1-brand-dark);
    color: var(--t1-text-secondary);
    border-color: var(--t1-brand-dark);
}

.t1-btn--white {
    background: var(--t1-bg-white);
    color: var(--t1-text-primary);
}

.t1-btn--white:hover {
    background: transparent;
    color: var(--t1-text-secondary);
}

.t1-btn--black {
    background: var(--t1-bg-black);
    color: var(--t1-text-secondary);
}

.t1-btn--black:hover {
    background: var(--t1-bg-white);
    color: var(--t1-text-primary);
}

.t1-btn--green {
    background: var(--t1-green-gradient);
    color: var(--t1-brand-dark);
}

.t1-btn--green * {
    color: var(--t1-brand-dark);
}

.t1-btn--sm {
    padding: 8px 16px;
    font-size: 0.8125rem;
    border-radius: var(--t1-radius-sm);
}

.t1-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: var(--t1-radius-pill);
    font-size: 0.875rem;
    line-height: 134%;
    font-weight: 500;
    color: var(--t1-text-secondary);
    position: relative;
}

.t1-badge::before {
    content: "";
    background: #34364b;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: var(--t1-radius-pill);
    z-index: 0;
}

.t1-badge::after {
    content: "";
    background-color: rgba(34, 37, 54, 1);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: var(--t1-radius-pill);
    transform: translateY(2px);
    z-index: 1;
}

.t1-badge * {
    color: var(--t1-text-secondary);
    position: relative;
    z-index: 3;
}

.t1-hero .t1-btn--outline,
.t1-updates .t1-btn--outline {
    border-color: var(--t1-text-secondary);
    color: var(--t1-text-secondary);
}

.t1-hero .t1-btn--outline:hover,
.t1-updates .t1-btn--outline:hover {
    background-color: var(--t1-bg-white);
    color: var(--t1-text-primary) !important;
}

/* ========================================
   Header
======================================== */
.t1-header {
    width: 100%;
    padding: 33px 30px;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--t1-brand-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    z-index: 100;
    transition: background-color 0.3s, padding 0.3s, border-color 0.3s;
    border-bottom: 1px solid transparent;
}

.t1-header__logo {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.t1-header__logo img {
    width: 199px;
    height: auto;
}

/* Logo swap: dark bg shows white logo, light bg shows black logo */
.t1-header__logo-light {
    display: none;
}

.t1-header--light .t1-header__logo-dark {
    display: none;
}

.t1-header--light .t1-header__logo-light {
    display: block;
}

/* Light mode header (on scroll) */
.t1-header--light {
    background-color: var(--t1-bg-white);
    padding: 10px 30px;
    border-bottom-color: var(--t1-border);
}

.t1-header--light .t1-header__cta .t1-btn {
    background: var(--t1-brand-dark);
    color: var(--t1-text-secondary);
    border-color: var(--t1-brand-dark);
}

.t1-header--light .t1-header__cta .t1-btn:hover {
    background: var(--t1-bg-white);
    color: var(--t1-text-primary);
    border-color: var(--t1-text-primary);
}

.t1-header--light .t1-header__mobile-toggle svg path {
    stroke: var(--t1-text-primary);
}

.t1-header--light .t1-header__mobile-install {
    background: var(--t1-brand-dark);
    color: var(--t1-text-secondary);
    border-color: var(--t1-brand-dark);
}

.t1-header__nav {
    display: flex;
    align-items: center;
    background: var(--t1-bg-white);
    border-radius: var(--t1-radius-pill);
    padding: 4px;
    gap: 4px;
}

.t1-header__nav-item {
    padding: 8px 20px;
    border-radius: var(--t1-radius-pill);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--t1-text-primary);
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.t1-header__nav-item:hover,
.t1-header__nav-item.active {
    background-color: var(--t1-brand-dark);
    color: var(--t1-text-secondary);
}

.t1-header__nav-dropdown {
    position: relative;
}

.t1-header__nav-dropdown .t1-header__nav-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.t1-header__nav-dropdown .t1-header__nav-item::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 2px;
}

.t1-header__nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--t1-bg-white);
    border-radius: var(--t1-radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 8px;
    min-width: 180px;
    z-index: 10;
    margin-top: 4px;
}

.t1-header__nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 10px;
}

.t1-header__nav-dropdown:hover .t1-header__nav-dropdown-menu {
    display: block;
}

.t1-header__nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.875rem;
    color: var(--t1-text-primary);
    border-radius: var(--t1-radius-sm);
    transition: background 0.15s;
}

.t1-header__nav-dropdown-menu a:hover {
    background-color: var(--t1-bg-light);
}

/* Products Mega Dropdown */
.t1-products-menu {
    display: none;
    min-width: 493px;
    padding: 0;
    overflow: visible;
}

.t1-header__nav-dropdown--products:hover .t1-products-menu {
    display: flex;
    align-items: stretch;
}

.t1-products-menu__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 263px;
    padding: 16px 20px;
}

.t1-products-menu .t1-products-menu__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 16px 12px 16px 16px;
    border-radius: var(--t1-radius-md);
    transition: background 0.15s;
}

.t1-products-menu__item:hover {
    background-color: var(--t1-bg-light);
}

.t1-products-menu__icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(1) brightness(0);
    transition: filter 0.15s;
}

.t1-products-menu__item:hover .t1-products-menu__icon {
    filter: none;
}

.t1-products-menu__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.t1-products-menu__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--t1-text-primary);
}

.t1-products-menu__desc {
    font-size: 14px;
    color: #616161;
}

.t1-products-menu__preview {
    width: 230px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px 20px 0 0;
}

.t1-products-menu__preview-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.t1-header__cta {
    flex-shrink: 0;
}

.t1-header__cta .t1-btn {
    border-radius: var(--t1-radius-md);
}

.t1-header__mobile-checkbox {
    display: none;
}

.t1-header__mobile-actions {
    display: none;
    align-items: center;
    gap: 16px;
}

.t1-header__mobile-install {
    border-radius: var(--t1-radius-sm);
}

.t1-header__mobile-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    line-height: 0;
}

.t1-header__mobile-toggle svg path {
    stroke: #ffffff;
}

/* Overlay */
.t1-header__mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 98;
}

.t1-header__mobile-checkbox:checked + .t1-header__mobile-overlay {
    display: block;
}

/* Mobile menu panel */
.t1-header__mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--t1-bg-white);
    flex-direction: column;
    z-index: 101;
    overflow: hidden;
}

.t1-header__mobile-checkbox:checked ~ .t1-header__mobile-menu {
    display: flex;
}

@media (min-width: 769px) {
    .t1-header__mobile-checkbox:checked ~ .t1-header__mobile-menu,
    .t1-header__mobile-checkbox:checked + .t1-header__mobile-overlay {
        display: none !important;
    }
}

/* Menu inner header (dark bar with logo + close) */
.t1-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--t1-brand-dark);
    flex-shrink: 0;
    transition: background-color 0.3s, border-color 0.3s;
    border-bottom: 1px solid transparent;
}

.t1-mobile-menu__header--light {
    background: var(--t1-bg-white);
    border-bottom-color: var(--t1-border);
}

.t1-mobile-menu__header--light .t1-mobile-menu__close svg path {
    stroke: var(--t1-text-primary);
}

.t1-mobile-menu__header--light .t1-mobile-menu__logo img {
    content: url("./assets/images/logo/trust1-logo-black.png");
}

.t1-mobile-menu__header--light .t1-btn--white {
    background: var(--t1-brand-dark);
    color: var(--t1-text-secondary);
    border-color: var(--t1-brand-dark);
}

.t1-mobile-menu__header--light .t1-btn--white:hover {
    background: var(--t1-bg-white);
    color: var(--t1-text-primary);
    border-color: var(--t1-text-primary);
}

.t1-mobile-menu__logo img {
    width: 130px;
    height: auto;
}

.t1-mobile-menu__header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.t1-mobile-menu__close {
    cursor: pointer;
    line-height: 0;
    padding: 4px;
}

/* Menu scrollable body */
.t1-mobile-menu__body {
    flex: 1;
    overflow-y: auto;
    padding: 30px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Mobile menu section */
.t1-mobile-menu__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #b5b5b5;
    line-height: 20px;
}

.t1-mobile-menu__section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Product cards */
.t1-mobile-menu__products {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.t1-mobile-menu__product {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: var(--t1-radius-md);
    transition: background 0.15s;
}

.t1-mobile-menu__product:hover {
    background: var(--t1-bg-light);
}

.t1-mobile-menu__product-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.t1-mobile-menu__product-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.t1-mobile-menu__product-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--t1-text-primary);
}

.t1-mobile-menu__product-desc {
    font-size: 14px;
    color: #616161;
}

/* Menu links */
.t1-mobile-menu__links {
    display: flex;
    flex-direction: column;
}

.t1-mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--t1-text-primary);
    text-decoration: none;
}

.t1-mobile-menu__link:hover {
    text-decoration: underline;
}

.t1-mobile-menu__link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ========================================
   Hero Section
======================================== */
.t1-hero {
    background-color: var(--t1-brand-dark);
    padding-top: 136px;
    padding-bottom: 136px;
    overflow: hidden;
    border-radius: 0px 0px 12px 12px;
}

.t1-hero .t1-section__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.t1-hero__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 60px;
}

.t1-hero__badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.t1-hero__title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--t1-text-secondary);
    letter-spacing: -0.5px;
}

.t1-hero__subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--t1-text-secondary);
    max-width: 480px;
}

.t1-hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.t1-hero__video {
    flex: 1;
    max-width: 520px;
    max-height: 390px;
    border-radius: 12px;
    overflow: hidden;
    pointer-events: none;
}

.t1-hero__video video {
    width: 100%;
    height: auto;
}

/* ========================================
   Built for Growth Section
======================================== */
.t1-growth {
    background-color: var(--t1-bg-white);
    padding-top: var(--t1-section-padding-y);
    padding-bottom: var(--t1-section-padding-y);
}

.t1-growth .t1-section__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.t1-growth__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.t1-growth__product {
}

.t1-product-introduce--container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.t1-product-introduce--container.reverse {
    flex-direction: row-reverse;
}

.t1-product-desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 480px;
}

.t1-product-logo {
    width: 229px;
    height: auto;
}

.t1-product-desc--title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 125%;
}

.t1-product-desc--subtitle {
    font-size: 1.125rem;
    line-height: 30px;
    font-weight: 400;
}

.t1-product-desc__action-field {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.t1-product-desc__action-field a {
    border-radius: 8px;
}

.t1-product__feature-container {
    width: 100%;
    max-width: 590px;
    min-width: 500px;
    height: 420px;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
    pointer-events: none;
}

.t1-product__feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 auto;
    height: fit-content;
    animation: scrollDown 5s linear infinite;
    will-change: transform;
}

.t1-product__feature-list.bottom-to-top {
    animation-direction: reverse;
}

.t1-growth__cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.t1-growth__card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: var(--t1-bg-light);
    border-radius: var(--t1-radius-lg);
    overflow: hidden;
    min-height: 380px;
}

.t1-growth__card:nth-child(even) {
    flex-direction: row-reverse;
}

.t1-growth__card-content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.t1-growth__card-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.t1-growth__card-logo img {
    height: 28px;
    width: auto;
}

.t1-growth__card-logo span {
    font-size: 1.125rem;
    font-weight: 600;
}

.t1-growth__card-name {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.t1-growth__card-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--t1-text-muted);
}

.t1-growth__card-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.t1-growth__card-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.t1-growth__card-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: var(--t1-radius-md);
}

/* ========================================
   Platform Section (Bento Grid)
======================================== */
.t1-platform {
    background-color: var(--t1-bg-light);
    padding-top: var(--t1-section-padding-y);
    padding-bottom: var(--t1-section-padding-y);
}

.t1-platform .t1-section__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.t1-platform__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.t1-platform__title {
    font-weight: 700;
    line-height: 1.2;
}

.t1-platform__pillars {
    display: grid;
    gap: 24px;
    grid-template-columns: 400px 272px 1fr;
    grid-template-areas:
        "rating  global  global"
        "vision  ai      img"
        "revenue ai      img";
}

.t1-platform__card {
    border-radius: 12px;
    background-color: var(--t1-bg-white);
}

.t1-platform__rating {
    grid-area: rating;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: flex-end;
    align-items: center;
    padding: 44px 16px 0px;
}

.t1-platform__shopify-rating {
    max-width: 235px;
    height: auto;
}

.t1-platform__shopify-rating-img {
    width: 100%;
    max-width: 313px;
    height: auto;
}

.t1-platform__shopify-rating-img img {
    width: 100%;
    height: auto;
}

.t1-platform__global {
    grid-area: global;
    position: relative;
    background-image: url("./assets/images/platform/global-bg.png") !important;
    background-size: cover;
}

.t1-platform__global::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.t1-platform__global-earth {
    position: absolute;
    top: 50%;
    right: -10px;
    max-width: 373px;
    height: auto;
    transform: translateY(-50%);
    z-index: 2;
}

.t1-platform__global-content{
    max-width: 310px;
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY( -50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
}

.t1-platform__global-content span{
    background: linear-gradient(154deg, #C0E52B 9.03%, #7BD50C 92.17%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 600px;
}

.t1-platform__global-content h3{
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--t1-text-primary);
}

.t1-platform__vision {
    grid-area: vision;
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.t1-platform__vision img{
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.t1-platform__vision-text, .t1-platform__revenue-text, .t1-platform__ai--feature-text{
    font-size: 1.625rem;
    font-weight: 900;
}

.t1-platform__ai--feature-text{
    text-align: center;
}

.t1-platform__vision span{
    font-size: 1rem;
    font-weight: 600;
    color: #B5B5B5;
}

.t1-platform__revenue {
    grid-area: revenue;
    padding: 32px 0px 0px 32px;
    max-height: 183px;
    overflow: hidden;
    position: relative;
    height: 183px

}

.t1-platform__revenue-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.t1-platform__revenue img{
    max-width: 368px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
}

.t1-platform__ai--feature {
    grid-area: ai;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.t1-platform__ai--feature-content{
    position: relative;
    top: -40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 24px;
}

.t1-platform__ai--feature-content span{
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
}

.t1-platform__img {
    grid-area: img;
}

.t1-platform__img img{
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 12px;
}

.t1-platform__card {
    background: var(--t1-bg-white);
    border-radius: var(--t1-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.t1-platform__card--wide {
    grid-column: span 2;
}

.t1-platform__card-img {
    width: 100%;
    overflow: hidden;
}

.t1-platform__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t1-platform__card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.t1-platform__card-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--t1-text-muted);
}

.t1-platform__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.t1-platform__card-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--t1-text-muted);
}

/* Row layout for bento items */
.t1-platform__row {
    display: flex;
    gap: 16px;
}

.t1-platform__row .t1-platform__card {
    flex: 1;
}

.t1-platform__row .t1-platform__card--wide {
    flex: 2;
}

/* ========================================
   Latest Updates Section
======================================== */
.t1-updates {
    background-color: var(--t1-brand-dark);
    background-image: url("./assets/images/last-updates/lastest-update-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: var(--t1-section-padding-y);
    padding-bottom: var(--t1-section-padding-y);
}

.t1-updates .t1-section__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.t1-updates__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.t1-updates__title {
    font-weight: 700;
    line-height: 1.2;
    color: var(--t1-text-secondary);
}

.t1-updates__subtitle {
    color: var(--t1-text-secondary)
}

.t1-updates__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.t1-updates__card {
    border-radius: var(--t1-radius-md) var(--t1-radius-md) 0 0;
    overflow: hidden;
    height: 345px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.t1-updates__card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 12px;
}

.t1-updates__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t1-updates__card-img--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #282828;
}

.t1-updates__card-img--fallback .t1-updates__card-logo {
    width: auto;
    height: auto;
    max-width: 120px;
    object-fit: contain;
}

.t1-updates__card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
}

.t1-updates__card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.t1-updates__card-tag {
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    color: rgba(255, 255, 255, 0.5);
}

.t1-updates__card-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    color: var(--t1-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.t1-updates__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: var(--t1-text-secondary);
}

.t1-updates__card-link svg {
    width: 18px;
    height: 13px;
    transition: transform 0.2s;
}

.t1-updates__card-link:hover svg {
    transform: translateX(4px);
}

.t1-updates__actions {
    margin-top: 8px;
}

/* ========================================
   Trusted By Section
======================================== */
.t1-trusted {
    background-color: var(--t1-bg-white);
    padding: 200px 30px 0;
}

.t1-trusted .t1-section__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.t1-trusted__title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--t1-text-muted);
    text-align: center;
}

.t1-trusted__title strong {
    color: var(--t1-text-primary);
    font-weight: 700;
}

.t1-trusted__marquee {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.t1-trusted__logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    white-space: nowrap;
    animation: t1-marquee 30s linear infinite;
}

.t1-trusted__marquee {
    display: flex;
    gap: 40px;
}

.t1-trusted__logos img {
    height: 64px;
    width: auto;
    flex-shrink: 0;
}

/* ========================================
   CTA Section
======================================== */
.t1-cta {
    background-color: var(--t1-bg-white);
    padding-top: var(--t1-section-padding-y);
    padding-bottom: var(--t1-section-padding-y);
}

.t1-cta .t1-section__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
}

.t1-cta__content {
    width: 570px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.t1-cta__title {
    font-size: 46px;
    font-weight: 900;
    line-height: 64px;
    color: var(--t1-text-primary);
}

.t1-cta__subtitle {
    font-size: 18px;
    line-height: 32px;
    color: var(--t1-text-primary);
}

.t1-cta__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.t1-cta__actions .t1-btn {
    height: 54px;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--t1-radius-md);
}

.t1-cta__images {
    flex: 1;
    display: flex;
    gap: 16px;
}

.t1-cta__images-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.t1-cta__images-col:first-child img:nth-child(1),
.t1-cta__images-col:first-child img:nth-child(3) {
    height: 111px;
}

.t1-cta__images-col:first-child img:nth-child(2) {
    height: 162px;
}

.t1-cta__images-col:last-child img:first-child {
    height: 111px;
}

.t1-cta__images-col:last-child img:last-child {
    height: 289px;
}

.t1-cta__images img {
    width: 100%;
    border-radius: var(--t1-radius-md);
    object-fit: cover;
}

/* ========================================
   Footer
======================================== */
.t1-footer {
    background-color: var(--t1-bg-light);
    padding-top: 100px;
    padding-bottom: 40px;
}

.t1-footer .t1-section__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.t1-footer__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.t1-footer__card {
    background: var(--t1-bg-white);
    border-radius: var(--t1-radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.t1-footer__card--gradient {
    background: linear-gradient(180deg, #ffffff 0%, #edeffd 100%);
    border: 1px solid #ffffff;
    position: relative;
}

.t1-footer__card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--t1-text-primary);
}

.t1-footer__card-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.t1-footer__card-links a {
    font-size: 16px;
    color: var(--t1-text-primary);
    transition: opacity 0.15s;
}

.t1-footer__card-links a:hover {
    text-decoration: underline;
}

.t1-footer__card-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Subscribe */
.t1-footer__subscribe {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.t1-footer__subscribe p {
    font-size: 16px;
    color: var(--t1-text-primary);
    line-height: 1.5;
}

.t1-footer__subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 15px;
}

.t1-footer__subscribe-form input,
.t1-footer__subscribe-form .wpcf7-form-control[type="email"] {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid var(--t1-border);
    border-radius: var(--t1-radius-md);
    font-size: 16px;
    font-family: "Be Vietnam Pro", sans-serif;
    outline: none;
    transition: border-color 0.15s;
}

.t1-footer__subscribe-form input:focus,
.t1-footer__subscribe-form .wpcf7-form-control[type="email"]:focus {
    border-color: var(--t1-brand-dark);
}

.t1-footer__subscribe-form button,
.t1-footer__subscribe-form .wpcf7-submit {
    width: 100%;
    height: 54px;
    padding: 10px 30px;
    border-radius: var(--t1-radius-md);
    font-size: 16px;
    font-weight: 600;
    font-family: "Be Vietnam Pro", sans-serif;
    cursor: pointer;
    transition: opacity 0.15s;
}

.t1-footer__subscribe-form button:hover,
.t1-footer__subscribe-form .wpcf7-submit:hover {
    opacity: 0.9;
}

/* Join card */
.t1-footer__join {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.t1-footer__join-desc {
    font-size: 16px;
    color: var(--t1-text-primary);
    line-height: 1.5;
    margin-top: 16px;
}

.t1-footer__join-link {
    margin-top: 31px;
    font-size: 18px;
    font-weight: 700;
    color: var(--t1-text-primary);
    transition: opacity 0.15s;
}

.t1-footer__join-link:hover {
    opacity: 0.7;
}

.t1-footer__join-img {
    position: absolute;
    bottom: 0;
    right: -60px;
    width: 308px;
    height: 152px;
    object-fit: cover;
    z-index: 0;
}

/* Footer bottom bar */
.t1-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--t1-bg-white);
    border-radius: var(--t1-radius-md);
    padding: 24px;
    overflow: hidden;
}

.t1-footer__bottom-logo img {
    height: 48px;
    width: auto;
}

.t1-footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.t1-footer__bottom-links a {
    font-size: 14px;
    color: var(--t1-text-primary);
    transition: opacity 0.15s;
}

.t1-footer__bottom-links a:hover {
    opacity: 0.7;
}

.t1-footer__bottom-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.t1-footer__bottom-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: opacity 0.15s;
}

.t1-footer__bottom-social a:hover {
    opacity: 0.7;
}

.t1-footer__bottom-social img {
    width: 32px;
    height: 32px;
}

/* ========================================
   CF7 Overrides
======================================== */
.wpcf7-response-output {
    position: fixed;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadedIn 0.15s ease-in-out;
    border: none !important;
    outline: none;
    background-color: #1a1a1a;
    color: var(--t1-bg-white);
    padding: 0.75rem !important;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    z-index: 999999;
}

.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 0.875rem;
}

.t1-contact-email--field {
    margin-bottom: 16px;
}

.t1-contact-submit--btn {
    background: var(--t1-brand-dark);
    color: var(--t1-text-secondary);
    border: 1px solid var(--t1-brand-dark);
}

.t1-contact-submit--btn:hover {
    background: var(--t1-bg-white);
    color: var(--t1-text-primary);
    border-color: var(--t1-text-primary);
}

/* ========================================
   Responsive - Tablet (max-width: 992px)
======================================== */
@media (max-width: 992px) {
    :root {
        --t1-section-padding-y: 80px;
    }

    /* Header */
    .t1-header {
        padding: 16px;
        z-index: 100;
    }

    .t1-header__nav {
        display: none;
    }

    .t1-header__cta {
        display: none;
    }

    .t1-header__mobile-actions {
        display: flex;
    }

    .t1-header__logo img {
        width: 130px;
    }

    /* Hero */
    .t1-hero .t1-section__inner {
        flex-direction: column;
        text-align: center;
    }

    .t1-hero__content {
        align-items: center;
        padding-bottom: 40px;
    }

    .t1-hero__badges {
        justify-content: center;
    }

    .t1-hero__subtitle {
        max-width: 100%;
    }

    .t1-hero__actions {
        justify-content: center;
    }

    /* Growth */
    .t1-product-introduce--container,
    .t1-product-introduce--container.reverse {
        flex-direction: column;
    }

    .t1-product__feature-container {
        min-width: unset;
        max-width: 100%;
        width: 100%;
    }

    .t1-growth__header {
        text-align: left;
        align-items: flex-start;
    }

    /* Platform */
    .t1-platform__pillars {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "rating  global"
            "vision  ai"
            "revenue ai";
    }

    .t1-platform__img {
        display: none;
    }

    .t1-platform__ai--feature lottie-player {
        max-width: 272px;
    }

    .t1-platform__grid {
        grid-template-columns: 1fr 1fr;
    }

    .t1-platform__card--wide {
        grid-column: span 2;
    }

    .t1-platform__row {
        flex-direction: column;
    }

    .t1-platform__global-content {
        left: 0;
    }

    /* Updates */
    .t1-updates__grid {
        grid-template-columns: 1fr 1fr;
    }

    /* CTA */
    .t1-cta .t1-section__inner {
        flex-direction: column;
        text-align: center;
    }

    .t1-cta__content {
        width: 100%;
        align-items: center;
    }

    .t1-cta__subtitle {
        max-width: 100%;
    }

    .t1-cta__actions {
        justify-content: center;
    }

    /* Footer */
    .t1-footer__cards {
        grid-template-columns: 1fr;
    }

    .t1-footer__join {
        max-width: 600px;
    }

}

/* ========================================
   Responsive - Mobile (max-width: 768px)
======================================== */
@media (max-width: 768px) {
    .t1-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Hero */
    .t1-hero__title {
        font-size: 46px;
    }

    .t1-hero__subtitle {
        font-size: 18px;
        line-height: 30px;
    }

    .t1-hero {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .t1-hero .t1-section__inner {
        text-align: left;
    }

    .t1-hero__content {
        align-items: flex-start;
    }

    .t1-hero__badges {
        justify-content: flex-start;
    }

    .t1-hero__actions {
        justify-content: flex-start;
    }

    /* Growth products */
    .t1-product-desc--title {
        font-size: 40px;
    }

    .t1-product-desc__action-field {
        flex-direction: column;
        width: 100%;
    }

    .t1-product-desc__action-field .t1-btn {
        width: 100%;
        justify-content: center;
    }

    /* Sections */
    .t1-growth__title,
    .t1-platform__title,
    .t1-updates__title {
        font-size: 46px;
        line-height: 64px;
    }

    .t1-cta__title {
        font-size: 46px;
        line-height: 64px;
    }

    .t1-trusted__title {
        font-size: 32px;
        line-height: 48px;
    }

    /* Platform header - left aligned */
    .t1-platform__header {
        text-align: left;
        align-items: flex-start;
    }

    .t1-platform__img {
        display: block;
    }

    /* Platform pillars - mobile grid */
    .t1-platform__pillars {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "rating  rating"
            "global  global"
            "vision  vision"
            "revenue revenue"
            "ai      img";
    }

    .t1-platform__global {
        min-height: 372px;
    }

    .t1-platform__global-content {
        left: 20px;
    }

    .t1-platform__global-content h3 {
        font-size: 40px;
    }

    .t1-platform__revenue {
        max-height: none;
        height: 183px;
    }

    /* Updates - left aligned */
    .t1-updates .t1-section__inner {
        align-items: flex-start;
    }

    .t1-updates__header {
        text-align: left;
        align-items: flex-start;
    }

    /* CTA - left aligned */
    .t1-cta .t1-section__inner {
        text-align: left;
    }

    .t1-cta__content {
        align-items: flex-start;
    }

    .t1-cta__actions {
        justify-content: flex-start;
    }

    /* Footer */
    .t1-footer {
        padding-top: 80px;
    }

    .t1-footer__join {
        max-width: 400px;
    }

    /* Platform (legacy grid) */
    .t1-platform__grid {
        grid-template-columns: 1fr;
    }

    .t1-platform__card--wide {
        grid-column: span 1;
    }

    /* Updates */
    .t1-updates__grid {
        grid-template-columns: 1fr;
    }

    /* Footer Bottom */
    .t1-footer__bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .t1-footer__bottom-logo {
        order: 1;
    }

    .t1-footer__bottom-social {
        order: 2;
    }

    .t1-footer__bottom-links {
        order: 3;
    }
}

/* ========================================
   Responsive - Small Mobile (max-width: 490px)
======================================== */
@media (max-width: 490px) {
    .t1-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .t1-header {
        padding: 16px;
    }

    .t1-hero__title {
        font-size: 46px;
    }

    .t1-hero__subtitle {
        font-size: 18px;
        line-height: 30px;
    }

    .t1-hero__content {
        gap: 16px;
        padding-bottom: 24px;
    }

    .t1-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .t1-hero__actions .t1-btn {
        width: 100%;
    }

    .t1-product-desc--title {
        font-size: 40px;
    }

    .t1-growth__title,
    .t1-platform__title,
    .t1-updates__title {
        font-size: 46px;
        line-height: 64px;
    }

    .t1-cta__title {
        font-size: 46px;
        line-height: 64px;
    }

    .t1-cta__images {
        display: flex;
    }

    .t1-cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .t1-cta__actions .t1-btn {
        width: 100%;
    }

    .t1-cta__images-col img {
        height: auto !important;
    }

    .t1-trusted__logos {
        gap: 24px;
    }

    .t1-trusted__logos img {
        height: 20px;
    }

    .t1-footer__card {
        padding: 24px;
    }

    .t1-footer__card--gradient {
        height: 320px;
        padding-bottom: 0;
    }

    .t1-footer__join-img {
        right: -60px;
    }
}

/* ========================================
   Animations
======================================== */
@keyframes fadedIn {
    0% {
        opacity: 0;
        transform: translate(-50%, 100%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes scrollDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(calc(-50% - 10px));
    }
}

@keyframes t1-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 40px));
    }
}
