/* ===================================================
   DIFC SPV LANDING PAGE — styles.css
   Color palette:
     Gold:       #eb6d12  /  #C9A84C  (light)
     Dark Green: #eb6d12
     Cream BG:   #fde8d5
     Text:       #1f0e00  /  #555
=================================================== */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1f0e00;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    /* accounts for sticky bottom bar */
}

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

ul {
    list-style: none;
}

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

/* ---------- CONTAINER ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- TYPOGRAPHY UTILITIES ---------- */
.gold-text {
    color: #eb6d12;
}

.section-tag {
    display: inline-block;
    background: rgba(235, 109, 18, 0.12);
    color: #eb6d12;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-tag--light {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* ── Hero dark image overlay: gold-text → white ── */
.hero .gold-text {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* footer logo SPV strong text */
.footer strong {
    color: #eb6d12;
}

/* ── Section tags on dark sections ── */
.features-section .section-tag,
.cta-section .section-tag {
    background: rgba(235, 109, 18, 0.15);
    color: #eb6d12;
    border: 1px solid rgba(235, 109, 18, 0.35);
}

/* ── Orange buttons inside the black features section ── */
.features-section .btn-gold {
    background: #eb6d12;
    color: #fff;
    border-color: #eb6d12;
}

.features-section .btn-gold:hover {
    background: #d45c00;
    border-color: #d45c00;
    color: #fff;
    box-shadow: 0 8px 28px rgba(235, 109, 18, 0.4);
}

/* ── CTA section (light #fff2ec): gold-text stays orange ── */
.cta-section .gold-text {
    color: #eb6d12;
}

/* ── Orange buttons inside CTA section (light bg) ── */
.cta-section .btn-gold {
    background: #eb6d12;
    color: #fff;
    border-color: #eb6d12;
}

.cta-section .btn-gold:hover {
    background: #d45c00;
    border-color: #d45c00;
    color: #fff;
}


/* hero section-tag stays white pill */
.hero .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}



.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

.section-header--left {
    text-align: left;
}

.anim-line {
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #eb6d12, #C9A84C);
    border-radius: 2px;
    margin: 18px auto 0;
}

.section-header--left .anim-line {
    margin-left: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-gold {
    background: #fff;
    color: #eb6d12;
    border: 2px solid #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    background: #fff3e8;
    border-color: #fff3e8;
    color: #c45500;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #fff;
}

.btn-outline-white {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-nav {
    background: linear-gradient(135deg, #eb6d12, #C9A84C);
    color: #fff;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 6px;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
    background: transparent;
}

.navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.logo strong {
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #eb6d12, #C9A84C);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.nav-links {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    margin-left: auto;
}

/* Scrolled navbar — dark text on white bg */
.navbar.scrolled .logo {
    color: #1a1a1a;
}

.navbar.scrolled .logo strong {
    color: #eb6d12;
}

.navbar.scrolled .nav-links a {
    color: #333;
}

.navbar.scrolled .nav-links a:hover {
    background: #fff3e8;
    color: #eb6d12;
}

.navbar.scrolled .hamburger {
    color: #333;
}


/* ---------- MOBILE MENU ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, #0c1a35, #1a2e55);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.mobile-menu a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1600&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(12, 26, 53, 0.78) 0%, rgba(12, 26, 53, 0.55) 60%, rgba(235, 109, 18, 0.3) 100%),
        radial-gradient(ellipse at 30% 60%, rgba(235, 109, 18, 0.22) 0%, transparent 55%);
}

/* decorative circles */
.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(235, 109, 18, 0.15);
}

.hero-bg::before {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.hero-bg::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 70px;
}

.stat strong {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.stat span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
}

.stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* HERO FORM */
.hero-form-wrap {
    position: relative;
    z-index: 1;
}

.hero-form-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 2px solid #fde8d5;
}

.form-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #eb6d12;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.form-header p {
    color: #888;
    font-size: 13px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.input-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon i {
    position: absolute;
    left: 14px;
    color: rgba(235, 109, 18, 0.7);
    font-size: 14px;
    z-index: 1;
}

.input-icon input,
.input-icon select {
    width: 100%;
    background: #f9f5f2;
    border: 1.5px solid #f0ddd0;
    border-radius: 8px;
    padding: 12px 14px 12px 40px;
    color: #1f0e00;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.input-icon input::placeholder {
    color: #bbb;
}

.input-icon input:focus,
.input-icon select:focus {
    border-color: #eb6d12;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(235, 109, 18, 0.15);
}

.input-icon select option {
    background: #fff;
    color: #1f0e00;
}

textarea {
    width: 100%;
    background: #f9f5f2;
    border: 1.5px solid #f0ddd0;
    border-radius: 8px;
    padding: 12px 14px;
    color: #1f0e00;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    resize: vertical;
    min-height: 100px;
}

textarea::placeholder {
    color: #bbb;
}

textarea:focus {
    border-color: #eb6d12;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(235, 109, 18, 0.15);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 52px;
    color: #eb6d12;
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 22px;
    color: #eb6d12;
    margin-bottom: 10px;
}

.form-success p {
    color: #555;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
    background: #eb6d12;
    border-bottom: none;
    padding: 24px 0;
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 6px 12px;
}

.trust-item i {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

.trust-div {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

/* ---------- WHAT IS SECTION ---------- */
.what-is-section {
    padding: 100px 0;
    background: rgb(245, 243, 239);
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.what-is-img {
    position: relative;
    height: 460px;
    border-radius: 16px;
    overflow: hidden;
}

.what-is-img-inner {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(235, 109, 18, 0.25) 0%, rgba(45, 16, 0, 0.65) 100%),
        url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=800&q=80') center/cover;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.what-is-img:hover .what-is-img-inner {
    transform: scale(1.04);
}

.img-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    font-size: 13px;
    font-weight: 600;
    color: #1f0e00;
    white-space: nowrap;
}

.img-badge i {
    color: #eb6d12;
    font-size: 18px;
}

.img-badge--top {
    top: 20px;
    left: 20px;
}

.img-badge--bottom {
    bottom: 20px;
    right: 20px;
}

.what-is-content>p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.what-is-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.wi-feat {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fde8d5;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(235, 109, 18, 0.12);
    transition: transform 0.25s, box-shadow 0.25s;
}

.wi-feat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(235, 109, 18, 0.12);
}

.wi-feat-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #eb6d12, #C9A84C);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.wi-feat h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1f0e00;
    margin-bottom: 4px;
}

.wi-feat p {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
}

/* ---------- WHY DIFC ---------- */
.why-section {
    padding: 100px 0;
    background: #fff2ec;
}

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

.why-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(235, 109, 18, 0.12);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #eb6d12, #C9A84C);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(235, 109, 18, 0.14);
    border-color: rgba(235, 109, 18, 0.3);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(235, 109, 18, 0.12), rgba(201, 168, 76, 0.08));
    border: 1px solid rgba(235, 109, 18, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #eb6d12;
    margin-bottom: 18px;
}

.why-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f0e00;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
}

/* ---------- KEY FEATURES + TABLE ---------- */
.features-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.features-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.features-list .section-header--left h2 {
    color: #fff;
}

.features-list .section-tag {
    background: rgba(235, 109, 18, 0.15);
    color: #eb6d12;
    border-color: rgba(235, 109, 18, 0.35);
}

.features-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.5;
}

.feature-list li i {
    color: #eb6d12;
    margin-top: 2px;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-list strong {
    color: #eb6d12;
    font-weight: 700;
}

/* TABLE */
.features-table-wrap {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    overflow: hidden;
}

.features-table-header {
    background: linear-gradient(135deg, #eb6d12, #C9A84C);
    padding: 22px 28px;
}

.features-table-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.features-table-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.feat-table {
    padding: 8px 0;
}

.feat-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 14px 24px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s;
}

.feat-row:hover {
    background: rgba(255, 255, 255, 0.08);
}

.feat-row--head {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    padding: 10px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feat-row--head:hover {
    background: none;
}

.feat-row span:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feat-row span:first-child i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.feat-check {
    color: #ffb347;
    font-size: 16px;
}

.feat-price {
    color: #fff;
    font-weight: 600;
}

.feat-row--total {
    background: rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
}

.feat-price--total {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

.table-note {
    padding: 12px 24px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
}

/* ---------- HOW TO REGISTER (STEPS) ---------- */
.steps-section {
    padding: 100px 0;
    background: rgb(245, 243, 239);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 28px;
    align-items: stretch;
}

.step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-num-circle {
    width: 52px;
    height: 52px;
    min-height: 52px;
    background: linear-gradient(135deg, #eb6d12, #C9A84C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 16px rgba(235, 109, 18, 0.3);
    flex-shrink: 0;
}

.step-connector {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, rgba(235, 109, 18, 0.5), rgba(235, 109, 18, 0.1));
    margin: 6px 0;
    min-height: 40px;
}

.step-body {
    padding: 6px 0 40px;
    flex: 1;
}

.step-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1f0e00;
    margin-bottom: 10px;
}

.step-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(235, 109, 18, 0.1);
    border: 1px solid rgba(235, 109, 18, 0.2);
    color: #eb6d12;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    background: #fff2ec;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(235, 109, 18, 0.2);
    top: -200px;
    right: -200px;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-split {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.cta-content .section-tag {
    margin-bottom: 12px;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 18px;
}

.cta-content>p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.cta-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.cta-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-size: 15px;
}

.cta-list i {
    color: #eb6d12;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* CTA MINI FORM */

.cta-form-card {
    background: #fff;
    border: 1.5px solid rgba(235, 109, 18, 0.2);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 8px 40px rgba(235, 109, 18, 0.1);
}

.cta-form-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.cta-form-success {
    text-align: center;
    color: #ffb347;
    font-size: 16px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cta-form-success i {
    font-size: 40px;
}

.cta-form-success p {
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- FOOTER ---------- */
.footer {
    background: #0a0a0a;
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid rgba(235, 109, 18, 0.3);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.footer-logo strong {
    color: #eb6d12;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    max-width: 560px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #eb6d12;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

/* ---------- STICKY BAR ---------- */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    background: transparent;
}

.sticky-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
}

.sticky-item:first-child {
    background: #000;
}

.sticky-item.whatsapp {
    background: #25D366;
}

.sticky-item.email {
    background: #eb6d12;
}

.sticky-item i {
    font-size: 18px;
}

.sticky-item:first-child:hover {
    background: #222;
    color: #fff;
}

.sticky-item.whatsapp:hover {
    background: #1da851;
    color: #fff;
}

.sticky-item.email:hover {
    background: #d45c00;
    color: #fff;
}

/* ---------- SCROLL ANIMATIONS ---------- */
[data-anim] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-anim="fadeUp"] {
    transform: translateY(40px);
}

[data-anim="fadeLeft"] {
    transform: translateX(-50px);
}

[data-anim="fadeRight"] {
    transform: translateX(50px);
}

[data-anim="popIn"] {
    transform: scale(0.8);
}

[data-anim].animated {
    opacity: 1;
    transform: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-form-wrap,
    .hero-stats {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .what-is-grid {
        grid-template-columns: 1fr;
    }

    .what-is-img {
        height: 320px;
    }

    .features-inner {
        grid-template-columns: 1fr;
    }

    .cta-split {
        grid-template-columns: 1fr;
    }

    .cta-form-wrap {
        max-width: 480px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .navbar .btn-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .what-is-section,
    .why-section,
    .features-section,
    .steps-section,
    .cta-section {
        padding: 60px 0;
    }

    .what-is-features {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .trust-inner {
        gap: 4px;
    }

    .trust-div {
        display: none;
    }

    .feat-row {
        grid-template-columns: 1.5fr auto auto;
        gap: 8px;
        font-size: 12px;
        padding: 12px 16px;
    }

    .step-body {
        padding-bottom: 28px;
    }

    .cta-split {
        gap: 48px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        padding: 16px 20px;
        gap: 4px;
    }

    .stat strong {
        font-size: 18px;
    }

    .hero-form-card {
        padding: 28px 20px;
    }

    .features-inner {
        gap: 40px;
    }

    .cta-form-card {
        padding: 24px 20px;
    }
}