/* ============================================================
   SHOWCASE TEMPLATE
   Owner-operated storytelling layout with video hero,
   alternating horizontal service cards, social proof section.
   
   Prefix: sc-
   Primary: var(--primary)  — vibrant green
   Secondary: var(--secondary) — deep green
   Accent: var(--accent) — bright lime
   ============================================================ */

/* ── Animations ─────────────────────────────────────────────── */

@keyframes sc-fadeUp {
    from { opacity: 0; transform: translateY(50px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes sc-fadeLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes sc-fadeRight {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes sc-scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes sc-slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes sc-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(76,217,100,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(76,217,100,0); }
}

@keyframes sc-shimmer {
    from { background-position: -200% center; }
    to   { background-position: 200% center; }
}

.sc-animate { opacity: 0; }
.sc-animate.sc-visible {
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.sc-fade-up.sc-visible    { animation-name: sc-fadeUp; }
.sc-fade-left.sc-visible  { animation-name: sc-fadeLeft; }
.sc-fade-right.sc-visible { animation-name: sc-fadeRight; }
.sc-scale-in.sc-visible   { animation-name: sc-scaleIn; }

.sc-stagger-1 { animation-delay: 0.06s; }
.sc-stagger-2 { animation-delay: 0.14s; }
.sc-stagger-3 { animation-delay: 0.22s; }
.sc-stagger-4 { animation-delay: 0.30s; }
.sc-stagger-5 { animation-delay: 0.38s; }
.sc-stagger-6 { animation-delay: 0.46s; }

/* ── Navigation ─────────────────────────────────────────────── */

.sc-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    transition: all 0.4s;
    animation: sc-slideDown 0.6s ease;
}

.sc-nav.sc-scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.sc-nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.sc-nav-logo img {
    height: 50px;
    width: auto;
}

.sc-nav-logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary, #22c55e);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.sc-nav-logo-text span {
    color: #1e293b;
}

.sc-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sc-nav-links a {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    transition: color 0.2s;
    position: relative;
}

.sc-nav-links a:hover,
.sc-nav-links a.active {
    color: var(--primary, #22c55e);
}

.sc-nav-cta {
    background: var(--primary, #22c55e) !important;
    color: #fff !important;
    padding: 11px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.01em;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(34,197,94,0.35);
}

.sc-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(34,197,94,0.45);
    background: #16a34a !important;
}

.sc-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.sc-nav-toggle span {
    width: 26px;
    height: 2.5px;
    background: #334155;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── Hero ───────────────────────────────────────────────────── */

.sc-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 72px;
}

.sc-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f1f13 0%, #1a3a22 50%, #0d2818 100%);
}

.sc-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.sc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,30,15,0.92) 0%,
        rgba(10,30,15,0.7) 50%,
        rgba(10,30,15,0.4) 100%
    );
}

.sc-hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 28px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sc-hero-content {
    animation: sc-fadeLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.sc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: #4ade80;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.sc-hero-badge i { font-size: 10px; animation: sc-pulse 2s infinite; }

.sc-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.03em;
}

.sc-hero h1 em {
    font-style: normal;
    color: var(--accent, #4ade80);
    position: relative;
}

.sc-hero-sub {
    font-size: 19px;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin: 0 0 36px;
    max-width: 500px;
}

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

.sc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary, #22c55e);
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(34,197,94,0.4);
    border: none;
    cursor: pointer;
}

.sc-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(34,197,94,0.5);
    background: #16a34a;
}

.sc-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.25);
    transition: all 0.3s;
    cursor: pointer;
}

.sc-btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

/* Hero stats row */
.sc-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sc-hero-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.sc-hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    font-weight: 500;
}

/* Hero right side — form or image */
.sc-hero-right {
    animation: sc-fadeRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.sc-hero-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.sc-hero-form h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}

.sc-hero-form .sc-form-sub {
    font-size: 15px;
    color: #64748b;
    margin: 0 0 28px;
}

.sc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

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

.sc-form-group input,
.sc-form-group textarea,
.sc-form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8ecf1;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    color: #1e293b;
    transition: all 0.25s;
    background: #fafbfc;
    box-sizing: border-box;
}

.sc-form-group input:focus,
.sc-form-group textarea:focus {
    outline: none;
    border-color: var(--primary, #22c55e);
    box-shadow: 0 0 0 4px rgba(34,197,94,0.1);
    background: #fff;
}

.sc-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.sc-form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary, #22c55e);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.sc-form-submit:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34,197,94,0.4);
}

.sc-form-submit i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.sc-form-submit:hover i {
    transform: translateX(4px);
}

/* ── Sections ───────────────────────────────────────────────── */

.sc-section {
    padding: 100px 0;
}

.sc-section-light {
    background: #f6faf7;
}

.sc-section-dark {
    background: linear-gradient(135deg, #0a1f10 0%, #122a18 100%);
    color: #fff;
}

.sc-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

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

.sc-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,0.1);
    color: var(--primary, #22c55e);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sc-section-dark .sc-section-tag {
    background: rgba(74,222,128,0.12);
    color: #4ade80;
}

.sc-section-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 14px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.sc-section-dark .sc-section-header h2 { color: #fff; }

.sc-section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.65;
}

.sc-section-dark .sc-section-header p { color: rgba(255,255,255,0.6); }

/* ── Services — Alternating Horizontal Cards ────────────────── */

.sc-services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sc-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    border: 1px solid #f0f4f1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sc-service-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.09);
}

.sc-service-row:nth-child(even) {
    direction: rtl;
}

.sc-service-row:nth-child(even) > * {
    direction: ltr;
}

.sc-service-row-img {
    overflow: hidden;
    min-height: 280px;
}

.sc-service-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.sc-service-row:hover .sc-service-row-img img {
    transform: scale(1.06);
}

.sc-service-row-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, var(--primary, #22c55e), #059669);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-service-row-img-placeholder i {
    font-size: 56px;
    color: rgba(255,255,255,0.25);
}

.sc-service-row-body {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sc-service-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: rgba(34,197,94,0.12);
    line-height: 1;
    margin-bottom: 8px;
}

.sc-service-row-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.sc-service-row-body p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 24px;
}

.sc-service-row-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary, #22c55e);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s;
}

.sc-service-row-link:hover { gap: 14px; }

.sc-service-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34,197,94,0.08);
    color: var(--primary, #22c55e);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    width: fit-content;
}

/* ── About / Owner Spotlight ────────────────────────────────── */

.sc-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.sc-about-img-wrap {
    position: relative;
}

.sc-about-img-wrap img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.sc-about-img-placeholder {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary, #22c55e) 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: rgba(255,255,255,0.15);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* Floating badge on about image */
.sc-about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 14px;
}

.sc-about-badge-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary, #22c55e), #4ade80);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.sc-about-badge-text strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

.sc-about-badge-text span {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.sc-about-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.sc-about-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.75;
    margin: 0 0 28px;
}

.sc-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sc-about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
}

.sc-about-feature i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(34,197,94,0.12);
    color: var(--primary, #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* ── Testimonials ───────────────────────────────────────────── */

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

.sc-testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.sc-testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(74,222,128,0.2);
}

.sc-testimonial-stars {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.sc-testimonial-text {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 24px;
}

.sc-testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sc-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #22c55e), #4ade80);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
}

.sc-testimonial-author {
    font-weight: 700;
    color: #fff;
    font-size: 15px;
}

.sc-testimonial-location {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

.sc-google-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    color: #4ade80;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: gap 0.3s;
}

.sc-google-link:hover { gap: 16px; }

/* ── FAQ ────────────────────────────────────────────────────── */

.sc-faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.sc-faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid #eef2f0;
    transition: all 0.3s;
}

.sc-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.sc-faq-item.active {
    border-color: var(--primary, #22c55e);
    box-shadow: 0 4px 20px rgba(34,197,94,0.1);
}

.sc-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    transition: color 0.2s;
}

.sc-faq-question:hover { color: var(--primary, #22c55e); }

.sc-faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(34,197,94,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.sc-faq-icon i {
    font-size: 12px;
    color: var(--primary, #22c55e);
    transition: transform 0.3s;
}

.sc-faq-item.active .sc-faq-icon {
    background: var(--primary, #22c55e);
}

.sc-faq-item.active .sc-faq-icon i {
    color: #fff;
    transform: rotate(180deg);
}

.sc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sc-faq-item.active .sc-faq-answer {
    max-height: 400px;
}

.sc-faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

/* ── Contact Section ────────────────────────────────────────── */

.sc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}

.sc-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f4f1;
}

.sc-contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #22c55e);
    font-size: 20px;
    flex-shrink: 0;
}

.sc-contact-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
    font-size: 16px;
}

.sc-contact-card p,
.sc-contact-card a {
    font-size: 15px;
    color: #64748b;
    text-decoration: none;
    margin: 0;
}

.sc-contact-card a:hover { color: var(--primary, #22c55e); }

/* ── Gallery ────────────────────────────────────────────────── */

.sc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sc-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

.sc-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.sc-gallery-item:hover img { transform: scale(1.08); }

/* ── CTA Banner ─────────────────────────────────────────────── */

.sc-cta-banner {
    background: linear-gradient(135deg, var(--primary, #22c55e) 0%, #059669 100%);
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sc-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.12) 0%, transparent 60%);
}

.sc-cta-banner h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    position: relative;
}

.sc-cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 32px;
    position: relative;
}

.sc-cta-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary, #22c55e);
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.sc-cta-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ── Footer ─────────────────────────────────────────────────── */

.sc-footer {
    background: #071210;
    color: rgba(255,255,255,0.6);
    padding: 64px 0 0;
}

.sc-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 44px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

.sc-footer h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}

.sc-footer p, .sc-footer a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    line-height: 1.7;
}

.sc-footer a:hover { color: #4ade80; }

.sc-footer-links { list-style: none; padding: 0; margin: 0; }
.sc-footer-links li { margin-bottom: 10px; }

.sc-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.sc-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 17px;
    transition: all 0.3s;
}

.sc-footer-social a:hover {
    background: var(--primary, #22c55e);
    color: #fff;
    transform: translateY(-3px);
}

.sc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    margin-top: 52px;
    text-align: center;
    font-size: 13px;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .sc-hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 28px; }
    .sc-hero-right { max-width: 520px; }
    .sc-service-row { grid-template-columns: 1fr; }
    .sc-service-row:nth-child(even) { direction: ltr; }
    .sc-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .sc-testimonials-grid { grid-template-columns: 1fr 1fr; }
    .sc-contact-grid { grid-template-columns: 1fr; }
    .sc-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .sc-nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px 28px;
        gap: 16px;
        box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    }
    .sc-nav-links.active { display: flex; }
    .sc-nav-toggle { display: flex; }
    .sc-hero h1 { font-size: 32px; }
    .sc-hero-stats { gap: 24px; flex-wrap: wrap; }
    .sc-hero-btns { flex-direction: column; }
    .sc-btn-primary, .sc-btn-outline { width: 100%; justify-content: center; }
    .sc-testimonials-grid { grid-template-columns: 1fr; }
    .sc-gallery-grid { grid-template-columns: 1fr 1fr; }
    .sc-about-features { grid-template-columns: 1fr; }
    .sc-footer-grid { grid-template-columns: 1fr; }
    .sc-about-badge { position: static; margin-top: 16px; }
    .sc-form-row { grid-template-columns: 1fr; }
}
