/* ============================================
   DIGITAL ROXY — HOMEPAGE STYLES
   ============================================ */

:root {
    --dr-navy: #0a1628;
    --dr-navy-light: #0f1f3d;
    --dr-blue: #3347FF;
    --dr-blue-hover: #2538e6;
    --dr-red: #FF4D4D;
    --dr-red-hover: #e63c3c;
    --dr-yellow: #FFC107;
    --dr-white: #ffffff;
    --dr-light: #f8fafc;
    --dr-gray: #94a3b8;
    --dr-gray-dark: #64748b;
    --dr-border: #e2e8f0;
    --dr-text: #1e293b;
    --dr-radius: 12px;
    --dr-radius-sm: 8px;
    --dr-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --dr-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --dr-serif: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.dr-page { font-family: var(--dr-font); color: var(--dr-text); overflow-x: hidden; line-height: 1.6; width: 100%; }
.dr-page img { max-width: 100%; height: auto; }
.dr-page a { text-decoration: none; transition: var(--dr-transition); }

/* Force full-width — override ALL Astra constraints */
.page-template-page-home .site-header,
.page-template-page-home .ast-above-header,
.page-template-page-home .ast-below-header,
.page-template-page-home #ast-desktop-header,
.page-template-page-home #ast-mobile-header,
.page-template-page-home .ast-mobile-header-wrap,
.page-template-page-home .site-footer,
.page-template-page-home .ast-footer-overlay,
.page-template-page-home #colophon,
.page-template-page-home .ast-small-footer,
.page-template-page-home .site-below-footer-wrap,
.page-template-page-home .ast-primary-header-bar,
.page-template-page-home header.entry-header { display: none !important; }

.page-template-page-home #page { overflow-x: hidden !important; }
.page-template-page-home .site-content { padding: 0 !important; margin: 0 !important; }
.page-template-page-home .site-content > .ast-container { max-width: 100% !important; width: 100% !important; padding: 0 !important; margin: 0 !important; display: block !important; }
.page-template-page-home #primary { max-width: 100% !important; width: 100% !important; margin: 0 !important; padding: 0 !important; flex: none !important; }
.page-template-page-home .ast-plain-container.ast-no-sidebar #primary { margin: 0 !important; padding: 0 !important; }
.page-template-page-home article.page { padding: 0 !important; margin: 0 !important; max-width: 100% !important; }
.page-template-page-home .ast-article-single { padding: 0 !important; margin: 0 !important; }
.page-template-page-home .entry-content { margin: 0 !important; padding: 0 !important; max-width: none !important; width: 100% !important; }
.page-template-page-home .entry-content[data-ast-blocks-layout] > * { max-width: none !important; }
.page-template-page-home .hentry { margin: 0 !important; }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.dr-animate { opacity: 0; }
.dr-animate.dr-visible { animation-fill-mode: both; }

/* Hero elements visible immediately */
.dr-hero .dr-animate { opacity: 1; animation: fadeInUp 0.8s ease both; }
.dr-hero .dr-delay-1 { animation-delay: 0.15s; }
.dr-hero .dr-delay-2 { animation-delay: 0.3s; }
.dr-hero .dr-delay-3 { animation-delay: 0.45s; }
.dr-stats .dr-animate { opacity: 1; animation: fadeInUp 0.8s ease both; }
.dr-stats .dr-delay-1 { animation-delay: 0.6s; }
.dr-stats .dr-delay-2 { animation-delay: 0.75s; }
.dr-stats .dr-delay-3 { animation-delay: 0.9s; }
.dr-stats .dr-delay-4 { animation-delay: 1.05s; }
.dr-animate.dr-visible.dr-fade-up { animation: fadeInUp 0.8s ease forwards; }
.dr-animate.dr-visible.dr-fade-left { animation: fadeInLeft 0.8s ease forwards; }
.dr-animate.dr-visible.dr-fade-right { animation: fadeInRight 0.8s ease forwards; }
.dr-animate.dr-visible.dr-fade-in { animation: fadeIn 0.8s ease forwards; }
.dr-animate.dr-visible.dr-scale-in { animation: scaleIn 0.6s ease forwards; }
.dr-delay-1 { animation-delay: 0.1s !important; }
.dr-delay-2 { animation-delay: 0.2s !important; }
.dr-delay-3 { animation-delay: 0.3s !important; }
.dr-delay-4 { animation-delay: 0.4s !important; }
.dr-delay-5 { animation-delay: 0.5s !important; }
.dr-delay-6 { animation-delay: 0.6s !important; }

/* ============================================
   CONTAINER
   ============================================ */

.dr-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.dr-container-wide { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   HEADER / NAV
   ============================================ */

.dr-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--dr-transition);
}
.dr-header.scrolled {
    padding: 10px 0;
    background: rgba(10, 22, 40, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.dr-header-inner {
    display: flex; align-items: center; justify-content: space-between;
}
.dr-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 24px; font-weight: 800; color: var(--dr-white);
    letter-spacing: -0.5px;
}
.dr-logo svg { width: 32px; height: 32px; }
.dr-logo:hover { color: var(--dr-white); }

.dr-nav { display: flex; align-items: center; gap: 32px; }
.dr-nav a {
    color: rgba(255,255,255,0.75); font-size: 15px; font-weight: 500;
    position: relative; padding: 4px 0;
}
.dr-nav a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
    background: var(--dr-blue); transition: width 0.3s ease;
}
.dr-nav a:hover { color: var(--dr-white); }
.dr-nav a:hover::after { width: 100%; }

.dr-header-actions { display: flex; align-items: center; gap: 12px; }
.dr-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px; font-weight: 600;
    font-size: 15px; border: none; cursor: pointer; transition: var(--dr-transition);
    font-family: var(--dr-font);
}
.dr-btn-primary {
    background: var(--dr-red); color: var(--dr-white);
    box-shadow: 0 4px 15px rgba(255,77,77,0.3);
}
.dr-btn-primary:hover {
    background: var(--dr-red-hover); color: var(--dr-white);
    transform: translateY(-2px); box-shadow: 0 6px 25px rgba(255,77,77,0.4);
}
.dr-btn-ghost {
    background: transparent; color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
}
.dr-btn-ghost:hover {
    color: var(--dr-white); border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}
.dr-btn-blue {
    background: var(--dr-blue); color: var(--dr-white);
    box-shadow: 0 4px 15px rgba(51,71,255,0.3);
}
.dr-btn-blue:hover {
    background: var(--dr-blue-hover); color: var(--dr-white);
    transform: translateY(-2px); box-shadow: 0 6px 25px rgba(51,71,255,0.4);
}
.dr-btn-outline {
    background: transparent; color: var(--dr-blue);
    border: 2px solid var(--dr-blue);
}
.dr-btn-outline:hover {
    background: var(--dr-blue); color: var(--dr-white);
    transform: translateY(-2px);
}
.dr-btn svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.dr-btn:hover svg { transform: translateX(3px); }

/* Mobile menu toggle */
.dr-menu-toggle {
    display: none; background: none; border: 1px solid rgba(255,255,255,0.2);
    color: var(--dr-white); padding: 8px; border-radius: var(--dr-radius-sm);
    cursor: pointer; font-size: 20px; line-height: 1;
}

/* ============================================
   HERO
   ============================================ */

.dr-hero {
    background: var(--dr-navy);
    background: linear-gradient(160deg, #0a1628 0%, #0f1f3d 50%, #0a1628 100%);
    padding: 180px 0 100px;
    position: relative; overflow: hidden;
    min-height: 90vh; display: flex; align-items: center;
}
.dr-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(51,71,255,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(255,77,77,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.dr-hero-content { position: relative; z-index: 2; max-width: 800px; }
.dr-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(51,71,255,0.15); border: 1px solid rgba(51,71,255,0.3);
    color: var(--dr-blue); padding: 6px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 600; margin-bottom: 24px;
    letter-spacing: 0.5px; text-transform: uppercase;
}
.dr-hero h1 {
    font-family: var(--dr-serif); font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 700; font-style: italic; color: var(--dr-white);
    line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px;
}
.dr-hero h1 .dr-typing-wrapper {
    display: block; color: var(--dr-white); position: relative;
}
.dr-hero h1 .dr-typing-text {
    color: var(--dr-yellow); display: inline;
}
.dr-hero h1 .dr-cursor {
    display: inline-block; width: 3px; height: 0.9em;
    background: var(--dr-yellow); margin-left: 4px;
    animation: blink 1s infinite; vertical-align: text-bottom;
}
.dr-hero-sub {
    font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.7;
    margin-bottom: 40px; max-width: 600px;
}
.dr-hero-buttons { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ============================================
   STATS COUNTER
   ============================================ */

.dr-stats {
    background: var(--dr-navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 80px;
}
.dr-stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
    text-align: center;
}
.dr-stat-item { position: relative; }
.dr-stat-number {
    font-size: clamp(36px, 4vw, 56px); font-weight: 800;
    color: var(--dr-white); line-height: 1; margin-bottom: 4px;
    font-family: var(--dr-font);
}
.dr-stat-bar {
    width: 40px; height: 3px; background: var(--dr-yellow);
    margin: 12px auto;
}
.dr-stat-label {
    font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6);
    text-transform: uppercase; letter-spacing: 1.5px; line-height: 1.4;
}

/* ============================================
   TRUST BANNER
   ============================================ */

.dr-trust {
    background: var(--dr-blue);
    background: linear-gradient(135deg, #3347FF 0%, #5b6bff 100%);
    padding: 32px 0; text-align: center; position: relative; overflow: hidden;
}
.dr-trust::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.dr-trust-content {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    position: relative; z-index: 2;
}
.dr-trust-avatars { display: flex; align-items: center; }
.dr-trust-avatars span {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    border: 2px solid var(--dr-blue); margin-left: -8px;
    font-size: 14px; font-weight: 700; color: var(--dr-white);
    background: var(--dr-navy);
}
.dr-trust-avatars span:first-child { margin-left: 0; }
.dr-trust-text {
    font-size: 16px; font-weight: 600; color: var(--dr-white);
}

/* ============================================
   SECTION COMMON
   ============================================ */

.dr-section { padding: 100px 0; }
.dr-section-light { background: var(--dr-light); }
.dr-section-white { background: var(--dr-white); }
.dr-section-dark {
    background: var(--dr-navy);
    background: linear-gradient(160deg, #0a1628 0%, #0f1f3d 100%);
}

.dr-section-badge {
    display: inline-block; padding: 6px 20px; border-radius: 50px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
    text-transform: uppercase; margin-bottom: 16px;
}
.dr-badge-blue { background: rgba(51,71,255,0.1); color: var(--dr-blue); border: 1px solid rgba(51,71,255,0.2); }
.dr-badge-light { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); }

.dr-section-title {
    font-size: clamp(32px, 3.5vw, 48px); font-weight: 800;
    line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px;
}
.dr-section-title .dr-highlight { color: var(--dr-blue); }
.dr-section-sub {
    font-size: 17px; color: var(--dr-gray-dark); line-height: 1.7;
    max-width: 650px;
}
.dr-text-center { text-align: center; }
.dr-text-center .dr-section-sub { margin: 0 auto; }
.dr-text-white { color: var(--dr-white) !important; }
.dr-sub-white { color: rgba(255,255,255,0.6) !important; }

/* ============================================
   TESTIMONIALS
   ============================================ */

.dr-testimonials-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    margin-top: 60px;
}
.dr-testimonial-card {
    background: var(--dr-white); border: 1px solid var(--dr-border);
    border-radius: var(--dr-radius); padding: 32px;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: var(--dr-transition); position: relative;
}
.dr-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--dr-blue);
}
.dr-testimonial-quote {
    font-size: 15px; line-height: 1.7; color: var(--dr-text);
    flex-grow: 1; margin-bottom: 24px; font-style: italic;
}
.dr-testimonial-author { display: flex; align-items: center; gap: 12px; }
.dr-testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--dr-blue), #7c3aed);
    display: flex; align-items: center; justify-content: center;
    color: var(--dr-white); font-weight: 700; font-size: 18px;
    flex-shrink: 0;
}
.dr-testimonial-info h4 {
    font-size: 14px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--dr-text); margin-bottom: 2px;
}
.dr-testimonial-info p {
    font-size: 13px; color: var(--dr-gray-dark); font-weight: 500;
}

/* ============================================
   HOW IT WORKS — STEPS
   ============================================ */

.dr-steps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
    margin-top: 60px;
}
.dr-step-card { text-align: center; position: relative; }
.dr-step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--dr-blue), #5b6bff);
    color: var(--dr-white); font-size: 22px; font-weight: 800;
    margin-bottom: 20px; position: relative; z-index: 2;
    box-shadow: 0 4px 20px rgba(51,71,255,0.3);
}
.dr-step-card h3 {
    font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--dr-text);
}
.dr-step-card p {
    font-size: 14px; color: var(--dr-gray-dark); line-height: 1.7;
}
.dr-step-connector {
    position: absolute; top: 28px; left: calc(50% + 40px);
    width: calc(100% - 80px); height: 2px;
    background: var(--dr-border); z-index: 1;
}
.dr-step-card:last-child .dr-step-connector { display: none; }

.dr-step-badge {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--dr-blue); margin-top: 16px;
    display: block;
}

/* ============================================
   FEATURES — GET STARTED
   ============================================ */

.dr-getstarted-section { padding: 100px 0; background: var(--dr-light); }

/* ============================================
   FEATURES TABS
   ============================================ */

.dr-features-section { padding: 80px 0 100px; background: var(--dr-white); }
.dr-features-tabs {
    display: flex; justify-content: center; gap: 8px; margin: 48px 0 40px;
    flex-wrap: wrap;
}
.dr-tab-btn {
    padding: 12px 24px; border-radius: 50px; font-size: 14px;
    font-weight: 600; border: 1px solid var(--dr-border);
    background: var(--dr-white); color: var(--dr-gray-dark);
    cursor: pointer; transition: var(--dr-transition);
    font-family: var(--dr-font);
}
.dr-tab-btn:hover { border-color: var(--dr-blue); color: var(--dr-blue); }
.dr-tab-btn.active {
    background: var(--dr-blue); color: var(--dr-white);
    border-color: var(--dr-blue); box-shadow: 0 4px 15px rgba(51,71,255,0.3);
}

.dr-tab-panel { display: none; animation: fadeIn 0.5s ease; }
.dr-tab-panel.active { display: block; }

.dr-feature-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center;
}
.dr-feature-content h3 {
    font-size: 28px; font-weight: 800; margin-bottom: 16px; color: var(--dr-text);
}
.dr-feature-content p {
    font-size: 16px; color: var(--dr-gray-dark); line-height: 1.7;
    margin-bottom: 24px;
}
.dr-feature-list { list-style: none; padding: 0; margin: 0 0 28px; }
.dr-feature-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px; font-weight: 500; color: var(--dr-text);
    padding: 6px 0;
}
.dr-feature-list li svg {
    width: 20px; height: 20px; color: var(--dr-blue); flex-shrink: 0;
}

.dr-feature-visual {
    background: linear-gradient(135deg, #f0f2ff 0%, #e8ebff 100%);
    border-radius: var(--dr-radius); padding: 40px;
    display: flex; align-items: center; justify-content: center;
    min-height: 400px; position: relative; overflow: hidden;
    border: 1px solid rgba(51,71,255,0.1);
}
.dr-feature-mockup {
    background: var(--dr-white);
    border-radius: var(--dr-radius-sm);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    padding: 24px; width: 100%;
    animation: float 6s ease-in-out infinite;
}
.dr-mockup-header {
    display: flex; gap: 6px; margin-bottom: 16px;
}
.dr-mockup-dot {
    width: 10px; height: 10px; border-radius: 50%;
}
.dr-mockup-dot:nth-child(1) { background: #ff5f57; }
.dr-mockup-dot:nth-child(2) { background: #ffbd2e; }
.dr-mockup-dot:nth-child(3) { background: #28ca42; }
.dr-mockup-bar {
    height: 12px; border-radius: 6px; margin-bottom: 10px;
}
.dr-mockup-bar-1 { width: 80%; background: #e2e8f0; }
.dr-mockup-bar-2 { width: 60%; background: rgba(51,71,255,0.15); }
.dr-mockup-bar-3 { width: 90%; background: #e2e8f0; }
.dr-mockup-bar-4 { width: 45%; background: rgba(51,71,255,0.1); }
.dr-mockup-bar-5 { width: 70%; background: #e2e8f0; }
.dr-mockup-bar-6 { width: 55%; background: rgba(255,193,7,0.2); }

/* ============================================
   PLATFORM — FULL TRANSPARENCY
   ============================================ */

.dr-platform-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #0a1628 0%, #101d3a 100%);
    position: relative; overflow: hidden;
}
.dr-platform-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(51,71,255,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.dr-platform-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 2;
}
.dr-platform-content h2 {
    font-size: clamp(32px, 3.5vw, 44px); font-weight: 800;
    color: var(--dr-white); line-height: 1.2; margin-bottom: 20px;
}
.dr-platform-content p {
    font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.7;
    margin-bottom: 32px;
}
.dr-platform-visual {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--dr-radius); padding: 32px;
    position: relative;
}
.dr-metric-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dr-metric-row:last-child { border-bottom: none; }
.dr-metric-label { color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 500; }
.dr-metric-value { color: var(--dr-white); font-size: 16px; font-weight: 700; }
.dr-metric-bar-bg {
    flex: 1; height: 6px; background: rgba(255,255,255,0.08);
    border-radius: 3px; margin: 0 20px; position: relative; overflow: hidden;
}
.dr-metric-bar-fill {
    position: absolute; left: 0; top: 0; height: 100%;
    border-radius: 3px; transition: width 1.5s ease;
}
.dr-bar-blue { background: var(--dr-blue); }
.dr-bar-yellow { background: var(--dr-yellow); }
.dr-bar-red { background: var(--dr-red); }

/* ============================================
   FAQ
   ============================================ */

.dr-faq-section { padding: 100px 0; background: var(--dr-light); }
.dr-faq-list {
    max-width: 800px; margin: 48px auto 0;
    display: flex; flex-direction: column; gap: 12px;
}
.dr-faq-item {
    background: var(--dr-white); border: 1px solid var(--dr-border);
    border-radius: var(--dr-radius); overflow: hidden;
    transition: var(--dr-transition);
}
.dr-faq-item:hover { border-color: rgba(51,71,255,0.3); }
.dr-faq-item.active { border-color: var(--dr-blue); }
.dr-faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; cursor: pointer; gap: 16px;
    background: none; border: none; width: 100%;
    text-align: left; font-family: var(--dr-font);
}
.dr-faq-question h4 {
    font-size: 16px; font-weight: 600; color: var(--dr-text); margin: 0;
}
.dr-faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--dr-light); display: flex;
    align-items: center; justify-content: center;
    transition: var(--dr-transition); flex-shrink: 0;
}
.dr-faq-item.active .dr-faq-icon {
    background: var(--dr-blue); color: var(--dr-white);
    transform: rotate(45deg);
}
.dr-faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.dr-faq-item.active .dr-faq-answer { max-height: 300px; }
.dr-faq-answer p {
    padding: 0 24px 20px; font-size: 15px; color: var(--dr-gray-dark);
    line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */

.dr-cta-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #0a1628 0%, #101d3a 100%);
    text-align: center; position: relative; overflow: hidden;
}
.dr-cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(51,71,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.dr-cta-content { position: relative; z-index: 2; }
.dr-cta-content h2 {
    font-size: clamp(32px, 3.5vw, 48px); font-weight: 800;
    color: var(--dr-white); margin-bottom: 16px;
}
.dr-cta-content p {
    font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 36px;
    max-width: 550px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.dr-cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */

.dr-footer {
    background: var(--dr-navy); padding: 80px 0 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.dr-footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
}
.dr-footer-brand { }
.dr-footer-brand .dr-logo { margin-bottom: 16px; }
.dr-footer-brand p {
    font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7;
    margin-bottom: 20px; max-width: 280px;
}
.dr-footer-social { display: flex; gap: 10px; }
.dr-footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: var(--dr-radius-sm);
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6); transition: var(--dr-transition);
}
.dr-footer-social a:hover {
    background: var(--dr-blue); color: var(--dr-white);
    border-color: var(--dr-blue);
}
.dr-footer-col h5 {
    font-size: 14px; font-weight: 700; color: var(--dr-white);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.dr-footer-col ul { list-style: none; padding: 0; margin: 0; }
.dr-footer-col ul li { margin-bottom: 10px; }
.dr-footer-col ul li a {
    font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 400;
}
.dr-footer-col ul li a:hover { color: var(--dr-white); }

.dr-footer-bottom {
    margin-top: 60px; padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
}
.dr-footer-copy {
    font-size: 13px; color: rgba(255,255,255,0.4);
}
.dr-footer-legal { display: flex; gap: 24px; }
.dr-footer-legal a {
    font-size: 13px; color: rgba(255,255,255,0.4);
}
.dr-footer-legal a:hover { color: var(--dr-white); }

/* ============================================
   RESPONSIVE — TABLET (1024px and below)
   ============================================ */

/* Homepage pricing grid responsive */
@media (max-width: 960px) {
    .dr-pricing-home-grid { grid-template-columns: 1fr 1fr !important; }
    .dr-pricing-home-grid > div:nth-child(2) { transform: none !important; }
}
@media (max-width: 640px) {
    .dr-pricing-home-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 1024px) {
    .dr-nav { display: none; }
    .dr-menu-toggle { display: flex; }

    .dr-container { padding: 0 20px; }
    .dr-container-wide { padding: 0 20px; }

    .dr-hero { padding: 120px 0 80px; min-height: auto; }
    .dr-hero h1 { font-size: clamp(32px, 5vw, 52px); }
    .dr-hero-sub { font-size: 16px; }

    .dr-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

    .dr-testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .dr-testimonial-card { padding: 24px; }

    .dr-steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .dr-step-connector { display: none; }

    .dr-feature-row { grid-template-columns: 1fr; gap: 40px; }
    .dr-feature-visual { min-height: 300px; }

    .dr-platform-grid { grid-template-columns: 1fr; gap: 40px; }

    .dr-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

    .dr-section { padding: 80px 0; }
    .dr-section-title { font-size: clamp(28px, 4vw, 40px); }
}

/* ============================================
   RESPONSIVE — MOBILE (768px and below)
   ============================================ */

@media (max-width: 768px) {
    .dr-header { padding: 12px 0; }
    .dr-header-inner { padding: 0 4px; }
    .dr-header-actions .dr-btn-ghost { display: none; }
    .dr-header-actions .dr-btn-primary { padding: 10px 20px; font-size: 13px; }
    .dr-logo { font-size: 20px; }
    .dr-logo svg { width: 26px; height: 26px; }

    .dr-hero { padding: 100px 0 60px; }
    .dr-hero h1 { font-size: 32px; letter-spacing: -0.5px; }
    .dr-hero-sub { font-size: 15px; margin-bottom: 28px; }
    .dr-hero-badge { font-size: 11px; padding: 5px 12px; margin-bottom: 16px; }
    .dr-hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
    .dr-hero-buttons .dr-btn { justify-content: center; width: 100%; }

    .dr-stats { padding: 40px 0 50px; }
    .dr-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .dr-stat-number { font-size: 36px; }
    .dr-stat-label { font-size: 11px; letter-spacing: 1px; }

    .dr-trust-content { flex-direction: column; gap: 10px; }
    .dr-trust-text { font-size: 14px; }

    .dr-section { padding: 60px 0; }
    .dr-section-title { font-size: 26px; }
    .dr-section-sub { font-size: 15px; }
    .dr-section-badge { font-size: 11px; padding: 5px 14px; }

    .dr-testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .dr-testimonial-card { padding: 20px; }
    .dr-testimonial-quote { font-size: 14px; }

    .dr-steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .dr-step-number { width: 48px; height: 48px; font-size: 18px; }

    .dr-features-tabs { gap: 6px; flex-wrap: wrap; justify-content: center; }
    .dr-tab-btn { padding: 10px 16px; font-size: 13px; }
    .dr-feature-content h3 { font-size: 22px; }
    .dr-feature-content p { font-size: 14px; }
    .dr-feature-visual { min-height: 280px; padding: 24px; }

    .dr-platform-content h2 { font-size: 26px; }
    .dr-platform-content p { font-size: 15px; }
    .dr-metric-label { font-size: 12px; }
    .dr-metric-value { font-size: 14px; }

    .dr-faq-question h4 { font-size: 14px; }
    .dr-faq-answer p { font-size: 14px; }

    .dr-cta-content h2 { font-size: 26px; }
    .dr-cta-content p { font-size: 15px; }
    .dr-cta-buttons { flex-direction: column; align-items: center; }
    .dr-cta-buttons .dr-btn { width: 100%; max-width: 300px; justify-content: center; }

    .dr-footer { padding: 50px 0 0; }
    .dr-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .dr-footer-brand p { max-width: 100%; }
    .dr-footer-bottom { flex-direction: column; gap: 12px; text-align: center; margin-top: 40px; }

    .dr-btn { padding: 11px 22px; font-size: 14px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (480px and below)
   ============================================ */

@media (max-width: 480px) {
    .dr-container { padding: 0 16px; }
    .dr-container-wide { padding: 0 16px; }

    .dr-hero { padding: 90px 0 50px; }
    .dr-hero h1 { font-size: 28px; }
    .dr-hero-sub { font-size: 14px; }

    .dr-stats-grid { gap: 20px; }
    .dr-stat-number { font-size: 30px; }

    .dr-section-title { font-size: 24px; }
    .dr-section-sub { font-size: 14px; }

    .dr-testimonial-quote { font-size: 13px; }
    .dr-testimonial-info h4 { font-size: 12px; }
    .dr-testimonial-info p { font-size: 11px; }

    .dr-features-tabs { gap: 4px; }
    .dr-tab-btn { padding: 8px 12px; font-size: 12px; }

    .dr-platform-visual { padding: 20px; }
    .dr-metric-bar-bg { margin: 0 12px; }

    .dr-footer-col h5 { margin-bottom: 12px; }
    .dr-footer-legal { flex-direction: column; gap: 8px; }
}

/* ============================================
   RESPONSIVE — LARGE DESKTOP (1440px+)
   ============================================ */

@media (min-width: 1440px) {
    .dr-container { max-width: 1300px; }
    .dr-container-wide { max-width: 1500px; }
    .dr-hero h1 { font-size: 76px; }
    .dr-hero-sub { font-size: 20px; }
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */

.dr-mobile-nav {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(10, 22, 40, 0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 24px; opacity: 0; transition: opacity 0.3s ease;
    pointer-events: none;
}
.dr-mobile-nav.active { display: flex; opacity: 1; pointer-events: all; }
.dr-mobile-nav a {
    color: var(--dr-white); font-size: 20px; font-weight: 600;
    padding: 12px 0; transition: var(--dr-transition);
}
.dr-mobile-nav a:hover { color: var(--dr-blue); }
.dr-mobile-nav-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: 1px solid rgba(255,255,255,0.2);
    color: var(--dr-white); width: 44px; height: 44px;
    border-radius: 50%; font-size: 24px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--dr-transition);
}
.dr-mobile-nav-close:hover { background: rgba(255,255,255,0.1); }
