/* ============================================
   ELEVICRAFT - Main Stylesheet
   Mobile-First | Dark Theme | Premium SaaS Style
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0A0A0F;
    --bg-secondary: #111118;
    --bg-card: #1A1A2E;
    --bg-card-hover: #1F1F35;
    --bg-glass: rgba(26, 26, 46, 0.7);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(37, 99, 235, 0.3);
    --text-primary: #FFFFFF;
    --text-secondary: #B0B8C8;
    --text-muted: #6B7280;
    --accent-blue: #2563EB;
    --accent-blue-light: #3B82F6;
    --accent-blue-glow: rgba(37, 99, 235, 0.25);
    --accent-orange: #F59E0B;
    --accent-orange-light: #FBBF24;
    --accent-green: #10B981;
    --accent-purple: #8B5CF6;
    --gradient-blue: linear-gradient(135deg, #2563EB, #3B82F6);
    --gradient-orange: linear-gradient(135deg, #F59E0B, #FBBF24);
    --gradient-dark: linear-gradient(180deg, #0A0A0F 0%, #111118 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px var(--accent-blue-glow);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --container-max: 1200px;
    --header-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography --- */
.text--accent {
    color: var(--accent-blue-light);
}

.text--orange {
    color: var(--accent-orange);
}

/* --- Section --- */
.section {
    padding: 60px 0;
    position: relative;
}

.section--dark {
    background-color: var(--bg-secondary);
}

.section__header {
    text-align: center;
    margin-bottom: 48px;
}

.section__tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-blue-light);
    background: rgba(37, 99, 235, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section__title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section__subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-blue);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-blue-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-blue-glow);
}

.btn--secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn--secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.btn--lg {
    padding: 15px 32px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn--full {
    width: 100%;
}

.btn--primary:active {
    transform: translateY(0);
}

/* --- Glass Card --- */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition-normal);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.header--scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(10, 10, 15, 0.95);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
    color: #fff;
    z-index: 1001;
}

.logo__img {
    height: 36px;
    width: auto;
}

.logo__fallback {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo__text {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
}

/* --- Navigation --- */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__list {
    display: flex;
    gap: 28px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue-light);
    border-radius: 2px;
    transition: width var(--transition-normal);
}

.nav__link:hover,
.nav__link--active {
    color: #fff;
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__cta {
    display: inline-flex;
}

/* --- Hamburger --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger__line {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition-normal);
    transform-origin: center;
}

.hamburger--active .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger--active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger--active .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(245, 158, 11, 0.06) 0%, transparent 60%),
                var(--gradient-dark);
    z-index: 0;
}

.hero__container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.hero__content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-orange-light);
    background: rgba(245, 158, 11, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 36px;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
    padding: 0 16px;
}

.hero__stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero Visual */
.hero__visual {
    display: flex;
    justify-content: center;
}

.hero__image-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.hero__placeholder-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.hero__placeholder-image svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero__floating-card {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

.hero__floating-card--1 {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.hero__floating-card--2 {
    bottom: 15%;
    left: -10px;
    animation-delay: 1.5s;
}

.floating-card__icon {
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* --- How It Works --- */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
}

.steps-connector {
    display: none;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 32px 20px;
}

.step-card__number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.step-card__icon {
    margin-bottom: 16px;
}

.step-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Industry Grid --- */
.industry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.industry-card {
    text-align: center;
    padding: 28px 20px;
}

.industry-card__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.industry-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.industry-card__desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.industry-card--cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--border-accent);
}

.industry-card__cta-text {
    font-weight: 600;
    font-size: 1rem;
}

/* --- Quote Ready --- */
.quote-ready__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.quote-ready__content .section__header {
    text-align: left;
    margin-bottom: 32px;
}

.quote-ready__content .section__subtitle {
    margin: 0;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checklist__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.checklist__check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.checklist__item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.checklist__item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Dashboard Preview */
.dashboard-preview {
    padding: 0;
    overflow: hidden;
}

.dashboard-preview__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.dashboard-preview__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4B5563;
}

.dashboard-preview__dot:nth-child(1) { background: #EF4444; }
.dashboard-preview__dot:nth-child(2) { background: #F59E0B; }
.dashboard-preview__dot:nth-child(3) { background: #10B981; }

.dashboard-preview__title {
    margin-left: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dashboard-preview__body {
    padding: 24px 20px;
}

.dashboard-preview__stat {
    text-align: center;
    margin-bottom: 16px;
}

.dashboard-preview__stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-green);
}

.dashboard-preview__stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.dashboard-preview__bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.dashboard-preview__bar-fill {
    height: 100%;
    background: var(--gradient-blue);
    border-radius: 4px;
    transition: width 1s ease;
}

.dashboard-preview__row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* --- Why Us Grid --- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.why-card {
    padding: 24px 20px;
}

.why-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.why-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card__desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    padding: 24px;
}

.testimonial-card__stars {
    font-size: 1rem;
    margin-bottom: 12px;
}

.testimonial-card__quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- CTA Section --- */
.cta-section {
    padding: 40px 0 60px;
}

.cta-card {
    text-align: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.02) 100%);
    border-color: var(--border-accent);
}

.cta-card__badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-orange-light);
    background: rgba(245, 158, 11, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.cta-card__title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-card__text {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 24px;
}

.cta-card__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-card__note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Page Hero --- */
.page-hero {
    padding: 130px 0 60px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 60%), var(--bg-primary);
}

.page-hero__title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

/* --- Service Detail --- */
.service-detail {
    padding: 50px 0;
}

.service-detail__container {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}

.service-detail__icon-wrap {
    flex-shrink: 0;
}

.service-detail__icon {
    font-size: 4rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-xl);
}

.service-detail__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-detail__desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail__benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.service-detail__benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.check-icon {
    color: var(--accent-green);
    font-weight: 700;
}

/* --- Pricing Card --- */
.pricing-card-section {
    padding: 0 0 60px;
}

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-card {
    max-width: 460px;
    width: 100%;
    text-align: center;
    padding: 36px 28px;
    position: relative;
    border-color: var(--border-accent);
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-blue);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.06em;
}

.pricing-card__plan {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pricing-card__price {
    margin-bottom: 12px;
}

.pricing-card__currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
}

.pricing-card__amount {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.pricing-card__period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-card__tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-card__features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-card__guarantee {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pricing-trust {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- FAQ --- */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.faq__item {
    padding: 0;
    overflow: hidden;
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
    cursor: pointer;
}

.faq__arrow {
    flex-shrink: 0;
    transition: transform var(--transition-normal);
    color: var(--text-muted);
}

.faq__item--open .faq__arrow {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item--open .faq__answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq__answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- About Story --- */
.about-story__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-story__content p {
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-story__placeholder {
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.about-story__placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Values --- */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 28px 20px;
}

.value-card__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Process Timeline --- */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.process-step {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 28px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step__marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: var(--shadow-glow);
}

.process-step__content {
    flex: 1;
    padding: 20px;
}

.process-step__content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.process-step__content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Contact --- */
.contact__container {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__form-wrapper {
    padding: 28px 20px;
}

.contact__form-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__info-card {
    padding: 24px;
}

.contact__info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact__info-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact__social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact__social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.contact__social-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

/* --- Form --- */
.form__group {
    margin-bottom: 18px;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.required {
    color: var(--accent-orange);
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-family);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.form__input:focus {
    outline: none;
    border-color: var(--accent-blue-light);
    box-shadow: 0 0 0 3px var(--accent-blue-glow);
    background: rgba(255, 255, 255, 0.06);
}

.form__input::placeholder {
    color: var(--text-muted);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__row {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form__error {
    display: none;
    font-size: 0.78rem;
    color: #EF4444;
    margin-top: 4px;
}

.form__group--error .form__input {
    border-color: #EF4444;
}

.form__group--error .form__error {
    display: block;
}

.form__success {
    text-align: center;
    padding: 40px 20px;
}

.form__success-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.form__success h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form__success p {
    color: var(--text-secondary);
}

/* --- Footer --- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 48px;
}

.footer__container {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.footer__brand {
    max-width: 300px;
}

.logo--footer {
    margin-bottom: 12px;
}

.footer__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.footer__social-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

.footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.footer__col-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    color: #fff;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__col li a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer__col li a:hover {
    color: #fff;
}

.footer__bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    margin-top: 36px;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.back-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablet: 640px+ */
@media (min-width: 640px) {
    .hero__title {
        font-size: 2.6rem;
    }
    .hero__actions {
        flex-direction: row;
        justify-content: center;
    }
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__links {
        grid-template-columns: repeat(3, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .form__row {
        flex-direction: row;
        gap: 16px;
    }
    .form__row .form__group {
        flex: 1;
    }
    .page-hero__title {
        font-size: 2.4rem;
    }
}

/* Desktop: 900px+ */
@media (min-width: 900px) {
    .hero__container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    .hero__content {
        text-align: left;
        margin: 0;
        flex: 1;
    }
    .hero__actions {
        justify-content: flex-start;
    }
    .hero__stats {
        justify-content: flex-start;
    }
    .hero__visual {
        flex: 1;
    }
    .hero__title {
        font-size: 3rem;
    }
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .quote-ready__container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    .quote-ready__content {
        flex: 1;
    }
    .quote-ready__visual {
        flex: 1;
    }
    .section__title {
        font-size: 2.2rem;
    }
    .service-detail__container {
        flex-direction: row;
        gap: 48px;
    }
    .service-detail__container--reverse {
        flex-direction: row-reverse;
    }
    .service-detail__content {
        flex: 1;
    }
    .service-detail__icon-wrap {
        flex-shrink: 0;
    }
    .about-story__container {
        flex-direction: row;
        align-items: center;
        gap: 48px;
    }
    .about-story__content {
        flex: 1;
    }
    .about-story__visual {
        flex: 1;
    }
    .contact__container {
        flex-direction: row;
        gap: 40px;
    }
    .contact__form-wrapper {
        flex: 1.2;
        padding: 36px 32px;
    }
    .contact__info {
        flex: 0.8;
    }
    .footer__container {
        flex-direction: row;
        gap: 60px;
    }
    .footer__brand {
        flex-shrink: 0;
    }
    .footer__links {
        flex: 1;
        grid-template-columns: repeat(3, 1fr);
    }
    .page-hero__title {
        font-size: 2.8rem;
    }
    .cta-card {
        padding: 56px 40px;
    }
    .cta-card__title {
        font-size: 2rem;
    }
}

/* Large Desktop: 1100px+ */
@media (min-width: 1100px) {
    .hero__title {
        font-size: 3.5rem;
    }
    .section__title {
        font-size: 2.5rem;
    }
    .pricing-card {
        padding: 48px 36px;
    }
}

/* Mobile Navigation */
@media (max-width: 899px) {
    .hamburger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 28px;
        transition: right var(--transition-normal);
        border-left: 1px solid var(--border-color);
        z-index: 1000;
    }
    .nav--open {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    .nav__link {
        display: block;
        padding: 10px 0;
        font-size: 1rem;
    }
    .nav__cta {
        width: 100%;
        text-align: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Selection */
::selection {
    background: var(--accent-blue);
    color: #fff;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 950;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    animation: none; /* stop pulse on hover */
}

.whatsapp-float__text {
    display: none;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    }
}

/* Show text on larger screens */
@media (min-width: 640px) {
    .whatsapp-float__text {
        display: inline;
    }
}

/* Keep back-to-top button above WhatsApp */
.back-to-top {
    bottom: 130px;
    right: 24px;
}