:root {
    --bg-dark: #000000;
    --accent: #FF4C00; /* Bold Orange */
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    --card-bg: #111111;
    --card-border: #222222;
    --star-color: rgba(255, 255, 255, 0.1);

    --mine-shaft:#323232;
    --pearl-white:#F2EDE6;
    --international-orange:#E84A1A;
    --bright-blue: #194FFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Epilogue", sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, .logo {
    font-family: "Epilogue", sans-serif;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in;
}

/* -------------------------------------------------
   Responsive Navbar – Hamburger & Collapsed Menu
   ------------------------------------------------- */

/* Hide toggle on large screens */
.nav-toggle { display: none; }

/* Tablet & Mobile (≤992px) */
@media (max-width: 992px) {
    .navbar {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.5rem 2rem;
    }

    /* Show hamburger */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
    }
    .nav-toggle span {
        width: 28px;
        height: 3px;
        background: var(--text-main);
        border-radius: 2px;
        transition: background 0.3s;
    }

    /* Collapsed nav links */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        border-bottom: 1px solid var(--card-border);
    }
    .nav-links a {
        padding: 1rem 2rem;
        border-top: 1px solid rgba(255,255,255,0.05);
        color: #aaa;
    }
    .nav-links a:hover { color: #fff; }

    /* When menu is open */
    .nav-links.open { max-height: 500px; }

    /* Dropdown inside collapsed menu */
    .dropdown { width: 100%; }
    .dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 1rem 2rem;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        background: #111;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }
    .dropdown-menu a { padding: 0.75rem 2rem; }

    /* Hamburger animation to “X” */
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }
}

/* Mobile‑only tweaks (≤600px) */
@media (max-width: 600px) {
    .navbar { padding: 1rem 1.5rem; }
    .logo { font-size: 1.4rem; }
    .logo-subtext { font-size: 0.35rem; }
    .nav-links a { font-size: 0.9rem; }
}


/* Animations */
.animate-on-load,
.animate-on-scroll {
    opacity: 0;
    will-change: transform, opacity;
}

/* Payment Page Layout */
.payment-split-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.payment-form-block { flex: 1.2; }
.order-summary-block {
    flex: 0.8;
    background: #080808;
    padding: 3rem;
    border-radius: 12px;
}

.payment-section-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #FFF;
}

.payment-method-box {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
}
.payment-method-header {
    display: flex; justify-content: space-between; align-items: center;
}
.apple-pay {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.radio-label {
    display: flex; align-items: center; gap: 1rem;
    cursor: pointer; font-size: 0.95rem;
}
.radio-label input { display: none; }
.custom-radio {
    width: 20px; height: 20px;
    border: 2px solid #555; border-radius: 50%;
    position: relative;
}
.radio-label input:checked + .custom-radio { border-color: var(--accent); }
.radio-label input:checked + .custom-radio::after {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 10px; height: 10px;
    background: var(--accent); border-radius: 50%;
}

.card-icons { display: flex; gap: 0.5rem; }
.card-icon-svg {
    width: 45px; height: 30px; border-radius: 4px;
    display: flex; justify-content: center; align-items: center;
    font-size: 0.7rem; letter-spacing: -0.5px;
}

.payment-fieldset {
    margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem;
}
.payment-input {
    background: transparent; border: none; border-bottom: 1px solid #333;
    padding: 0.8rem 0; color: #FFF; font-size: 0.95rem; font-family: inherit;
    outline: none; transition: border-color 0.3s;
}
.payment-input:focus { border-bottom-color: var(--accent); }
.payment-input.full-width { width: 100%; }
.input-row-half { display: flex; gap: 2rem; }
.input-row-half .payment-input { flex: 1; }

.apple-pay-btn {
    background: #FFF; color: #000; font-weight: 700;
    width: 80px; height: 32px; border-radius: 4px;
    display: flex; justify-content: center; align-items: center; font-size: 0.85rem;
}
.apple-pay-btn i {margin: 0 10px 0 5px; font-size: 20px;}

.ssl-notice {
    display: flex; align-items: center; gap: 0.5rem;
    color: #666; font-size: 0.8rem; margin: 2rem 0;
}

.terms-checkbox {
    display: flex; align-items: center; gap: 1rem; cursor: pointer; font-size: 0.85rem; color: #aaa;
}
.terms-checkbox input { display: none; }
.custom-checkbox { 
    width: 18px; height: 18px; border: 1px solid #555; border-radius: 3px;
    position: relative;
    display: flex; justify-content: center; align-items: center;
}
.terms-checkbox input:checked + .custom-checkbox { border-color: var(--accent); background: var(--accent); }
.terms-checkbox input:checked + .custom-checkbox::after {
    content: ''; position: absolute;
    left: 5px; top: 0;
    width: 4px; height: 11px;
    border: solid #FFF; border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Order Summary Block */
.huge-total { font-size: 4rem; font-weight: 700; margin-bottom: 2rem; font-family: "Epilogue", sans-serif;}
.summary-subtitle { font-size: 0.9rem; margin-bottom: 1.5rem; font-family: "Epilogue", sans-serif;}

.summary-line { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.summary-meta { display: flex; flex-direction: column; gap: 0.3rem; }
.summary-meta strong { font-weight: 500; font-size: 0.95rem; font-family: "Epilogue", sans-serif;}
.summary-meta span { color: #888; font-size: 0.8rem; line-height: 1.4; max-width: 250px; }
.summary-price { font-weight: 500; font-size: 0.95rem; }

.summary-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 2rem 0; }
.total-line { margin-bottom: 2rem; font-family: "Epilogue", sans-serif;}
.summary-tax-note, .summary-terms-note { color: #888; font-size: 1rem; margin-bottom: 1rem; }

.btn-complete-purchase {
    background: #FFF; color: #000; font-weight: 600; font-family: inherit; font-size: 1rem;
    width: 100%; border: none; border-radius: 8px; padding: 1.25rem; margin-top: 1rem;
    cursor: pointer; transition: transform 0.2s, background 0.3s;
}
.btn-complete-purchase:hover { background: #EAEAEA; transform: translateY(-2px); }

/* Base fade up */
.fade-up {
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base fade right */
.fade-right {
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Delay modifiers */
[style*="--delay"] {
    transition-delay: var(--delay);
}

/* Active states */
.is-visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.container { 
    max-width: 1440px; 
    margin: 0 auto; 
    padding: 0 15px;
    
    @media (min-width:1920px) {
        max-width: 1600px;
    }
}

/* Starfield Background */
.starfield {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background-image: 
      radial-gradient(1px 1px at 20px 30px, var(--star-color) 100%, transparent),
      radial-gradient(1px 1px at 40px 70px, var(--star-color) 100%, transparent),
      radial-gradient(1px 1px at 50px 160px, var(--star-color) 100%, transparent),
      radial-gradient(1.5px 1.5px at 90px 40px, var(--star-color) 100%, transparent),
      radial-gradient(1.5px 1.5px at 130px 80px, var(--star-color) 100%, transparent),
      radial-gradient(2px 2px at 160px 120px, var(--star-color) 100%, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.5;
}

/* Navigation */
.navbar { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 3rem 0; position: relative; width: 100%; top: 0; z-index: 100;
}
.navbar .container {display: flex; justify-content: space-between; width: 100%;}
.logo-area { display: flex; flex-direction: column; }
.logo img {height: 120px;}
.logo-subtext { font-size: 0.45rem; letter-spacing: 1.5px; color: var(--text-muted); margin-top: 6px; }

.nav-links { display: flex; gap: 3rem; align-items: center; }
.nav-links a { font-size: 1.125rem; color: var(--pearl-white); text-decoration: none; transition: color 0.3s; font-weight: 500; }
.nav-links a:hover { color: var(--international-orange); }

/* ---------- Dropdown (mobile‑friendly) ---------- */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    left: 0;
    right: 0;
    top: 150%;
    opacity: 0;
    display: flex;
    margin: 0 auto;
    min-width: 140px;
    position: absolute;
    flex-direction: column;
    transition: all 0.3s linear;
}

/* Trigger (always visible) */
.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    cursor: pointer;
}

/* Desktop hover behavior (desktop only) */
@media (min-width: 993px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        top: 150%;
        transform: translate(0px, 0px);
    }
}

/* Mobile / Tablet (≤992px) – dropdown becomes a block */
@media (max-width: 992px) {
    .dropdown {
        width: 100%;
        flex-direction: column;
    }
    .dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 1rem 2rem;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        background: #111;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        display: none;               /* hidden until opened */
    }
    .dropdown.open .dropdown-menu {
        display: flex;               /* show when .open is added */
        flex-direction: column;
    }
}

.dropdown-menu a {
    color: var(--pearl-white);
    font-size: 1rem;
    padding: 0.75rem;
    white-space: nowrap;
}

.dropdown-menu a.logout {
    color: var(--international-orange);
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--international-orange);
}

.contact-info { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-item { display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem; color: var(--pearl-white); font-size: 1.125rem; font-family: "Epilogue", sans-serif; font-weight: 500;}
.contact-item a {color: var(--pearl-white);display: flex; align-items: center;}
.contact-item a:hover {color: var(--international-orange);}
.contact-item svg { width: 20px; height: 20px; color: var(--pearl-white);margin-right: 10px;}

/* Typography Highlights */
.accent { color: var(--accent); }
.italic { font-style: italic; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-main);
    border: 1px solid var(--accent);
}
.btn-primary:hover {
    background-color: #e64500;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 76, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
    text-align: center;
}
.btn-outline:hover {
    background-color: var(--text-main);
    color: var(--bg-dark);
}
.btn-large { padding: 1rem 3rem; font-size: 1.1rem; }

/* Hero */
.hero { padding: 1rem 2rem 6rem; position: relative; overflow: hidden;}

.hero-bg-anim {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    max-width: 1000px;
    max-height: 1000px;
    background: radial-gradient(circle, rgba(255, 76, 0, 0.15) 0%, transparent 60%);
    filter: blur(60px);
    border-radius: 50%;
    z-index: -1;
    animation: glow-pulse 6s infinite alternate ease-in-out;
    pointer-events: none;
    background-image: url(../images/star-animate.png);
}
@keyframes glow-pulse {
    0% { transform: translate(-50%, -40%) scale(0.85); opacity: 0.4; }
    100% { transform: translate(-50%, -60%) scale(1.15); opacity: 1; }
}

/* Rotation Animation */
@keyframes rotateStars {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Background Image Layer */
.stars {
    position: absolute;
    width: 200%;   /* bigger to avoid empty edges while rotating */
    height: 200%;
    top: -50%;
    left: -50%;
    background: url('../images/star-animate.png') repeat;
    background-size: cover;
    animation: rotateStars 120s linear infinite;
    opacity: 0.8;
    filter: brightness(1.2)
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--mine-shaft);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.75rem;
    color: var(--text-main);
    background: rgba(255,255,255,0.03);
    margin-bottom: 2rem;
}

.badge span {
    width: 0.375rem;
    height: 0.375rem;
    margin-right: 12px;
    border-radius: 100%;
    display: inline-block;
    background-color: var(--international-orange);
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    max-width: 600px;
    font-size: 1.25rem;
    margin: 0 auto 2.5rem;
    color: var(--text-main);
}

.hero-actions { display: flex; justify-content: center; gap: 1rem; margin-bottom: 4rem; }

/* Mockup */
.video-mockup {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--card-bg), #050505);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.play-button {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 2rem; color: white; border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer; transition: transform 0.3s;
}
.play-button:hover { transform: scale(1.1); background: var(--accent); border-color: var(--accent); }

/* How It Works */
.how-it-works-section { padding: 4rem 0; }
.split-layout { display: flex; gap: 4rem; align-items: flex-start; justify-content: space-between; }

.content-left { flex: 1; position: sticky; top: 120px; max-width: 400px; }
.process-badge { color: #FF4C00; font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 1rem; }
.section-title { font-size: 3.5rem; margin-bottom: 1.5rem; font-weight: 500; letter-spacing: -1px; line-height: 1.1; display: flex;}
.section-title i, .section-title span { font-style: italic; font-weight: bold;}
.section-desc { color: var(--text-main); font-size: 1.05rem; }

.steps-right { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    gap: 15vh; 
    max-width: 1000px; 
    padding-bottom: 20vh; 
    padding-top: 5vh;
}

.step-card {
    display: flex;
    position: sticky;
    align-items: center;
    background: #0a0a0a;
    justify-content: space-between;
    border: 1px solid var(--card-border);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    transition: transform 0.3s;
    box-shadow: 0 -15px 40px rgba(0,0,0,0.9);
}

.step-card:nth-child(1) { top: 15vh; z-index: 1; }
.step-card:nth-child(2) { top: 18vh; z-index: 2; }
.step-card:nth-child(3) { top: 21vh; z-index: 3; }
.step-card:nth-child(4) { top: 24vh; z-index: 4; }

.step-card:hover { border-color: rgba(255,255,255,0.2); }

.step-num { font-size: 1.5rem; font-weight: 700; color: rgba(242, 237, 230, 0.30); margin-bottom: 1.5rem; font-family: "Epilogue", sans-serif;}
.step-card h3 { font-size: 2.625rem; margin-bottom: 0.75rem; font-weight: 500; letter-spacing: -1px; font-family: "Epilogue", sans-serif;}
.step-card p { color: var(--text-main); font-size: 1.125rem; line-height: 1.6; max-width: 500px; font-family: "Epilogue", sans-serif;}

.highlight-step { border-color: var(--card-border); }

/* Categories */
.categories-section { padding: 4rem 0 8rem; }
.categories-header { margin-bottom: 4rem; align-items: flex-end; }
.categories-header .section-title span {margin-left: 15px;}
.cat-left { flex: 1; max-width: 400px; }
.cat-right { flex: 1; max-width: 400px; text-align: left; margin-bottom: 1rem; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.project-card { cursor: pointer; transition: transform 0.3s; border-radius: 16px; border: 1px solid var(--card-border); background: var(--card-bg); overflow: hidden; display: flex; flex-direction: column; }
.project-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.1); }

.project-img {
    height: 300px;
    border-bottom: 1px solid var(--card-border);
    background-size: cover;
    background-position: center;
}

.project-img img {
    width: 100%;
    height: 100%;
}

.project-info { padding: 2rem; flex: 1; }
.project-info h3 { font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 500; letter-spacing: -0.5px; }
.project-info p { color: rgba(255, 255, 255, 0.50); font-size: 1rem; line-height: 1.5; }

/* Category Card Selection States */
.selectable-card { position: relative; }
.selectable-card.selected {
    border-color: var(--international-orange);
    box-shadow: 0 0 0 2px var(--international-orange), 0 8px 30px rgba(232,74,26,0.25);
}
.card-select-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.4);
    display: flex; justify-content: center; align-items: center;
    transition: all 0.25s ease;
    z-index: 10;
}
.selectable-card.selected .card-select-indicator {
    background: var(--international-orange);
    border-color: var(--international-orange);
}
.check-icon { opacity: 0; transition: opacity 0.2s; }
.selectable-card.selected .check-icon { opacity: 1; }

/* Categories Page Template Grid */
.categories-page-section { padding: 4rem 0 8rem; }
.filter-pills { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-pill {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-muted);
    padding: 0.5rem 1.4rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.25s;
}
.filter-pill:hover, .filter-pill.active {
    border-color: var(--text-main);
    color: var(--text-main);
}
.templates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.template-card {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
}
.template-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.template-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background: #111;
}
.template-img-placeholder {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #0f0f1a, #1a1a2c);
    display: flex; justify-content: center; align-items: center;
    overflow: hidden;
    position: relative;
}
.template-img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.template-info { padding: 1rem 1.2rem; }
.template-info h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.2rem; }
.template-info span { font-size: 0.8rem; color: var(--text-muted); }
.template-cta {
    display: block;
    width: calc(100% - 2.4rem);
    margin: 0 1.2rem 1.2rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.8rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    text-decoration: none;
}
.template-cta:hover { background: #d94000; }

/* Footer */
.footer-cta { padding: 2rem 0 8rem; }
.disclaimer { color: var(--text-muted); font-size: 0.85rem; }

.site-footer {
    border-top: 1px solid var(--card-border);
    padding: 5rem 0 2rem;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.site-footer .stars {width: 150%; height: 150%; left: 0; top: 0;}

.footer-grid { display: flex; justify-content: space-between; margin-bottom: 4rem; }
.footer-left {position: relative;}
.footer-left .social-icons { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-icons a { width: 40px; height: 40px; background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%);  border-radius: 100%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: background 0.2s; }
.social-icons a:hover { background: var(--accent); border-color: var(--accent); }

.footer-right { text-align: right; position: relative;}
.footer-slogan { font-size: 3rem; margin-bottom: 1.5rem; }
.footer-slogan span {display: block;}

.footer-links { display: flex; gap: 2rem; justify-content: flex-end; }
.footer-links a { color: var(--text-main); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover {color: var(--international-orange);}

.footer-bottom { border-top: 1px solid var(--card-border); padding-top: 2rem; color: var(--text-muted); font-size: 0.85rem; text-align: center;position: relative;}

@media (max-width: 992px) {
    .navbar { flex-wrap: wrap; gap: 1rem; }
    .nav-links { order: 3; width: 100%; justify-content: center; margin-top: 1rem; }
    .hero-title, .contact-hero .hero-title { font-size: 4rem; }
    .split-layout { flex-direction: column; }
    .content-left, .cat-left, .cat-right { position: static; text-align: center; margin-bottom: 2rem; max-width: 100%; }
    .section-desc { margin: 0 auto; }
    .project-grid { grid-template-columns: 1fr; }
    .site-footer {padding: 2rem 0;}
    .footer-grid { flex-direction: column; gap: 3rem; }
    .footer-right { text-align: center; }
    .footer-links { justify-content: center; }
    .form-row { flex-direction: column; gap: 1.5rem; }
    .contact-left, .contact-right { max-width: 100%; width: 100%; }
}

/* Contact Page Styles */
.contact-hero { padding: 0 2rem 4rem; text-align: left; }
.contact-hero .hero-title { font-size: 4.5rem; margin-bottom: 1rem; }
.contact-hero .hero-subtext {max-width: 100%;}

.contact-split { 
    gap: 3rem;
    background: #0D0D0B;
    justify-content: space-between; 
    align-items: stretch; 
    margin-bottom: 8rem; 
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.contact-left { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1rem; }
.contact-right { flex: 1; min-width: 0; }

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.info-card.full-width { grid-column: span 2; }
.card-icon {
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: flex;
}
.info-label { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.2rem; }
.info-value { font-size: 1rem; font-weight: 500; color: var(--text-main); text-align: center; }

.dashboard-mockup {
    margin: 4rem auto 0;
    max-width: 1150px;
    background: #000;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(255, 76, 0, 0.15);
    overflow: hidden;
}

.dashboard-video {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.map-container {
    height: 280px;
    border-radius: 12px;
    background: #111;
    overflow: hidden;
}

.map-placeholder {
    width: 100%; height: 100%; background: url('https://via.placeholder.com/600x300/222222/555555?text=Map+Location') center/cover;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; height: 100%; }
.form-row { display: flex; gap: 1rem; }
.form-row input { flex: 1; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    color: var(--text-main);
    padding: 1.25rem 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #4a4a4a;
}

.contact-form textarea {
    resize: none;
    flex: 1;
    min-height: 280px;
    margin-bottom: auto;
}

.btn-light {
    background-color: var(--text-main);
    color: var(--bg-dark);
    font-weight: 600;
}
.btn-light:hover {
    background-color: var(--text-muted);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem;
    font-size: 1.1rem;
    border-radius: 8px; /* Slightly rectangular button as described */
}

.social-label { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.5rem; display: block; }

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.modal-overlay.show { opacity: 1; pointer-events: all; }

.modal-box {
    background: #0A0A0A;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 4rem 5rem;
    width: 90%;
    max-width: 650px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.show .modal-box { transform: translateY(0) scale(1); }

.modal-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #ec4899, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.modal-subtext {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.modal-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: flex; gap: 1.25rem; }
.form-row input { flex: 1; }

.modal-form input {
    width: 100%;
    background: #111;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    color: var(--text-main);
    padding: 1.1rem 1.5rem;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}
.modal-form input:focus { border-color: var(--text-muted); }

.input-icon-wrapper { position: relative; }
.eye-icon { position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); color: #666; cursor: pointer; display: flex; align-items: center; }
.eye-icon:hover { color: var(--text-muted); }

.separator {
    display: flex; align-items: center; text-align: center; 
    color: #444; font-size: 0.85rem; margin: 0.75rem 0;
}
.separator::before, .separator::after { content: ""; flex: 1; border-bottom: 1px solid rgba(255,255,255,0.05); }
.separator span { padding: 0 1rem; }

.utility-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.checkbox-label input { width: auto; margin: 0; background: transparent; padding: 0; }
.forgot-password { color: #3b82f6; text-decoration: none; }
.forgot-password:hover { text-decoration: underline; }

.btn-google {
    display: flex; justify-content: center; align-items: center; gap: 0.75rem;
    width: 100%; padding: 1.1rem; background: transparent; color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; font-family: inherit;
    cursor: pointer; font-size: 1.05rem; font-weight: 500; transition: background 0.3s;
}
.btn-google:hover { background: rgba(255,255,255,0.05); }

.modal-footer-text { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-top: 1.5rem; }
.modal-footer-text a { color: #3b82f6; text-decoration: none; }

/* Order History Page Styles */
/* .page-content { margin-top: 13rem; padding-bottom: 6rem; } */
.breadcrumbs {
    display: flex;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.breadcrumbs a { color: var(--text-muted); text-decoration: none; margin-right: 15px;}
.breadcrumbs a:nth-child(2) {margin: 0 15px;}
.breadcrumbs a:hover { color: var(--text-main); }
.breadcrumbs .active { color: var(--text-main); }
.breadcrumbs span {margin-left: 15px;}

.page-title {
    margin: 0 0 1rem 0;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: -1px;
}

.filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.filter-tabs {
    display: flex;
    gap: 1.5rem;
}
.filter-tab {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-main);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}
.filter-tab:hover, .filter-tab.active {
    border-color: var(--text-main);
}

.filter-dropdown-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-main);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
}
.filter-dropdown .dropdown-menu { left: auto; right: 0; transform: translateY(10px); min-width: 140px; }
.filter-dropdown:hover .dropdown-menu { transform: translateY(0); }

.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding-bottom: 70px;
}

.order-card {
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.order-img-block {
    position: relative;
    height: 350px;
    background: #111;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-wrapper {
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    background-size: cover;
    justify-content: center;
    background-position: center;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.order-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.5);
    z-index: 10;
}
.dot { width: 6px; height: 6px; border-radius: 50%; }
.order-badge.live .dot { background: #10b981; }
.order-badge.progress .dot { background: #f59e0b; }
.order-badge.draft .dot { background: #6b7280; }

.hover-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 20;
}

.order-img-block:hover .img-wrapper {
    filter: blur(5px);
    transform: scale(1.05);
}

.order-img-block:hover .hover-overlay {
    opacity: 1;
}

.btn-outline-orange {
    background: #000;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    justify-content: center;
}

.btn-outline-orange:hover {
    background: rgba(255,76,0,0.1);
}

.hover-overlay .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.order-footer {
    padding: 1.5rem;
    font-weight: 500;
    font-size: 1.25rem;
    font-family: "Epilogue", sans-serif;
}

/* Customize Page Styles */
.customize-box {
    background: #080808;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.customize-step {
    margin-bottom: 4rem;
}
.customize-step h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.sub-italic { font-style: italic; font-weight: 600; }
.step-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }

.section-divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin: 4rem 0;
}

/* Step 1: Drop Zone */
.main-drop-zone {
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: 12px;
    min-height: 180px;
    color: var(--text-muted);
    background: rgba(255,255,255,0.01);
    margin: 2rem 0;
    transition: background 0.3s, border-color 0.3s;
    padding: 1.5rem;
}
.main-drop-zone.drag-over {
    background: rgba(255,255,255,0.05);
    border-color: var(--accent);
}

.drop-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    height: 140px;
    pointer-events: none;
}

.dropped-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1rem;
    width: 100%;
}

.available-pages-label {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.pages-grid {
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); */
}
.page-block {
    background: #111;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    cursor: grab;
    transition: all 0.2s;
}
.page-block:hover { background: #1a1a1a; transform: translateY(-3px); }
.page-block svg { color: var(--text-muted); pointer-events: none; }
.page-block span { pointer-events: none; }
.page-block.dragging {
    opacity: 0.5;
    transform: scale(0.95);
}

/* Step 2: Logos */
.logo-upload-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.logo-sidebar {
    width: 250px;
    flex-shrink: 0;
}
.upload-labels { font-size: 0.9rem; margin-bottom: 2rem; display: block; }
.upload-assets-controls { display: flex; gap: 3rem; margin-bottom: 2rem; }
.asset-meta { display: flex; flex-direction: column; gap: 0.2rem; }
.asset-meta strong { font-weight: 500; font-size: 0.95rem; }
.asset-meta span { color: var(--text-muted); font-size: 0.8rem; }

.btn-upload {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-main);
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-upload:hover {
    background: rgba(255, 76, 0, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.logo-preview-area {
    display: flex;
    gap: 1.5rem;
    flex: 1;
}
.logo-drop {
    background: #111;
    border-radius: 16px;
    width: 250px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.browser-mockup {
    flex: 1;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    height: 200px;
    position: relative;
    overflow: hidden;
}

.hover-overlay-upload {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}
.logo-drop:hover .hover-overlay-upload,
.browser-mockup:hover .hover-overlay-upload {
    opacity: 1;
}
.browser-tab {
    background: #2a2a2a;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tab-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.tab-title {
    background: #1a1a1a;
    margin-left: 1rem;
    padding: 0.3rem 1rem;
    border-radius: 6px 6px 0 0;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #eee;
}
.tab-title svg { width: 12px; height: 12px; }
.browser-url {
    background: #111;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.url-nav { color: #666; font-size: 1rem; letter-spacing: 5px; }
.url-bar { background: #222; border-radius: 4px; padding: 0.3rem 1rem; font-size: 0.8rem; color: #888; flex: 1; }

/* Step 3: Photos/Videos */
.figma-media-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr) !important;
}
.media-drop-zone {
    margin: 0 !important;
    min-height: 180px !important;
    background: #111 !important;
}
.interactive-upload { cursor: pointer; display: flex; align-items: center; justify-content: center; flex-direction: column;}
.interactive-upload svg {margin: 0 0 30px;}
.interactive-upload:hover { border-color: var(--accent); }
.accent-pure { color: var(--bright-blue); font-weight: 500; font-family: "Epilogue", sans-serif;}

/* Step 4: Colors */
.color-split-layout {
    display: flex;
    gap: 4rem;
}
.color-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 300px;
}
.color-field label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.color-picker-box {
    background: #111;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.color-swatch { width: 32px; height: 32px; border-radius: 6px; }

.color-preview { flex: 1; }
.preview-label { margin-bottom: 1rem; font-size: 0.95rem; }
.mockup-colors-panel {
    border-radius: 8px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}
.mockup-colors-panel img {
    width: 100%;
}
.mockup-overlay-btns {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 1rem;
}

.customize-action {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}


/******** Progress Page ********/

.progress-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
    padding: 0 0 70px;
}

.progress-header {
    width: 100%;
    text-align: left;
    margin-bottom: 5rem;
}

.progress-actions {
    margin-top: 6rem; 
    display: flex; 
    gap: 2rem; 
    align-items: center; 
    justify-content: center; 
    width: 100%;
}

.progress-actions .btn-outline {
    background: transparent; 
    color: #fff; 
    border: 1px solid #333; 
    padding: 1rem 2rem; 
    border-radius: 6px; 
    text-decoration: none;
}

/* Complex Petal Animation Frame */
.loader-hub {
    width: 500px;
    height: 500px;
    position: relative;
}

.svg-petal-ring {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    transform: rotate(-90deg); /* align top center */
}

.petal {
    fill: #2c272c; /* Inactive Figma color */
    stroke: #2c272c;
    stroke-width: 8px; /* Tightly rounds corners without overlapping adjacent shapes */
    stroke-linejoin: round;
    transition: fill 0.4s ease, stroke 0.4s ease;
    cursor: pointer;
}

/* Active Fill Override */
.petal.active {
    fill: #e84a1c;
    stroke: #e84a1c;
}

/* Central Blinking Eye Mechanics */
.center-eye-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 140px; height: 140px;
    background: #0D0D0D;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.eye-slit {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    /* Open mapping */
    transition: all 0.2s ease;
}

.eye-slit.blink {
    animation: coreBlink 4s infinite;
}

@keyframes coreBlink {
    0%, 5% { height: 3px; transform: translateY(0); border-radius: 2px; }
    10% { height: 16px; width: 14px; border-radius: 50%; transform: translateY(-2px); } /* Wide open */
    15%, 80% { height: 3px; transform: translateY(0); border-radius: 2px; } /* Return to slit */
    85% { height: 12px; width: 16px; border-radius: 50%; } /* Slight squint open */
    90%, 100% { height: 3px; border-radius: 2px; }
}

/* Text Annotations Nodes mapped in Absolute CSS matching SVG coordinate grids */
.node-text {
    position: absolute;
    text-align: center;
    color: #ccc;
    font-size: 0.875rem;
    line-height: 1.3;
    width: 80px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: color 0.4s ease;
}

.node-text.active {
    color: #fff;
    font-weight: 500;
}

.node-text span {
    display: block;
    margin-bottom: 2px;
    font-size: 1.25rem;
}

/* Hardcoded Radial String Positions calculated mathematically */
/* Top Right Element */
.label-1 { top: 40%; left: 79%; }
/* Bottom Right Element */
.label-2 { top: 74%; left: 67%; }
/* Bottom Left Element */
.label-3 { top: 74%; left: 33%; }
/* Top Left Element */
.label-4 { top: 40%; left: 21%; }
/* Top Center Final Launch Element */
.label-5 { top: 20%; left: 50%; }

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar {padding: 30px 15px;}
    .nav-links {gap: 1rem;}

    .step-card {flex-direction: column;}
    .step-card h3 {font-size: 2.5rem;}
    .step-card p {margin: 0 0 30px;}
    .how-it-works-section .section-title i {margin-left: 10px;}

    .project-img {height: 200px;}

    .progress-header {padding: 30px 15px;}
}

/* Portrait tablets */
@media (max-width:991px) {
    .contact-info {display: none;}
    .navbar {padding: 15px 30px;}
    .nav-links {gap: 1rem; margin-top: 0;}
    .nav-links a {width: 100%;}

    .how-it-works-section .section-title {justify-content: center;}
    .how-it-works-section .section-title i {margin-left: 10px;}
    .how-it-works-section .section-desc {max-width: 70%;}

    .steps-right {padding-bottom: 0;}
    
    .categories-header {align-items: center;}
    .split-layout {gap: 0;}
    .split-layout .section-desc {max-width: 70%;}

    .project-img {height: 450px;}

    .footer-grid {flex-direction: row;}

    .customize-box {padding: 0 15px; display: inline-block; width: 100%;}
    .pages-grid {grid-template-columns: repeat(4, 1fr);}
    .logo-drop {width: 190px;}

    .progress-header {padding: 30px 15px;}
}

/* Landscape phones and portrait tablets */
@media (max-width:767px) {
    .btn {font-size: 0.85rem;}
    .section-title {font-size: 2.8rem;}

    .navbar {padding: 15px;}
    

    .step-card {padding: 1.5rem; flex-direction: column;}
    .step-card p {margin: 0 0 30px; font-size: 1rem;}
    .step-card h3 {font-size: 1.8rem;}

    .categories-header {align-items: center;}
    .categories-section {padding: 4rem 0;}
    .split-layout {gap: 0;}

    .footer-grid {align-items: center;gap: 2rem;flex-direction: column;}
    .footer-bottom p span {display: block; margin: 0 0 10px;}
    .footer-left .logo {text-align: center;}

    .pages-grid {grid-template-columns: repeat(2, 1fr);}
    .logo-upload-layout, .logo-preview-area {flex-direction: column;width: 100%;}
    .logo-drop {width: 100%;}
    .figma-media-grid {grid-template-columns: inherit !important;}
    .color-split-layout {flex-direction: column;}
    .customize-action .btn {padding: 1.25rem 2rem;}

    .loader-hub {width: 450px;height: 450px;}
    .progress-actions {flex-direction: column;}
}