/* ============================================================
   Transindo Child — One-page Car Rental
   Palette: deep navy + sky blue, white, WA green, soft grey
   ============================================================ */

:root {
	--ti-navy: #1A3C5E;        /* Primary brand */
	--ti-navy-deep: #102a45;
	--ti-blue: #2a5a8a;
	--ti-blue-light: #e8f0f8;
	--ti-accent: #E8A020;      /* Secondary brand */
	--ti-wa: #25D366;          /* WhatsApp green */
	--ti-wa-deep: #128c7e;
	--ti-text: #102338;
	--ti-muted: #5b6b82;
	--ti-bg: #ffffff;
	--ti-bg-alt: #f5f8ff;
	--ti-border: #e3eaf6;
	--ti-shadow: 0 10px 30px rgba(11, 58, 130, 0.10);
	--ti-shadow-lg: 0 20px 50px rgba(11, 58, 130, 0.18);
	--ti-radius: 14px;
	--ti-radius-sm: 10px;
	--ti-radius-lg: 22px;
	--ti-container: 1180px;
	--ti-font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--ti-font-display: 'Poppins', var(--ti-font);
}

/* Reset & base ---------------------------------------------------- */
body.transindo-front {
	font-family: var(--ti-font);
	color: var(--ti-text);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
body.transindo-front .ti-wa-float * { box-sizing: border-box; }

/* ============================================================
   Elementor section enhancements — applied via custom CSS class
   on each section in the Elementor JSON.
   ============================================================ */

/* Sticky navbar */
.ti-el-navbar {
	position: sticky !important;
	top: 0;
	z-index: 80;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--ti-border);
	transition: box-shadow .2s ease, background .2s ease;
}
.ti-el-navbar.is-scrolled { box-shadow: 0 8px 24px rgba(26,60,94,0.08); }

/* Nav inline icon-list — turn into menu links */
.ti-el-navbar .elementor-widget-icon-list .elementor-icon-list-item a {
	padding: 6px 0;
	transition: color .2s ease;
	position: relative;
}
.ti-el-navbar .elementor-widget-icon-list .elementor-icon-list-item a::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--ti-blue);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}
.ti-el-navbar .elementor-widget-icon-list .elementor-icon-list-item a:hover::after { transform: scaleX(1); }

/* Hero: prevent images from being clipped */
.ti-el-hero .elementor-widget-image img {
	border-radius: 22px !important;
	box-shadow: 0 20px 50px rgba(11,58,130,0.18);
}

/* Hero overlay radial accents (decorative — set via ::before on the column) */
.ti-el-hero { position: relative; isolation: isolate; }
.ti-el-hero::before {
	content: '';
	position: absolute; inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(900px 500px at 85% -10%, rgba(255,255,255,0.18), transparent 60%),
		radial-gradient(600px 400px at 0% 100%, rgba(232,160,32,0.22), transparent 60%);
}

/* Layanan cards subtle hover */
.ti-el-layanan-card .elementor-element { transition: transform .25s ease; }
.ti-el-layanan-card:hover { transform: translateY(-4px); }
.ti-el-layanan-card {
	transition: transform .25s ease, box-shadow .25s ease;
	scroll-margin-top: 90px;
}

/* Make the icon-box rows in Kontak stack nicely with consistent spacing */
.ti-el-kontak .elementor-widget-icon-box + .elementor-widget-icon-box {
	margin-top: 14px;
}

/* Footer typography overrides for Elementor links inside text editor */
.ti-el-footer a { color: rgba(255,255,255,0.85) !important; text-decoration: none; }
.ti-el-footer a:hover { color: #fff !important; }

/* Universal: smooth scroll for anchor links */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

.ti-container {
	width: 100%;
	max-width: var(--ti-container);
	margin: 0 auto;
	padding: 0 22px;
}

/* Buttons --------------------------------------------------------- */
.ti-btn {
	display: inline-flex;
	align-items: center;
	gap: .55em;
	padding: 12px 22px;
	font-weight: 600;
	font-size: 14px;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
	white-space: nowrap;
	font-family: var(--ti-font);
}
.ti-btn:hover { transform: translateY(-2px); }
.ti-btn--lg { padding: 15px 28px; font-size: 15px; }
.ti-btn--sm { padding: 9px 16px; font-size: 13px; }
.ti-btn--primary { background: var(--ti-navy); color: #fff; box-shadow: 0 6px 18px rgba(11,58,130,0.3); }
.ti-btn--primary:hover { background: var(--ti-navy-deep); }
.ti-btn--ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.5); }
.ti-btn--ghost:hover { background: rgba(255,255,255,0.18); }
.ti-btn--wa {
	background: var(--ti-wa);
	color: #fff;
	box-shadow: 0 8px 22px rgba(37,211,102,0.35);
}
.ti-btn--wa:hover { background: var(--ti-wa-deep); color: #fff; }
.ti-btn--wa svg { fill: #fff; }
.ti-btn--wa-outline {
	background: #fff;
	color: var(--ti-wa-deep);
	border-color: var(--ti-wa);
}
.ti-btn--wa-outline:hover { background: rgba(37,211,102,0.08); color: var(--ti-wa-deep); }
.ti-btn--wa-outline svg { fill: var(--ti-wa-deep); }
.ti-btn--block { width: 100%; justify-content: center; }

/* Section frames -------------------------------------------------- */
.ti-section { padding: 92px 0; position: relative; }
.ti-section--alt { background: var(--ti-bg-alt); }
.ti-section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.ti-section__head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.ti-section__head p { font-size: 16px; }
.ti-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--ti-blue);
	background: var(--ti-blue-light);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 14px;
}

/* Navbar ---------------------------------------------------------- */
.ti-navbar {
	position: sticky;
	top: 0;
	z-index: 80;
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--ti-border);
	transition: box-shadow .2s ease, background .2s ease;
}
.ti-navbar.is-scrolled { box-shadow: 0 8px 24px rgba(11,58,130,0.08); background: rgba(255,255,255,0.98); }
.ti-navbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 22px;
}
.ti-logo { display: flex; align-items: center; gap: 12px; }
.ti-logo__mark {
	width: 42px; height: 42px;
	display: grid; place-items: center;
	background: linear-gradient(135deg, var(--ti-navy), var(--ti-blue));
	color: #fff;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(11,58,130,0.3);
}
.ti-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.ti-logo__text strong { font-family: var(--ti-font-display); font-size: 17px; color: var(--ti-text); }
.ti-logo__text small { font-size: 11px; color: var(--ti-muted); letter-spacing: .04em; }

.ti-nav { display: flex; align-items: center; gap: 24px; }
.ti-nav__menu { display: flex; gap: 28px; align-items: center; }
.ti-nav__menu a {
	font-size: 14px;
	font-weight: 500;
	color: var(--ti-text);
	position: relative;
	padding: 6px 0;
}
.ti-nav__menu a:hover { color: var(--ti-blue); }
.ti-nav__menu a::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--ti-blue);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}
.ti-nav__menu a:hover::after, .ti-nav__menu a.is-active::after { transform: scaleX(1); }

.ti-nav__toggle {
	display: none;
	background: none;
	border: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 8px;
}
.ti-nav__toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--ti-navy);
	transition: transform .25s ease, opacity .2s ease;
}
.ti-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ti-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ti-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero ------------------------------------------------------------ */
.ti-hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	padding: 80px 0 96px;
	background: linear-gradient(135deg, var(--ti-navy-deep) 0%, var(--ti-navy) 50%, var(--ti-blue) 100%);
	isolation: isolate;
}
.ti-hero__bg {
	position: absolute; inset: 0;
	z-index: -1;
	background:
		radial-gradient(900px 500px at 85% -10%, rgba(255,255,255,0.18), transparent 60%),
		radial-gradient(600px 400px at 0% 100%, rgba(232,160,32,0.22), transparent 60%);
}
.ti-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 50px;
	align-items: center;
}
.ti-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.25);
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .04em;
	margin-bottom: 22px;
}
.ti-hero__title {
	font-size: clamp(32px, 5vw, 54px);
	color: #fff;
	margin-bottom: 18px;
	line-height: 1.08;
}
.ti-hero__title .ti-hi { color: var(--ti-accent); }
.ti-hero__sub {
	display: block;
	font-size: clamp(15px, 1.6vw, 19px);
	font-weight: 500;
	color: rgba(255,255,255,0.85);
	margin-top: 14px;
	font-family: var(--ti-font);
	letter-spacing: 0;
}
.ti-hero__lead {
	color: rgba(255,255,255,0.9);
	font-size: 16px;
	max-width: 540px;
	margin-bottom: 28px;
}
.ti-hero__cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}
.ti-hero__bullets {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 24px;
	font-size: 14px;
	color: rgba(255,255,255,0.9);
}
.ti-hero__bullets li { display: flex; align-items: center; gap: 8px; }
.ti-hero__bullets span {
	display: inline-grid; place-items: center;
	width: 22px; height: 22px;
	background: rgba(37,211,102,0.95);
	color: #fff;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
}
.ti-hero__art { position: relative; }
.ti-hero__card {
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.22);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 28px;
	padding: 26px;
	box-shadow: var(--ti-shadow-lg);
	transform: rotate(-1.5deg);
	transition: transform .4s ease;
}
.ti-hero__card:hover { transform: rotate(0deg) scale(1.02); }
.ti-hero__card svg { width: 100%; height: auto; }
.ti-hero__badge {
	position: absolute;
	bottom: -18px;
	left: 22px;
	background: #fff;
	color: var(--ti-navy);
	padding: 16px 22px;
	border-radius: 18px;
	box-shadow: var(--ti-shadow-lg);
	font-family: var(--ti-font-display);
}
.ti-hero__badge strong { display: block; font-size: 22px; color: var(--ti-navy); }
.ti-hero__badge small { font-size: 12px; color: var(--ti-muted); font-weight: 500; }

/* Fleet grid ------------------------------------------------------ */
.ti-fleet__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
	gap: 26px;
}
.fleet-card {
	background: #fff;
	border-radius: var(--ti-radius-lg);
	overflow: hidden;
	box-shadow: var(--ti-shadow);
	border: 1px solid var(--ti-border);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	display: flex;
	flex-direction: column;
}
.fleet-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--ti-shadow-lg);
	border-color: rgba(30,99,212,0.4);
}
.fleet-card__media {
	position: relative;
	aspect-ratio: 16/10;
	background: linear-gradient(135deg, #f0f5ff, #dbe7ff);
	overflow: hidden;
}
.fleet-card__img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.fleet-card__img--placeholder { background: linear-gradient(135deg, var(--ti-navy), var(--ti-blue)); }
.fleet-card__tag {
	position: absolute;
	top: 14px; left: 14px;
	background: rgba(255,255,255,0.94);
	color: var(--ti-navy);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(11,58,130,0.18);
}
.fleet-card__body {
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.fleet-card__title {
	font-size: 19px;
	font-weight: 700;
	color: var(--ti-text);
	margin-bottom: 12px;
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}
.fleet-card__year {
	font-size: 13px;
	font-weight: 500;
	color: var(--ti-muted);
	background: var(--ti-bg-alt);
	padding: 2px 10px;
	border-radius: 999px;
}
.fleet-card__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
	font-size: 13px;
	color: var(--ti-muted);
	margin-bottom: 18px;
}
.fleet-card__specs li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	background: var(--ti-bg-alt);
	border-radius: 8px;
}
.fleet-card__specs svg { color: var(--ti-blue); }
.fleet-card__features {
	flex: 1 1 100%;
	background: transparent !important;
	color: var(--ti-muted);
	padding: 0 !important;
	font-size: 12.5px;
}
.fleet-card__foot {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px dashed var(--ti-border);
}

.ti-empty {
	text-align: center;
	padding: 40px;
	background: var(--ti-bg-alt);
	border-radius: var(--ti-radius-lg);
}

/* Accordion / Requirements --------------------------------------- */
.ti-accordion { max-width: 820px; margin: 0 auto; }
.ti-accordion__item {
	background: #fff;
	border: 1px solid var(--ti-border);
	border-radius: var(--ti-radius);
	margin-bottom: 14px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(11,58,130,0.05);
	transition: box-shadow .2s ease;
}
.ti-accordion__item.is-open { box-shadow: var(--ti-shadow); border-color: rgba(30,99,212,0.35); }
.ti-accordion__head {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	font-family: var(--ti-font-display);
	font-size: 16px;
	font-weight: 600;
	color: var(--ti-text);
	text-align: left;
}
.ti-accordion__head:hover { color: var(--ti-blue); }
.ti-accordion__chev { transition: transform .25s ease; color: var(--ti-blue); flex: 0 0 auto; }
.ti-accordion__item.is-open .ti-accordion__chev { transform: rotate(180deg); }
.ti-accordion__body {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease;
	padding: 0 24px;
}
.ti-accordion__item.is-open .ti-accordion__body {
	max-height: 480px;
	padding-bottom: 22px;
}
.ti-accordion__body ul { padding-left: 0; }
.ti-accordion__body li {
	position: relative;
	padding: 7px 0 7px 26px;
	color: var(--ti-muted);
	font-size: 14.5px;
}
.ti-accordion__body li::before {
	content: '';
	position: absolute;
	left: 4px; top: 14px;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--ti-blue);
}

/* Layanan Kami ---------------------------------------------------- */
.ti-layanan__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
	gap: 26px;
	max-width: 980px;
	margin: 0 auto;
}
.layanan-card {
	background: #fff;
	border-radius: var(--ti-radius-lg);
	padding: 32px 30px;
	border: 1px solid var(--ti-border);
	box-shadow: var(--ti-shadow);
	display: flex;
	flex-direction: column;
	gap: 18px;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	scroll-margin-top: 90px;
}
.layanan-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ti-shadow-lg);
	border-color: rgba(30,99,212,0.4);
}
.layanan-card--tour { background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%); }
.layanan-card--ferry { background: linear-gradient(180deg, #ffffff 0%, #effaf3 100%); }
.layanan-card__head {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.layanan-card__icon {
	flex: 0 0 auto;
	width: 56px; height: 56px;
	display: grid; place-items: center;
	background: var(--ti-blue-light);
	border-radius: 16px;
	font-size: 28px;
	line-height: 1;
}
.layanan-card--ferry .layanan-card__icon { background: rgba(37,211,102,0.14); }
.layanan-card__head h3 {
	font-size: 21px;
	margin-bottom: 6px;
}
.layanan-card__head p {
	margin: 0;
	font-size: 14.5px;
	color: var(--ti-muted);
}
.layanan-card__list {
	display: grid;
	gap: 8px;
}
.layanan-card__list li {
	position: relative;
	padding-left: 26px;
	font-size: 14px;
	color: var(--ti-text);
}
.layanan-card__list li::before {
	content: '✓';
	position: absolute;
	left: 0; top: 0;
	width: 18px; height: 18px;
	display: grid; place-items: center;
	background: var(--ti-wa);
	color: #fff;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 700;
}
.layanan-card__actions {
	margin-top: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.layanan-card__actions .ti-btn { flex: 1 1 auto; justify-content: center; min-width: 140px; }

/* Contact --------------------------------------------------------- */
.ti-contact { padding: 92px 0; background: linear-gradient(180deg, var(--ti-bg) 0%, var(--ti-bg-alt) 100%); }
.ti-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.ti-contact__intro h2 { font-size: clamp(28px, 4vw, 40px); }
.ti-contact__intro p { font-size: 16px; max-width: 480px; margin-bottom: 24px; }
.ti-contact__list { display: grid; gap: 18px; }
.ti-contact__list li {
	display: flex;
	gap: 16px;
	background: #fff;
	padding: 18px 22px;
	border-radius: var(--ti-radius);
	border: 1px solid var(--ti-border);
	box-shadow: 0 4px 14px rgba(11,58,130,0.05);
}
.ti-contact__list strong {
	display: block;
	font-family: var(--ti-font-display);
	font-size: 13px;
	font-weight: 700;
	color: var(--ti-navy);
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 4px;
}
.ti-contact__list a, .ti-contact__list span { color: var(--ti-text); font-size: 15px; }
.ti-contact__list a:hover { color: var(--ti-blue); }
.ti-contact__icon {
	flex: 0 0 auto;
	width: 44px; height: 44px;
	background: var(--ti-blue-light);
	color: var(--ti-blue);
	border-radius: 12px;
	display: grid;
	place-items: center;
}

/* Footer ---------------------------------------------------------- */
.ti-footer { background: #061a3d; color: rgba(255,255,255,0.85); padding: 64px 0 0; margin-top: 0; }
.ti-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.2fr;
	gap: 40px;
	padding-bottom: 40px;
}
.ti-footer__brand strong {
	display: block;
	font-family: var(--ti-font-display);
	font-size: 18px;
	color: #fff;
	margin-bottom: 10px;
}
.ti-footer__brand p { color: rgba(255,255,255,0.7); font-size: 14px; max-width: 360px; }
.ti-footer__col h4 {
	font-family: var(--ti-font-display);
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: .1em;
}
.ti-footer__col ul li {
	padding: 5px 0;
	font-size: 14px;
	color: rgba(255,255,255,0.75);
}
.ti-footer__col ul a { color: rgba(255,255,255,0.75); transition: color .2s ease; }
.ti-footer__col ul a:hover { color: #fff; }
.ti-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 22px 0;
}
.ti-footer__bottom small { color: rgba(255,255,255,0.55); font-size: 13px; }

/* Floating WA ----------------------------------------------------- */
.ti-wa-float {
	position: fixed;
	bottom: 22px;
	right: 22px;
	z-index: 90;
	width: 60px; height: 60px;
	background: var(--ti-wa);
	color: #fff;
	border-radius: 50%;
	display: grid;
	place-items: center;
	box-shadow: 0 12px 30px rgba(37,211,102,0.45);
	transition: width .25s ease, box-shadow .2s ease, transform .15s ease;
	overflow: hidden;
}
.ti-wa-float:hover { transform: translateY(-3px); }
.ti-wa-float::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
	animation: ti-pulse 2s infinite;
}
@keyframes ti-pulse {
	0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
	70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
	100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.ti-wa-float__label {
	max-width: 0;
	overflow: hidden;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 600;
	margin-left: 0;
	transition: max-width .3s ease, margin .3s ease;
}
.ti-wa-float:hover {
	width: auto;
	padding: 0 22px 0 14px;
	border-radius: 999px;
	gap: 8px;
}
.ti-wa-float:hover .ti-wa-float__label { max-width: 200px; margin-left: 4px; }

/* Responsive ------------------------------------------------------ */
@media (max-width: 980px) {
	.ti-hero__grid, .ti-contact__grid { grid-template-columns: 1fr; }
	.ti-hero { padding: 64px 0 90px; }
	.ti-hero__art { order: -1; max-width: 460px; margin: 0 auto; }
	.ti-footer__grid { grid-template-columns: 1fr 1fr; }
	.ti-section { padding: 70px 0; }
}

@media (max-width: 760px) {
	.ti-nav__toggle { display: flex; }
	.ti-nav__menu {
		position: absolute;
		top: 100%;
		right: 16px;
		left: 16px;
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 14px;
		border-radius: var(--ti-radius);
		border: 1px solid var(--ti-border);
		box-shadow: var(--ti-shadow-lg);
		transform: translateY(-10px);
		opacity: 0;
		pointer-events: none;
		transition: opacity .2s ease, transform .2s ease;
	}
	.ti-nav__menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
	.ti-nav__menu li { width: 100%; }
	.ti-nav__menu a { padding: 12px 8px; display: block; border-bottom: 1px solid var(--ti-border); }
	.ti-nav__menu li:last-child a { border-bottom: 0; }
	.ti-nav__cta { display: none; }
	.ti-hero__bullets { grid-template-columns: 1fr; }
	.ti-hero__title { font-size: 32px; }
	.ti-footer__grid { grid-template-columns: 1fr; gap: 30px; }
	.ti-wa-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
	.ti-wa-float__label { display: none; }
}

@media (max-width: 460px) {
	.ti-logo__text small { display: none; }
	.ti-hero__cta .ti-btn { flex: 1; justify-content: center; }
}
