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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #0b0f1a;
    color: #e2e8f0;
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom:60px;
}

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



.header-rt p strong {
    color: #000;
}

.ln-height-normal {
    line-height: normal;
}

.text-center {
    text-align: center;
}

.widget_text,
.textwidget {
    display: block;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo-fdr {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}

.header-form {
    flex-shrink: 0;
}

.header-form-inner {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px 4px 4px 16px;
    gap: 10px;
    transition: border-color 0.3s;
}

.header-form-inner:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-icon {
    color: #64748b;
    font-size: 14px;
}

.header-form-inner input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    width: 180px;
}

.header-form-inner input::placeholder {
    color: #64748b;
}

.header-form-inner button {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.header-form-inner button:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* ========== HERO ========== */
.hero {
    padding:50px 0 50px;
    position: relative;
    overflow: hidden;
    background: url('../images/chart-hero.jpg') center center / cover no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 12, 24, 0.92) 0%, rgba(11, 15, 26, 0.85) 50%, rgba(15, 20, 35, 0.92) 100%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-glow 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.1); }
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particle-float linear infinite;
    opacity: 0;
}

.p1 {
    width: 4px; height: 4px;
    background: #3b82f6;
    top: 20%; left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.p2 {
    width: 6px; height: 6px;
    background: #10b981;
    top: 60%; left: 80%;
    animation-duration: 15s;
    animation-delay: 2s;
}

.p3 {
    width: 3px; height: 3px;
    background: #f59e0b;
    top: 80%; left: 30%;
    animation-duration: 10s;
    animation-delay: 4s;
}

.p4 {
    width: 5px; height: 5px;
    background: #6366f1;
    top: 30%; left: 70%;
    animation-duration: 14s;
    animation-delay: 1s;
}

.p5 {
    width: 3px; height: 3px;
    background: #3b82f6;
    top: 50%; left: 50%;
    animation-duration: 11s;
    animation-delay: 3s;
}

.p6 {
    width: 4px; height: 4px;
    background: #10b981;
    top: 10%; left: 60%;
    animation-duration: 13s;
    animation-delay: 5s;
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        opacity: 0;
        transform: translateY(-200px) translateX(40px);
    }
}

/* Grid Lines Background */
.hero-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 80px;
}

/* iPhone Mockup */
.hero-left {
    flex: 0 0 320px;
    position: relative;
}

.iphone-mockup {
    margin: 0 auto;
    position: relative;
    animation: phone-tilt 6s ease-in-out infinite;
    transform: perspective(800px) rotateY(-8deg) rotateX(3deg);
}

@keyframes phone-tilt {
    0%, 100% {
        transform: perspective(800px) rotateY(-8deg) rotateX(3deg) translateY(0);
    }
    50% {
        transform: perspective(800px) rotateY(-4deg) rotateX(1deg) translateY(-10px);
    }
}

.iphone-frame {
    width: 280px;
    height: 580px;
    background: #1c1c1e;
    border-radius: 44px;
    border: 4px solid #3a3a3c;
    padding: 0;
    position: relative;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.iphone-notch-area {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.iphone-dynamic-island {
    width: 90px;
    height: 25px;
    background: #000;
    border-radius: 20px;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
}

.lock-screen-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #1a3a4a 0%, #0a1520 30%, #0d1b2a 60%, #1a2d3d 100%);
    display: flex;
    flex-direction: column;
    padding: 50px 16px 16px;
    position: relative;
}

.lock-top {
    text-align: center;
    margin-bottom: 20px;
}

.lock-day {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 4px;
}

.lock-time {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
}

/* Notifications */
.notifications {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    overflow: hidden;
}

.notif {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    border-radius: 16px;
    padding: 9px;
    animation: notifSlideIn 0.5s ease forwards;
    opacity: 0;
    transform: translateY(15px);
}

.notif-1 { animation-delay: 0.3s; }
.notif-2 { animation-delay: 1.1s; }
.notif-3 { animation-delay: 1.9s; }
.notif-4 { animation-delay: 2.7s; }

@keyframes notifSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notif-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #34c759, #28a745);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

.notif-content {
    flex: 1;
    min-width: 0;
}

.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

.notif-title {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.notif-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.notif-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Lock screen bottom */
.lock-bottom {
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
    margin-top: auto;
    padding-bottom: 10px;
}

.lock-flashlight,
.lock-camera {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.iphone-home-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    z-index: 10;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(99, 102, 241, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Hero Right */
.hero-right {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    position: relative;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.badge-pulse::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 14px;
    height: 14px;
    background: rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: badge-ping 1.5s ease-in-out infinite;
}

@keyframes badge-ping {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.8); opacity: 0; }
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.15;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-title .highlight {
 color: #ff6368;
}

.hero-subtitle {
    font-size: 17px;
    color: #b0bec5;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 100%;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle strong {
    color: #10b981;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom:20px;
    padding: 20px 28px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    width: fit-content;
    backdrop-filter: blur(12px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #34d399;
    text-shadow: 0 0 20px rgba(52, 211, 153, 0.4);
}

.stat-label {
    display: block;
    font-size: 11px;
    color: #cbd5e1;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

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

/* 3D Form Card */
.form-3d-wrapper {
    perspective: 1000px;
    margin-bottom: 20px;
    max-width: 100%;
}

.form-3d-card {
    background: linear-gradient(160deg, #1e293b, #0f172a);
    border: 1px solid rgba(52, 211, 153, 0.25);
    border-radius: 20px;
    padding:20px;
    position: relative;
    overflow: hidden;
    transform: rotateX(2deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(52, 211, 153, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.form-3d-card:hover {
    transform: rotateX(0deg) translateY(-6px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(52, 211, 153, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-color: rgba(52, 211, 153, 0.4);
}

.form-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 60%
    );
    animation: shine-sweep 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine-sweep {
    0%, 100% { transform: translateX(-30%) translateY(-30%) rotate(25deg); }
    50% { transform: translateX(30%) translateY(30%) rotate(25deg); }
}

.form-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-card-title i {
   color: #fd7074;
    font-size: 20px;
}

/* Hero Form */
.hero-form .form-group {
    display: flex;
    gap: 0;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 5px;
}

.hero-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    padding: 14px 18px;
}

.hero-form input::placeholder {
    color: #64748b;
}

.hero-form button {
    background: linear-gradient(135deg, #e31e24, #fb5257);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
    position: relative;
    overflow: hidden;
}

.hero-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.hero-form button:hover::before {
    left: 100%;
}

.hero-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.form-card-note {
    font-size: 12px;
    color: #64748b;
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-card-note i {
    color: #10b981;
    font-size: 13px;
}

.form-consent {
  font-size: 11px;
  color: #afb5bc;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 100%;
}

.form-consent strong {
    color: #94a3b8;
}

.form-consent a {
    color: #60a5fa;
    text-decoration: underline;
    transition: color 0.2s;
}

.form-consent a:hover {
    color: #93c5fd;
}

/* ========== SECTIONS COMMON ========== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
    text-align: center;
    margin-bottom: 50px;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.how-it-works .section-title {
    color: #0f172a;
}

.how-it-works .section-subtitle {
    color: #475569;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step {
    text-align: center;
    padding: 30px 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    flex: 1;
    max-width: 280px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.step:hover {
    transform: translateY(-4px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2563eb;
    margin: 0 auto 16px;
}

.step-number {
    font-size: 12px;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.step p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    color: #cbd5e1;
    font-size: 18px;
    padding-top: 60px;
}

/* ========== WHY SMS ========== */
.why-sms {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(11, 15, 26, 0.92), rgba(15, 21, 37, 0.95)), url('../images/section-1.jpg') center/cover no-repeat fixed;
    position: relative;
}

.why-sms .section-title {
    color: #fff;
}

.why-sms .section-subtitle {
    color: #94a3b8;
}

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

.benefit-card {
    padding: 32px 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(59, 130, 246, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    opacity: 1;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.04);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.35),
        0 10px 20px rgba(59, 130, 246, 0.15);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
}

/* Unique icon colors per card */
.benefit-card:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.benefit-card:nth-child(4) .benefit-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.benefit-card:nth-child(5) .benefit-icon {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #4f46e5;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.benefit-card:nth-child(6) .benefit-icon {
    background: linear-gradient(135deg, #d1fae5, #6ee7b7);
    color: #047857;
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.15);
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
}

/* ========== WHY CHOOSE FDR ========== */
.why-fdr {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.why-fdr .section-title {
    color: #0f172a;
}

.why-fdr .section-subtitle {
    color: #475569;
}

.why-fdr-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-fdr-phone {
    flex-shrink: 0;
}

.fdr-phone-frame {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 44px;
    border: 4px solid #2a2a2a;
    padding: 10px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.fdr-phone-notch {
    width: 90px;
    height: 22px;
    background: #000;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 0;
    position: relative;
    z-index: 2;
}

.fdr-phone-screen {
    background: #f2f2f7;
    border-radius: 36px;
    height: calc(100% - 22px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* iMessage Header */
.imsg-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px 10px;
    background: rgba(242, 242, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.imsg-back {
    color: #007aff;
    font-size: 14px;
}

.imsg-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.imsg-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    margin-bottom: 3px;
}

.imsg-name {
    font-size: 11px;
    font-weight: 600;
    color: #1c1c1e;
}

/* Chat area */
.imsg-chat {
    flex: 1;
    padding: 12px 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.imsg-date-sep {
    text-align: center;
    font-size: 10px;
    color: #8e8e93;
    font-weight: 600;
    padding: 4px 0;
}

.imsg-bubble {
    background: #e9e9eb;
    border-radius: 18px;
    border-bottom-left-radius: 6px;
    padding: 10px 14px;
    max-width: 88%;
    font-size: 11px;
    color: #1c1c1e;
    line-height: 1.5;
    position: relative;
    animation: imsg-pop 0.4s ease forwards;
    opacity: 0;
    transform: translateY(8px);
}

.imsg-bubble:nth-of-type(2) { animation-delay: 0.3s; }
.imsg-bubble:nth-of-type(3) { animation-delay: 0.6s; }
.imsg-bubble:nth-of-type(4) { animation-delay: 0.9s; }

@keyframes imsg-pop {
    to { opacity: 1; transform: translateY(0); }
}

.imsg-bubble p {
    margin: 0 0 4px;
    font-size: 11px;
    color: #1c1c1e;
    line-height: 1.45;
}

.imsg-bubble p:last-of-type {
    margin-bottom: 0;
}

.imsg-link {
    color: #007aff;
    text-decoration: underline;
    font-size: 10px;
}

.imsg-time {
    display: block;
    font-size: 9px;
    color: #8e8e93;
    margin-top: 4px;
    text-align: right;
}

/* iMessage input bar */
.imsg-input-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f2f2f7;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.imsg-input-text {
    font-size: 12px;
    color: #8e8e93;
    background: #fff;
    border: 1px solid #d1d1d6;
    border-radius: 18px;
    padding: 8px 16px;
    flex: 1;
    margin-right: 8px;
}

.imsg-send {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #007aff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.why-fdr-right {
    flex: 1;
}

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

.why-fdr-card {
  padding:20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: 70px 1fr;
}

.why-fdr-card:hover {
    transform: translateY(-4px);
    border-color: #f59e0b;
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.1);
}

.why-fdr-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffc6c8, #e78083);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #9a3336;
    margin-bottom: 0;
}

.why-fdr-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.why-fdr-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .why-fdr-layout {
        flex-direction: column;
        gap: 40px;
    }
    .fdr-phone-frame {
        width: 260px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .why-fdr-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== RESULTS ========== */
.results {
    padding: 100px 0;
    background: linear-gradient(180deg, #0b0f1a 0%, #0f1525 100%);
    overflow: hidden;
}

/* Ticker */
.results-ticker {
    margin-bottom: 50px;
    overflow: hidden;
    padding: 16px 0;
    background: rgba(16, 185, 129, 0.03);
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.ticker-track {
    display: flex;
    gap: 40px;
    animation: ticker-scroll 20s linear infinite;
    width: max-content;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.ticker-item.gain {
    color: #10b981;
}

/* Result Cards */
.results-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.result-card {
    padding: 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s;
}

.result-card:hover {
    transform: translateY(-3px);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.result-stock {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.result-badge {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.result-detail {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 8px;
}

.result-date {
    font-size: 11px;
    color: #475569;
}

/* ========== WHAT YOU'LL RECEIVE ========== */
.receive-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0e18, #0f1525);
    position: relative;
    overflow: hidden;
}

.receive-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.receive-section .section-title {
    color: #fff;
    position: relative;
}

.receive-section .section-subtitle {
    color: #94a3b8;
    position: relative;
}

.receive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 950px;
    margin: 0 auto;
    perspective: 1000px;
    position: relative;
}

.receive-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.04), rgba(15, 23, 42, 0.8));
    border: 1px solid rgba(16, 185, 129, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.receive-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.receive-item:hover {
    transform: translateY(-6px) rotateX(2deg);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(16, 185, 129, 0.08);
}

.receive-item:hover::after {
    opacity: 1;
}

.receive-check {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.receive-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 6px;
}

.receive-item p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 100px 0 80px;
    background: #f1f5f9;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    border-radius: 32px;
    padding: 50px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

/* CTA Phone */
.cta-phone {
    flex-shrink: 0;
    perspective: 900px;
    position: relative;
}

.cta-phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(139, 92, 246, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: cta-glow-pulse 3s ease-in-out infinite;
}

@keyframes cta-glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.cta-phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border-radius: 42px;
    border: 3px solid #333;
    padding: 10px;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        20px 20px 60px rgba(0, 0, 0, 0.15),
        -5px -5px 20px rgba(255, 255, 255, 0.02);
    transform: rotateY(6deg) rotateX(-3deg);
    animation: cta-phone-tilt 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes cta-phone-tilt {
    0%, 100% { transform: rotateY(6deg) rotateX(-3deg) translateY(0); }
    50% { transform: rotateY(6deg) rotateX(-3deg) translateY(-12px); }
}

.cta-phone-notch {
    width: 90px;
    height: 22px;
    background: #000;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 0;
}

.cta-phone-screen {
    background: linear-gradient(180deg, #1a2540, #0c1628, #162236);
    border-radius: 32px;
    height: calc(100% - 22px);
    padding: 16px 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Lock screen */
.cta-lock-date {
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 10px;
}

.cta-lock-time {
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1;
}

/* iOS Notifications */
.cta-ios-notifs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.cta-ios-notif {
    display: flex;
    gap: 10px;
    padding: 11px 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    animation: cta-ios-slide 0.4s ease forwards;
    opacity: 0;
    transform: translateY(8px);
}

.cta-ios-notif:nth-child(1) { animation-delay: 0.3s; }
.cta-ios-notif:nth-child(2) { animation-delay: 0.6s; }
.cta-ios-notif:nth-child(3) { animation-delay: 0.9s; }
.cta-ios-notif:nth-child(4) { animation-delay: 1.2s; }

@keyframes cta-ios-slide {
    to { opacity: 1; transform: translateY(0); }
}

.cta-ios-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

.cta-icon-gold { background: #f59e0b; }
.cta-icon-blue { background: #3b82f6; }
.cta-icon-purple { background: #8b5cf6; }

.cta-ios-notif.cta-notif-green { border-left: 3px solid #10b981; }
.cta-ios-notif.cta-notif-gold { border-left: 3px solid #f59e0b; }
.cta-ios-notif.cta-notif-purple { border-left: 3px solid #8b5cf6; }

.cta-ios-body {
    flex: 1;
    min-width: 0;
}

.cta-ios-header {
    font-size: 10px;
    color: #fff;
    margin-bottom: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-ios-header strong {
    font-weight: 700;
    font-size: 11px;
}

.cta-ios-header span {
    font-weight: 400;
    color: #94a3b8;
    font-size: 9px;
}

.cta-ios-text {
    font-size: 10px;
    color: #e2e8f0;
    line-height: 1.4;
}

/* Lock bottom */
.cta-lock-bottom {
    display: flex;
    justify-content: space-between;
    padding: 10px 8px 0;
    margin-top: auto;
}

.cta-lock-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.cta-real-badge {
    position: absolute;
    top: 15px;
    right: -15px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
    z-index: 3;
    animation: cta-badge-bounce 2s ease-in-out infinite;
}

@keyframes cta-badge-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* CTA Content */
.cta-content {
    text-align: left;
    flex: 1;
    position: relative;
}

.cta-content::before {
    display: none;
}

.cta-content::after {
    display: none;
}

.cta-content:hover {
    transform: none;
}

.cta-badge,
.cta-free-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.cta-badge i,
.cta-free-label i {
    color: #059669;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.cta-highlight {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    padding: 2px 10px;
    border-radius: 6px;
    -webkit-text-fill-color: #059669;
}

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

.cta-content p strong {
    color: #059669;
    font-weight: 800;
}

.cta-form {
    max-width: 100%;
}

.cta-input-group {
    display: flex;
    gap: 0;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cta-input-group:focus-within {
    border-color: #ef4444;
    box-shadow: 0 4px 25px rgba(239, 68, 68, 0.1);
}

.cta-form input[type="tel"] {
    flex: 1;
    padding: 18px 20px;
    border: none;
    background: transparent;
    color: #1e293b;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.cta-form input::placeholder {
    color: #94a3b8;
}

.cta-form button {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    border: none;
    padding: 18px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.cta-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
}

.cta-features {
    display: flex;
    gap: 20px;
    margin-top: 18px;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}

.cta-features i {
    color: #10b981;
    font-size: 14px;
}

.cta-legal {
    margin-top: 30px;
    padding: 0;
}

.cta-legal p {
    font-size: 11px;
    color: #64748b;
    line-height: 1.7;
    text-align: left;
}

.cta-legal strong {
    color: #475569;
    font-weight: 700;
}

.cta-legal a {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 500;
}

.cta-legal a:hover {
    color: #1d4ed8;
}

/* ========== FOOTER ========== */
.footer {
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-brand .logo-fdr {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 13px;
    color: #475569;
    max-width: 300px;
}

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

.footer-links a {
    font-size: 13px;
    color: #64748b;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    font-size: 11px;
    color: #334155;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 20px;
}

	
/* ========== FLOATING SIDE BUTTONS (RIGHT) ========== */
.floating-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    animation: pulse-glow 2s infinite;
}

.float-btn span {
    position: absolute;
    right: 68px;
    background: #222;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateX(10px);
    font-family: 'Poppins', sans-serif;
}

.float-btn span::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #222;
}

.float-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.float-btn:hover span {
    opacity: 1;
    transform: translateX(0);
}

.float-btn i {
    font-size: 26px;
}

.float-sms {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.float-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.float-telegram {
    background: linear-gradient(135deg, #0088cc, #0064a0);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 6px rgba(255, 255, 255, 0.15);
    }
}


/* ========== BOTTOM DOCK BAR ========== */
.dock-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #0d1117, #161b22);
    border-top: 1px solid #30363d;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.dock-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #2196F3, #25D366, #0088cc, #2196F3);
    background-size: 200% 100%;
    animation: gradient-slide 3s linear infinite;
}

@keyframes gradient-slide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.dock-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    cursor: pointer;
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.dock-toggle i:first-child {
    color: #f7c948;
    font-size: 14px;
}

.dock-arrow {
    display: none;
}

.dock-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 0 20px 16px;
}

.dock-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dock-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.dock-btn i {
    font-size: 18px;
}

.dock-sms {
    background: linear-gradient(135deg, #2196F3, #1565C0);
    box-shadow: 0 3px 12px rgba(33, 150, 243, 0.3);
}

.dock-sms:hover {
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
}

.dock-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
}

.dock-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.dock-telegram {
    background: linear-gradient(135deg, #0088cc, #005f8f);
    box-shadow: 0 3px 12px rgba(0, 136, 204, 0.3);
}

.dock-telegram:hover {
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
}

#sendForm input#mN{
    background-color:transparent;
}

#sendForm, #sendForm2 {
  position: relative;
}

@media(max-height:750px){
    .fullContainer.bg-white .containerInner img {
  height: auto;
  width: 100px;
}
.header-rt h2 {
  font-size: 36px;
}
.header-rt p {
  font-size: 22px;
}

.hero {
  padding: 30px 0 30px;
}
.hero-stats, .form-3d-card{
    padding: 15px;
}
.hero-badge, .hero-subtitle, .form-card-title{
    margin-bottom: 10px;
}
.dock-toggle{
    padding: 14px 20px 10px 20px;
}
.dock-btn {
  padding: 6px 20px;
}
.stat-number {
  line-height: 1.2;
}
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1300px) {
    .floating-buttons{display: none;}
}
@media (max-width: 1199px) {
    .section-container{max-width:940px}
    .cta-wrapper{
        padding: 30px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .hero-left {
        flex: none;
        order:2;
    }

    .hero-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-form .form-group {
        max-width: 100%;
    }

    .form-note {
        justify-content: center;
    }

    .cta-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .cta-content {
        text-align: center;
        max-width: 100%;
    }

    .cta-phone-frame {
        width: 240px;
        height: 440px;
    }
     .section-container{max-width:740px}
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

       .section-container{max-width:540px}
    .d-flex {
        flex-direction: column;
        gap: 8px;
    }

    .col-md-2 img {
        height: 40px;
    }

    .header-rt h2,
    .header-rt .raleway-bold {
        font-size: 26px;
    }

    .header-rt p,
    .header-rt .raleway-regular {
        font-size: 17px;
    }

    header.fullContainer.bg-white {
        padding: 10px 0;
    }

   
    
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

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

    .results-cards {
        grid-template-columns: 1fr;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

      .section-title {
    font-size: 34px;
  }

    .cta-content {
        padding:0;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-phone {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }
     .fullContainer.bg-white .containerInner img {
    height: auto;
    width: 80px;
  }
   header.fullContainer .d-flex, .editor-sec {
    gap: 10px;
  }
  .cta-legal p{margin-bottom:0;}

  .how-it-works, .why-sms, .why-fdr, .receive-section, .final-cta {
  padding: 50px 0;
}
.cta-input-group{
    flex-wrap: wrap;
}
.cta-form button{
    justify-content: center;
    width: 100%;
}

}

@media (max-width:575px) {
    .header-rt h2, .header-rt .raleway-bold {
    font-size: 22px;
  }
   .header-rt p, .header-rt .raleway-regular {
    font-size: 15px;
  }
    header.fullContainer .d-flex, .editor-sec {
    gap: 5px;
  }
   .hero {
    padding: 20px 0 20px;
  }
  .dock-buttons {
  padding: 0 10px 10px;
}
 .dock-toggle {
    padding: 10px 20px 8px 20px;
  }
  .hero-subtitle{line-height:1.5;}
  .hero-right{width:100%;}
    .hero-form .form-group {
        flex-direction: column;
    }

    .hero-form button {
        width: 100%;
        justify-content: center;
    }
    .form-3d-wrapper{width:100%;}
    .hero-title{font-weight:700;}
    .hero-container{padding:0 15px;}
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

  

    .iphone-frame {
        width: 240px;
        height: 490px;
    }

    .lock-time {
        font-size: 48px;
    }

    .lock-top {
        margin-bottom: 20px;
    }
    .hero-subtitle{font-size:16px;}
    .step, .benefit-card, .receive-item, .cta-wrapper{padding:20px;}
    .section-subtitle{margin-bottom:20px;}
     .header-rt h2, .header-rt .raleway-bold {
    font-size: 18px;
  }
  .header-rt p, .header-rt .raleway-regular {
    font-size: 14px;
  }
   .hero-badge, .hero-subtitle, .form-card-title {
    margin-bottom: 6px;
  }
  .hero-title{margin-bottom:10px;}
  .hero-subtitle{font-size:14px; margin-bottom:10px;}
  .stat-number{font-size:22px;}
   .fullContainer.bg-white .containerInner img {
   
    width: 60px;
  }
}


