/* ============================================================
   Logo-Core Theme — Global Styles
   ============================================================ */

/* ----- Google Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ----- CSS Variables (defaults, overridden by plugin inline CSS) ----- */
:root {
    --color-primary:    #FF6600;
    --color-bg:         #FAFAFA;
    --color-text:       #111111;
    --color-dark-bg:    #111111;
    --color-accent-bg:  #151515;
    --color-primary-light: rgba(255,102,0,0.15);
    --color-primary-pale:  rgba(255,102,0,0.05);
    --color-primary-hover: #e05e00;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;

    --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
    --shadow-xl:  0 20px 60px rgba(0,0,0,0.15);
    --shadow-orange: 0 4px 20px rgba(255,102,0,0.2);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   Layout Utilities
   ============================================================ */
.site-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: clip;
}
.site-content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 768px) {
    .section-container { padding: 0 3rem; }
}
.grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .grid-2col { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Background Elements
   ============================================================ */
.bg-grid-pattern {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    background-image:
        linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}
.orange-glow {
    position: fixed;
    top: 0; right: 0;
    width: 600px; height: 600px;
    background: var(--color-primary-light);
    border-radius: 50%;
    filter: blur(100px);
    transform: translate(25%, -25%);
    pointer-events: none;
    z-index: 0;
}
@media (min-width: 768px) {
    .orange-glow { width: 800px; height: 800px; filter: blur(120px); }
}

/* ============================================================
   Scroll Reveal Animations
   ============================================================ */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   Section Badge
   ============================================================ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid #1c1c1c;
    background: #fff;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}
.section-badge span { font-size: 0.875rem; font-weight: 500; color: #111; }
.section-badge--white-bg { background: #fff; border-color: transparent; }
.section-badge--bordered { border-width: 2px; font-weight: 700; letter-spacing: 0.04em; }
.badge-dot {
    width: 0.5rem; height: 0.5rem;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s, box-shadow 0.2s;
}
.btn--primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: var(--shadow-orange);
}
.btn--primary:hover { background: var(--color-primary-hover); }
.btn--outline {
    background: #fff;
    color: var(--color-text);
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-sm);
}
.btn--outline:hover { background: #f9f9f9; }
.btn-icon {
    width: 2rem; height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.btn-icon--white  { background: #fff; }
.btn-icon--primary{ background: var(--color-primary); }
.btn-dark {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #222;
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.875rem;
    text-align: center;
    transition: background 0.2s;
}
.btn-dark:hover { background: #000; }
.btn-dark--icon {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: var(--radius-sm);
}
.btn-dark-icon {
    width: 2rem; height: 2rem;
    background: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   Navbar
   ============================================================ */
.site-nav {
    width: 100%;
    padding: 1.5rem 1.5rem;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}
.nav-logo-icon {
    width: 2rem; height: 2rem;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.nav-logo-icon img.nav-logo-img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.nav-brand { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-menu li a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    transition: color 0.2s;
}
.nav-menu li a:hover { color: var(--color-text); }
@media (min-width: 768px) {
    .site-nav { padding: 1.5rem 3rem; }
    .nav-menu { display: flex; }
}
.nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #1a1a1a;
    color: #fff;
    padding: 0.5rem 0.5rem 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.2s;
}
.nav-cta-btn:hover { background: #000; }
.nav-cta-icon {
    width: 1.75rem; height: 1.75rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem 5rem;
    text-align: center;
}
@media (min-width: 768px) { .hero-section { padding: 6rem 1rem 7rem; } }

/* Floating Badges */
.hero-badge-left,
.hero-badge-right {
    position: absolute;
    display: none;
    animation: floatBounce 3s ease-in-out infinite;
}
@media (min-width: 768px) {
    .hero-badge-left  { display: block; top: 40%; left: 15%; }
    .hero-badge-right { display: block; top: 25%; right: 15%; animation-delay: 1.5s; }
}
@media (min-width: 1024px) {
    .hero-badge-left  { left: 20%; }
    .hero-badge-right { right: 20%; }
}
@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.hero-float-badge {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}
.hero-float-badge--primary {
    background: var(--color-primary);
    color: #fff;
}
.hero-float-badge--outline {
    background: #fff;
    color: var(--color-primary);
    border: 1px solid rgba(255,102,0,0.2);
}
.hero-content { max-width: 64rem; margin: 0 auto; position: relative; z-index: 10; }
.hero-heading {
    font-size: clamp(2.5rem, 6vw, 5.25rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}
.hero-subheading {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 640px) {
    .hero-buttons { flex-direction: row; justify-content: center; }
}

/* ============================================================
   Marquee — Image Scroll
   ============================================================ */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0 3rem;
}
.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
    padding: 0 1.5rem;
}
.marquee-track--reverse {
    animation-direction: reverse;
    animation-duration: 30s;
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-item {
    width: 280px; height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
    .marquee-item { width: 380px; height: 400px; }
}
.marquee-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.marquee-item:hover img { transform: scale(1.05); }

/* Gradient fade masks */
.marquee-fade {
    position: absolute;
    top: 0; bottom: 0;
    width: 6rem; z-index: 10;
    pointer-events: none;
}
@media (min-width: 768px) { .marquee-fade { width: 12rem; } }
.marquee-fade--left  { left:  0; background: linear-gradient(to right, var(--color-bg), transparent); }
.marquee-fade--right { right: 0; background: linear-gradient(to left,  var(--color-bg), transparent); }
.marquee-fade--white.marquee-fade--left  { background: linear-gradient(to right, #fff, transparent); }
.marquee-fade--white.marquee-fade--right { background: linear-gradient(to left,  #fff, transparent); }
.marquee-fade--dark.marquee-fade--left  { background: linear-gradient(to right, var(--color-accent-bg), transparent); }
.marquee-fade--dark.marquee-fade--right { background: linear-gradient(to left,  var(--color-accent-bg), transparent); }

/* ============================================================
   Services Marquee
   ============================================================ */
.services-marquee-wrapper {
    position: relative;
    background: #fff;
    border-top:    1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    padding: 2rem 0;
    overflow: hidden;
}
.service-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.service-tag span { font-weight: 600; color: #111; white-space: nowrap; }

/* ============================================================
   About Section
   ============================================================ */
.about-section {
    background: #fff;
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}
.about-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}
.about-body {
    color: #6b7280;
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 30rem;
}
.about-stats {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (min-width: 768px) { .about-stats { gap: 1.5rem; } }
.stat-card {
    background: #f8f8f8;
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.stat-icon {
    width: 2.5rem; height: 2.5rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.stat-icon svg { width: 1.25rem; height: 1.25rem; color: #111; }
.stat-number { font-size: 2.5rem; font-weight: 900; color: var(--color-text); line-height: 1; margin-bottom: 0.25rem; }
.stat-label  { font-size: 0.875rem; color: #6b7280; font-weight: 600; }
.stat-center-badge {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem; height: 5rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 10;
}
.stat-center-inner {
    width: 3.5rem; height: 3.5rem;
    background: #FFF0E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   Services Stacking Section
   ============================================================ */
.services-stacking-section {
    background: var(--color-bg);
    position: relative;
    z-index: 10;
    padding-top: 6rem;
    padding-bottom: 8rem;
}
.services-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .services-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.services-heading {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--color-text);
    text-align: left;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
@media (min-width: 768px) { .services-heading { text-align: right; } }

/* Background ghost text */
.stacking-wrapper {
    position: relative;
    width: 100%;
    margin-top: 3rem;
}
.stacking-bg-text {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
    font-size: 14vw;
    font-weight: 900;
    text-align: center;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stacking-cards-container {
    position: relative;
    z-index: 10;
    margin-top: -100vh;
    padding: 20vh 1rem;
}
.stacking-cards-inner {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30vh;
}
.stacking-card {
    position: sticky;
    width: 100%;
    max-width: 56rem;
    height: 70vh;
    min-height: 400px;
    max-height: 700px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
}
.stacking-card img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.stacking-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 100%);
}
.stacking-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.stacking-card-content h3 {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
}
.stacking-card-icon {
    width: 3rem; height: 3rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.stacking-card-icon:hover { background: rgba(255,255,255,0.2); }
@media (min-width: 768px) {
    .stacking-card-icon { width: 4rem; height: 4rem; }
    .stacking-card-icon svg { width: 1.5rem; height: 1.5rem; }
}

/* ============================================================
   Projects Section
   ============================================================ */
.projects-section {
    background: var(--color-accent-bg);
    position: relative;
    z-index: 10;
    padding: 6rem 0 8rem;
    overflow: hidden;
}
.projects-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
}
@media (min-width: 768px) {
    .projects-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.projects-heading {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    text-align: left;
    line-height: 1.2;
}
@media (min-width: 768px) { .projects-heading { text-align: right; } }
.projects-marquee-wrapper {
    position: relative;
    overflow: hidden;
}
.project-card {
    width: 320px;
    background: #f5f5f5;
    border-radius: var(--radius-lg);
    padding: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .project-card { width: 480px; } }
.project-card-image {
    width: 100%; height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .project-card-image { height: 320px; } }
.project-card-image img { width: 100%; height: 100%; object-fit: cover; }
.project-card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 0.5rem 0.5rem;
}
.project-card-info h3 { font-size: 1.125rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.25rem; }
.project-card-info p  { font-size: 0.8125rem; color: #6b7280; font-weight: 500; }
.project-card-info span { font-size: 0.8125rem; color: #9ca3af; font-weight: 500; }

/* ============================================================
   Process Section
   ============================================================ */
.process-section {
    background: #fff;
    position: relative;
    z-index: 10;
    padding: 6rem 0 8rem;
}
.process-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.process-main-heading {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.process-subheading {
    color: #6b7280;
    font-size: 1rem;
    max-width: 36rem;
    line-height: 1.7;
}
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
    .process-grid { grid-template-columns: repeat(6, 1fr); }
}
.process-card {
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.process-card--large {
    grid-column: span 1;
}
.process-card--small {
    grid-column: span 1;
}
@media (min-width: 1024px) {
    .process-card--large { grid-column: span 3; }
    .process-card--small { grid-column: span 2; }
}
.process-card-visual {
    height: 14rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-step-num {
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 1;
    letter-spacing: -0.05em;
}
.process-card-body {
    background: #f8f8f8;
    padding: 2rem;
    flex-grow: 1;
    border-top: 1px solid #f3f4f6;
}
.process-card-body h3 { font-size: 1.125rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.75rem; }
.process-card-body p  { font-size: 0.875rem; color: #6b7280; line-height: 1.7; }

/* ============================================================
   Testimonials Section
   ============================================================ */
.testimonials-section {
    background: #fff;
    position: relative;
    z-index: 10;
    padding: 6rem 0 8rem;
    overflow: hidden;
}
.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testimonials-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: -0.02em;
}
.testimonials-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.hidden-mobile { display: none; }
@media (min-width: 1024px) { .hidden-mobile { display: flex; } }

.testimonial-side-card {
    flex-direction: column;
    width: 280px;
    background: #fafafa;
    border: 1px solid #f3f4f6;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    opacity: 0.6;
    transform: scale(0.95);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.testimonial-side-card img {
    width: 3rem; height: 3rem;
    border-radius: var(--radius-sm);
    object-fit: cover;
    margin-bottom: 1.5rem;
}
.testimonial-side-divider { height: 1px; background: #e5e7eb; margin-bottom: 1rem; }
.testimonial-side-footer { display: flex; justify-content: space-between; align-items: flex-end; }
.testimonial-side-footer h4 { font-weight: 700; font-size: 0.875rem; color: var(--color-text); margin-bottom: 0.125rem; }
.testimonial-side-footer p  { font-size: 0.6875rem; color: #6b7280; }

.testimonial-main-card {
    width: 100%;
    max-width: 760px;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
@media (min-width: 768px) { .testimonial-main-card { flex-direction: row; gap: 2.5rem; } }

.testimonial-bg-quote {
    position: absolute;
    right: 2rem; top: 50%;
    transform: translateY(-50%);
    font-size: 20rem;
    line-height: 1;
    color: #FFF0E5;
    font-family: Georgia, serif;
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
}
.testimonial-main-image {
    width: 100%; height: 280px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}
@media (min-width: 768px) {
    .testimonial-main-image { width: 320px; height: 380px; }
}
.testimonial-main-image img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 1rem 2rem;
    position: relative;
    z-index: 10;
}
@media (min-width: 768px) { .testimonial-main-content { padding: 2rem 2.5rem 2rem 0; } }
.testimonial-quote {
    font-size: clamp(1rem, 2vw, 1.375rem);
    color: #374151;
    font-weight: 500;
    line-height: 1.65;
    margin-bottom: 3rem;
}
.testimonial-divider { height: 1px; background: #f3f4f6; margin-bottom: 1.5rem; }
.testimonial-main-footer { display: flex; justify-content: space-between; align-items: center; }
.testimonial-main-footer h4 { font-weight: 700; font-size: 1.0625rem; color: var(--color-text); margin-bottom: 0.25rem; }
.testimonial-main-footer p  { font-size: 0.875rem; color: #6b7280; }
.testimonial-stars { display: flex; gap: 0.25rem; }
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}
.testimonials-nav-btn {
    width: 3rem; height: 3rem;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    display: flex; align-items: center; justify-content: center;
    color: #4b5563;
    transition: background 0.2s;
}
.testimonials-nav-btn:hover { background: #f9fafb; }

/* ============================================================
   Pricing Section
   ============================================================ */
.pricing-section {
    background: var(--color-bg);
    position: relative;
    z-index: 10;
    padding: 6rem 0 8rem;
}
.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pricing-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: -0.02em;
}
.pricing-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.pricing-main-card {
    background: #fff;
    border: 1px solid #E8D9F0;
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .pricing-main-card { flex-direction: row; } }
.pricing-details { width: 100%; padding: 2rem 3rem; display: flex; flex-direction: column; }
@media (min-width: 768px) { .pricing-details { width: 50%; } }
.pricing-plan-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (min-width: 1280px) { .pricing-plan-header { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.pricing-plan-header h3 { font-size: 1.75rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.75rem; }
.pricing-plan-header > div > p { font-size: 0.875rem; color: #6b7280; max-width: 18rem; line-height: 1.6; }
.pricing-toggle-inner {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-full);
    padding: 0.25rem;
}
.pricing-toggle-inner button { padding: 0.5rem 1.5rem; border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; color: #6b7280; }
.pricing-toggle-inner button.active { background: #fff; color: var(--color-primary); box-shadow: var(--shadow-sm); }
.pricing-save { font-size: 0.75rem; color: var(--color-primary); font-weight: 500; margin-top: 0.5rem; text-align: right; }
.pricing-divider { height: 1px; background: #f3f4f6; margin-bottom: 2rem; }
.pricing-price-display { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 2rem; }
.price-amount { font-size: 2.25rem; font-weight: 900; color: var(--color-text); }
.price-per    { font-size: 0.8125rem; color: #9ca3af; font-weight: 500; }
.pricing-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; flex-grow: 1; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: #4b5563; font-weight: 500; }
.pricing-feature-icon {
    width: 1.25rem; height: 1.25rem;
    background: #FFF0E5;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
/* Vertical Marquee */
.pricing-vertical-marquee {
    width: 100%;
    height: 400px;
    border: 1px solid #E8D9F0;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}
@media (min-width: 768px) { .pricing-vertical-marquee { width: 50%; height: auto; } }
.v-marquee-fade {
    position: absolute;
    left: 0; right: 0;
    height: 8rem;
    pointer-events: none;
    z-index: 10;
}
.v-marquee-fade--top    { top: 0;    background: linear-gradient(to bottom, #fff, transparent); }
.v-marquee-fade--bottom { bottom: 0; background: linear-gradient(to top,   #fff, transparent); }
.v-marquee-track {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    animation: vMarqueeScroll 20s linear infinite;
}
@keyframes vMarqueeScroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
.v-marquee-item { width: 90%; border-radius: var(--radius-md); overflow: hidden; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.v-marquee-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Pricing CTA card */
.pricing-cta-card {
    background: #fff;
    border: 1px solid #E8D9F0;
    border-radius: var(--radius-xl);
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .pricing-cta-card { flex-direction: row; align-items: center; } }
.pricing-cta-icon { width: 3rem; height: 3rem; margin-bottom: 1.5rem; }
.pricing-cta-left h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 900;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 1rem;
}
.pricing-cta-left p { font-size: 0.875rem; color: #6b7280; line-height: 1.7; max-width: 28rem; }
.pricing-cta-right {
    width: 100%;
    background: #f5f5f5;
    border: 1px solid #f3f4f6;
    border-radius: var(--radius-lg);
    padding: 2rem;
    flex-shrink: 0;
}
@media (min-width: 768px) { .pricing-cta-right { width: 420px; } }

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-section {
    background: #fff;
    position: relative;
    z-index: 10;
    padding: 6rem 0 8rem;
}
.faq-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}
@media (min-width: 768px) {
    .faq-layout { grid-template-columns: 1fr 2fr; gap: 6rem; }
}
.faq-left { display: flex; flex-direction: column; align-items: flex-start; }
.faq-left h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.faq-left p { font-size: 0.875rem; color: #6b7280; line-height: 1.7; margin-bottom: 2.5rem; max-width: 22rem; }
.faq-accordion {
    background: #f8f8f8;
    border: 1px solid #f3f4f6;
    border-radius: 1.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}
.faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.faq-inner-left { display: flex; align-items: center; gap: 1rem; }
.faq-num { color: var(--color-primary); font-weight: 600; font-size: 0.875rem; flex-shrink: 0; }
.faq-question h3 { font-size: 0.9375rem; font-weight: 600; color: #6b7280; transition: color 0.2s; }
.faq-item--open .faq-question h3 { color: var(--color-text); }
.faq-toggle-icon {
    width: 2.5rem; height: 2.5rem;
    background: #f5f5f5;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
    color: var(--color-text);
}
.faq-toggle-icon:hover { background: #e5e7eb; }
.icon-minus { display: none; }
.faq-item--open .icon-plus  { display: none; }
.faq-item--open .icon-minus { display: block; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    opacity: 0;
}
.faq-item--open .faq-answer {
    max-height: 500px;
    opacity: 1;
}
.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px dashed #e5e7eb;
}
.faq-answer-inner p { font-size: 0.875rem; color: #6b7280; line-height: 1.7; padding-top: 1.5rem; }

/* ============================================================
   Blog Section
   ============================================================ */
.blog-section {
    background: var(--color-bg);
    position: relative;
    z-index: 10;
    padding: 6rem 0 8rem;
}
.blog-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}
@media (min-width: 768px) {
    .blog-header {
        grid-template-columns: 1fr 1fr 1fr;
        text-align: center;
    }
    .blog-header .section-badge { justify-self: start; }
    .blog-header .btn            { justify-self: end; }
}
.blog-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.blog-card { display: flex; flex-direction: column; cursor: pointer; }
.blog-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.blog-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.blog-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
    transition: color 0.2s;
}
.blog-card:hover .blog-card-title { color: var(--color-primary); }
.blog-card-title--featured { color: var(--color-primary); }

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
    background: var(--color-bg);
    position: relative;
    z-index: 10;
    padding: 3rem 0 6rem;
}
.cta-card {
    background: #f8f8f8;
    border: 1px solid #E8D9F0;
    border-radius: var(--radius-xl);
    padding: 5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .cta-card { padding: 8rem 2rem; } }
.cta-stripes {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, rgba(0,0,0,0) 0px, rgba(0,0,0,0.04) 60px);
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-content h2 {
    font-size: clamp(2rem, 4.5vw, 3.75rem);
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 48rem;
}
.cta-content p { font-size: 0.9375rem; color: #6b7280; margin-bottom: 2.5rem; max-width: 32rem; }

.cta-card--with-form {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}
@media (min-width: 1024px) {
    .cta-card--with-form {
        grid-template-columns: 1fr 1fr;
        padding: 4rem;
    }
}
.cta-card--with-form .cta-content {
    align-items: flex-start;
    padding: 2rem 0;
}
.cta-meta-contact p { margin-bottom: 0.5rem; font-weight: 600; color: #111; }
.cta-mailto-link { font-size: 1.125rem; font-weight: 700; color: var(--color-primary); }

.cta-form-wrapper {
    position: relative;
    z-index: 10;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    text-align: left;
}
.cta-form h3 { font-size: 1.5rem; font-weight: 800; color: var(--color-text); margin-bottom: 2rem; }
.cta-form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .cta-form-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.cta-form-group { margin-bottom: 1.5rem; }
.cta-form-group label { display: block; font-size: 0.8125rem; font-weight: 700; color: #4b5563; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.cta-form-group input,
.cta-form-group select,
.cta-form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: var(--radius-sm);
    background: #fdfdfd;
    font-size: 0.9375rem;
    color: var(--color-text);
    font-family: inherit;
    transition: all 0.2s;
}
.cta-form-group input:focus,
.cta-form-group select:focus,
.cta-form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1);
    background: #fff;
}
.cta-form-note { font-size: 0.75rem; color: #9ca3af; text-align: center; margin-top: 1rem; font-weight: 500; }
/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: var(--color-dark-bg);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 2rem;
}
.footer-bg-text {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-size: 22vw;
    font-weight: 900;
    letter-spacing: 0.2em;
    line-height: 0.75;
    color: #fff;
    opacity: 0.03;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
    white-space: nowrap;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}
.footer-top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
    .footer-top { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.footer-logo-icon {
    width: 2.5rem; height: 2.5rem;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.footer-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.footer-logo span { font-size: 1.5rem; font-weight: 700; }
.footer-tagline { color: #9ca3af; font-size: 0.875rem; line-height: 1.7; max-width: 22rem; }
.footer-email-col { text-align: left; }
@media (min-width: 768px) { .footer-email-col { text-align: right; } }
.footer-email-label { color: #9ca3af; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.footer-email-link {
    display: block;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    transition: color 0.2s;
}
.footer-email-link:hover { color: var(--color-primary); }
.footer-divider { height: 1px; background: #1f2937; margin-bottom: 4rem; }
.footer-middle {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
    .footer-middle { flex-direction: row; justify-content: space-between; }
}
.footer-newsletter h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
.footer-form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #374151;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}
.footer-form-group input {
    background: transparent;
    color: #fff;
    font-size: 0.875rem;
    outline: none;
    border: none;
    font-family: inherit;
    width: 100%;
}
.footer-form-group input::placeholder { color: #6b7280; }
.footer-form-group button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    transition: color 0.2s;
}
.footer-form-group button:hover { color: var(--color-primary); }
.footer-form-note { color: #6b7280; font-size: 0.75rem; }
.footer-links { display: flex; gap: 4rem; justify-content: flex-start; }
@media (min-width: 768px) { .footer-links { justify-content: flex-end; } }
.footer-links-col { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-links-col a { color: #d1d5db; font-size: 0.875rem; font-weight: 600; transition: color 0.2s; }
.footer-links-col a:hover { color: var(--color-primary); }
.footer-links-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.footer-links-heading span { font-size: 0.875rem; font-weight: 700; color: #6b7280; }
.footer-dot { width: 0.375rem; height: 0.375rem; background: var(--color-primary); border-radius: 50%; }
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-credit { color: var(--color-primary); }

/* ============================================================
   Global Quote Modal
   ============================================================ */
.quote-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.quote-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.quote-modal-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.quote-modal-overlay.active .quote-modal-content {
    transform: translateY(0);
}
.quote-modal-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none; border: none;
    font-size: 32px; color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.quote-modal-close:hover { color: #111; }
.quote-modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 32px;
    letter-spacing: -0.02em;
}
.quote-modal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
@media (min-width: 600px) {
    .quote-modal-grid { grid-template-columns: 1fr 1fr; }
}
.quote-modal-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.quote-modal-full { margin-bottom: 24px; }
.quote-modal-field label {
    font-size: 11px;
    font-weight: 800;
    color: #4a6b8c;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.quote-modal-field input, .quote-modal-field textarea {
    background: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    color: #333;
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
}
.quote-modal-field input::placeholder, .quote-modal-field textarea::placeholder {
    color: #aaa;
}
.quote-modal-field input:focus, .quote-modal-field textarea:focus {
    border-color: #FF4400;
}
.quote-modal-submit {
    width: 100%;
    background: #FF4400;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    padding: 14px 16px 14px 32px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}
.quote-modal-submit:hover {
    background: #e63d00;
    transform: translateY(-2px);
}
.qm-submit-icon {
    width: 36px; height: 36px;
    background: #ffffff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.quote-modal-footer-text {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin: 24px 0 0;
    font-weight: 500;
}
.quote-modal-status {
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: none;
}
.quote-modal-status.success { color: #059669; display: block; }
.quote-modal-status.error { color: #dc2626; display: block; }
