/* =========================================================================
   FIND2DIGITAL — DESIGN SYSTEM v2.0.0
   Calm, Fresha-inspired: white + ink, one soft violet accent — no loud
   multicolour gradients. Display: Plus Jakarta Sans. Body: Inter.
   ========================================================================= */

:root {
	--f2d-ink: #14121F;
	--f2d-accent: #7C5CFC;
	--f2d-accent-2: #FF6FA0;
	--f2d-accent-soft: #F1EDFF;
	--f2d-paper: #FFFFFF;
	--f2d-mist: #F7F6FB;

	--f2d-muted: #6B6478;
	--f2d-muted-light: rgba(255,255,255,.68);
	--f2d-border: rgba(20,18,31,.10);
	--f2d-border-dark: rgba(255,255,255,.14);

	--f2d-font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
	--f2d-font-body: 'Inter', system-ui, sans-serif;

	--f2d-radius: 20px;
	--f2d-container: 1180px;
	--f2d-shadow: 0 18px 40px -22px rgba(20,18,31,.16);
	--f2d-shadow-lg: 0 30px 60px -26px rgba(20,18,31,.24);
}

.f2d-body, .f2d-body * , .f2d-body *::before, .f2d-body *::after { box-sizing: border-box; }
.f2d-body { margin:0; padding:0; background: var(--f2d-paper); color: var(--f2d-ink); font-family: var(--f2d-font-body); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
.f2d-body h1, .f2d-body h2, .f2d-body h3, .f2d-body h4 { font-family: var(--f2d-font-display); font-weight: 700; line-height: 1.15; margin: 0; color: var(--f2d-ink); letter-spacing: -.01em; }
.f2d-body p { margin: 0; }
:where(.f2d-body) a { color: inherit; text-decoration: none; }
.f2d-body ul { list-style: none; margin: 0; padding: 0; }
.f2d-body img { max-width: 100%; display: block; }
.f2d-body button { font-family: inherit; cursor: pointer; background: none; border: none; }
#f2d-main { overflow: hidden; }

.f2d-container { max-width: var(--f2d-container); margin: 0 auto; padding: 0 28px; }
@media (max-width: 480px) { .f2d-container { padding: 0 20px; } }

.f2d-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.f2d-reveal.is-visible { opacity: 1; transform: translateY(0); }
.f2d-reveal--delay.is-visible { transition-delay: .15s; }
@media (prefers-reduced-motion: reduce) { .f2d-reveal { opacity: 1; transform: none; transition: none; } }

.f2d-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--f2d-accent); margin-bottom: 16px; background: var(--f2d-accent-soft); padding: 7px 14px 7px 10px; border-radius: 999px; }
.f2d-eyebrow--light { color: #fff; background: rgba(255,255,255,.14); }
.f2d-eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--f2d-accent); flex: none; }
.f2d-eyebrow--light .f2d-eyebrow__dot { background: #fff; }

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.f2d-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 24px; border-radius: 999px; font-weight: 700; font-size: 14.5px; border: 1.5px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; white-space: nowrap; }
.f2d-btn.f2d-btn--dark { background: var(--f2d-ink); color: #fff; }
.f2d-btn.f2d-btn--dark:hover { transform: translateY(-2px); box-shadow: var(--f2d-shadow); background: var(--f2d-accent); color: #fff; }
.f2d-btn.f2d-btn--ghost { border-color: var(--f2d-border); color: var(--f2d-ink); background: transparent; }
.f2d-btn.f2d-btn--ghost:hover { border-color: var(--f2d-ink); }
.f2d-btn.f2d-btn--light { background: #fff; color: var(--f2d-ink); }
.f2d-btn.f2d-btn--light:hover { background: var(--f2d-accent); color: #fff; }
.f2d-btn--sm { padding: 9px 18px; font-size: 13px; }
.f2d-btn--lg { padding: 16px 30px; font-size: 15.5px; }
.f2d-btn--full { width: 100%; }

/* =========================================================================
   HEADER
   ========================================================================= */
.f2d-header { position: sticky; top: 0; z-index: 600; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--f2d-border); }
.f2d-header__inner { position: relative; display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }

.f2d-brand { display: flex; align-items: center; }
.f2d-brand__logo { max-height: 30px; width: auto; }
.f2d-brand__text { font-family: var(--f2d-font-display); font-weight: 800; font-size: 24px; color: var(--f2d-ink); letter-spacing: -.02em; text-transform: lowercase; }
.f2d-brand__text--light { color: #fff; font-size: 25px; }

.f2d-header__actions { display: flex; align-items: center; gap: 12px; }

/* Single "Menu" trigger + dropdown panel (Fresha-style) */
.f2d-menu { position: relative; }
.f2d-menu__toggle { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 700; color: var(--f2d-ink); padding: 10px 10px 10px 18px; border: 1px solid var(--f2d-border); border-radius: 999px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.f2d-menu__toggle:hover { border-color: var(--f2d-ink); }
.f2d-menu__icon { display: flex; flex-direction: column; justify-content: center; gap: 3px; width: 30px; height: 30px; border-radius: 50%; background: var(--f2d-mist); align-items: center; }
.f2d-menu__icon span { display: block; width: 13px; height: 1.6px; background: var(--f2d-ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.f2d-menu.is-open .f2d-menu__icon span:nth-child(1) { transform: translateY(4.6px) rotate(45deg); }
.f2d-menu.is-open .f2d-menu__icon span:nth-child(2) { opacity: 0; }
.f2d-menu.is-open .f2d-menu__icon span:nth-child(3) { transform: translateY(-4.6px) rotate(-45deg); }

.f2d-menu__panel { position: absolute; top: calc(100% + 12px); right: 0; width: 460px; max-width: calc(100vw - 40px); background: #fff; border: 1px solid var(--f2d-border); border-radius: 20px; box-shadow: var(--f2d-shadow-lg); padding: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; max-height: 80vh; overflow-y: auto; }
.f2d-menu.is-open .f2d-menu__panel { opacity: 1; transform: translateY(0); pointer-events: auto; }
.f2d-menu__heading { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--f2d-muted); margin-bottom: 12px; }
.f2d-menu__heading--spaced { margin-top: 22px; }
.f2d-menu__col ul { display: flex; flex-direction: column; gap: 3px; }
.f2d-menu__col a { display: block; font-size: 14.5px; font-weight: 600; color: var(--f2d-ink); padding: 8px 0; }
.f2d-menu__col a:hover { color: var(--f2d-accent); }
.f2d-menu__lang { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--f2d-ink); padding: 8px 0; }
.f2d-menu__lang:hover { color: var(--f2d-accent); }
.f2d-menu__lang .f2d-icon { color: var(--f2d-accent); }

@media (max-width: 620px) {
	.f2d-header__cta { display: none; }
	.f2d-menu__panel { grid-template-columns: 1fr; width: 320px; }
}
@media (max-width: 360px) {
	.f2d-brand__text { font-size: 19px; }
	.f2d-menu__toggle span:first-child { display: none; }
}

/* =========================================================================
   LANGUAGE POPUP MODAL
   ========================================================================= */
.f2d-lang-modal { position: fixed; inset: 0; z-index: 900; display: none; align-items: center; justify-content: center; padding: 20px; }
.f2d-lang-modal.is-open { display: flex; }
.f2d-lang-modal__backdrop { position: absolute; inset: 0; background: rgba(20,18,31,.55); backdrop-filter: blur(2px); }
.f2d-lang-modal__panel { position: relative; background: #fff; border-radius: 24px; padding: 40px; max-width: 640px; width: 100%; max-height: 82vh; overflow-y: auto; box-shadow: var(--f2d-shadow-lg); }
.f2d-lang-modal__panel h2 { font-size: 24px; margin-bottom: 8px; }
.f2d-lang-modal__sub { color: var(--f2d-muted); font-size: 14.5px; margin-bottom: 26px; }
.f2d-lang-modal__close { position: absolute; top: 22px; right: 22px; width: 36px; height: 36px; border-radius: 50%; background: var(--f2d-mist); display: flex; align-items: center; justify-content: center; color: var(--f2d-ink); }
.f2d-lang-modal__close:hover { background: var(--f2d-accent-soft); color: var(--f2d-accent); }
.f2d-lang-modal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.f2d-lang-modal__item { display: flex; flex-direction: column; gap: 3px; padding: 14px 16px; border: 1.5px solid var(--f2d-border); border-radius: 14px; transition: border-color .18s ease, background .18s ease; }
.f2d-lang-modal__item:hover { border-color: var(--f2d-accent); background: var(--f2d-accent-soft); }
.f2d-lang-modal__item.is-active { border-color: var(--f2d-accent); background: var(--f2d-accent-soft); }
.f2d-lang-modal__native { font-weight: 700; font-size: 14.5px; color: var(--f2d-ink); }
.f2d-lang-modal__region { font-size: 12.5px; color: var(--f2d-muted); }
@media (max-width: 560px) { .f2d-lang-modal__grid { grid-template-columns: 1fr 1fr; } .f2d-lang-modal__panel { padding: 30px 22px; } }

/* =========================================================================
   HERO
   ========================================================================= */
.f2d-hero { position: relative; padding: 88px 0 90px; overflow: hidden; }
.f2d-hero__wash { position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background:
		radial-gradient(ellipse 60% 55% at 15% 10%, rgba(124,92,252,.13), transparent 60%),
		radial-gradient(ellipse 50% 45% at 90% 0%, rgba(124,92,252,.09), transparent 60%); }
.f2d-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.f2d-hero__title { font-size: clamp(32px, 4vw, 50px); letter-spacing: -.02em; margin-bottom: 24px; white-space: pre-line; }
.f2d-hero__desc { font-size: 17px; line-height: 1.75; color: var(--f2d-muted); max-width: 500px; margin: 0 0 36px; }
.f2d-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.f2d-hero__trust { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--f2d-muted); margin-bottom: 26px; }
.f2d-hero__trust .f2d-stars { margin: 0; color: #F5A623; font-size: 14px; letter-spacing: 1px; }
.f2d-hero__trust strong { color: var(--f2d-ink); }
.f2d-hero__chips { display: flex; flex-wrap: wrap; gap: 9px; }
.f2d-chip { font-size: 13px; font-weight: 600; color: var(--f2d-ink); background: var(--f2d-mist); border: 1px solid var(--f2d-border); padding: 8px 15px; border-radius: 999px; transition: background .18s ease, border-color .18s ease; }
.f2d-chip:hover { background: var(--f2d-accent-soft); border-color: var(--f2d-accent); color: var(--f2d-accent); }

/* Hero visual — product preview card */
.f2d-hero__visual { position: relative; }
.f2d-preview-card { position: relative; background: #fff; border: 1px solid var(--f2d-border); border-radius: 22px; padding: 26px; box-shadow: var(--f2d-shadow-lg); }
.f2d-preview-card__top { display: flex; gap: 6px; margin-bottom: 20px; }
.f2d-preview-card__top span { width: 9px; height: 9px; border-radius: 50%; background: var(--f2d-border); }
.f2d-preview-card__top span:first-child { background: var(--f2d-accent); }
.f2d-preview-card__row { height: 12px; border-radius: 6px; background: var(--f2d-mist); margin-bottom: 10px; }
.f2d-preview-card__row--wide { width: 78%; }
.f2d-preview-card__row:nth-of-type(3) { width: 45%; }
.f2d-preview-card__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.f2d-preview-card__stats > div { display: flex; align-items: center; gap: 10px; background: var(--f2d-mist); border-radius: 14px; padding: 14px; }
.f2d-preview-card__stats .f2d-icon { width: 34px; height: 34px; border-radius: 10px; background: #fff; color: var(--f2d-accent); flex: none; }
.f2d-preview-card__stats b { display: block; font-size: 15px; font-family: var(--f2d-font-display); }
.f2d-preview-card__stats small { display: block; font-size: 11.5px; color: var(--f2d-muted); }
.f2d-preview-card__list { display: flex; flex-direction: column; gap: 8px; }
.f2d-preview-card__item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--f2d-ink); padding: 10px 12px; border: 1px solid var(--f2d-border); border-radius: 12px; }
.f2d-preview-card__item .f2d-icon { color: var(--f2d-accent); }
.f2d-preview-card__dot { margin-left: auto; width: 7px; height: 7px; border-radius: 50%; background: #3DCB78; }

.f2d-float-badge { position: absolute; display: flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--f2d-border); border-radius: 999px; padding: 9px 15px; font-size: 12.5px; font-weight: 700; box-shadow: var(--f2d-shadow); }
.f2d-float-badge .f2d-icon { color: var(--f2d-accent); }
.f2d-float-badge--top { top: -18px; right: 18px; }
.f2d-float-badge--bottom { bottom: -16px; left: -10px; }

.f2d-hero--compact { padding: 68px 0 58px; }
.f2d-hero--compact .f2d-hero__inner { display: block; }
.f2d-hero--compact .f2d-hero__title { margin-bottom: 14px; }
.f2d-hero--compact .f2d-hero__desc { margin: 0 0 24px; }

@media (max-width: 940px) {
	.f2d-hero__inner { grid-template-columns: 1fr; }
	.f2d-hero__visual { max-width: 420px; margin: 34px auto 0; }
	.f2d-hero { padding: 52px 0 48px; }
}
@media (max-width: 640px) {
	.f2d-hero { padding: 44px 0 24px; }
	.f2d-hero__visual { margin-top: 10px; }
	.f2d-hero__actions { flex-direction: column; }
	.f2d-hero__actions .f2d-btn { width: 100%; }
	.f2d-hero__chips { gap: 8px; }
	.f2d-chip { font-size: 12.5px; padding: 7px 13px; }
	.f2d-hero__visual { display: flex; flex-direction: column; }
	.f2d-float-badge { position: static; display: inline-flex; align-self: flex-start; margin: 0 0 6px; box-shadow: none; }
	.f2d-float-badge--top, .f2d-float-badge--bottom { top: auto; right: auto; bottom: auto; left: auto; }
	.f2d-float-badge--top { order: -1; margin: 0 0 6px; }
	.f2d-preview-card { order: 0; }
	.f2d-float-badge--bottom { order: 1; margin: 6px 0 0; }
	.f2d-preview-card { padding: 20px; }
	.f2d-preview-card__stats { gap: 8px; }
	.f2d-preview-card__stats > div { padding: 11px; gap: 8px; }
	.f2d-preview-card__stats .f2d-icon { width: 28px; height: 28px; }
	.f2d-preview-card__stats b { font-size: 13.5px; }
}

/* =========================================================================
   Section shells
   ========================================================================= */
.f2d-section { padding: 92px 0; position: relative; }
.f2d-section--dark { background: var(--f2d-ink); color: #fff; overflow: hidden; }
.f2d-section--dark .f2d-section__title { color: #fff; }
.f2d-section--mist { background: var(--f2d-mist); }
.f2d-section__head { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.f2d-section__title { font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -.02em; }
.f2d-section__title--light { color: #fff; }
.f2d-section__sub { color: var(--f2d-muted); font-size: 16px; margin-top: 12px; }
.f2d-section--dark .f2d-section__sub { color: var(--f2d-muted-light); }
@media (max-width: 640px) {
	.f2d-section { padding: 56px 0; }
	.f2d-section__head { margin-bottom: 34px; }
}

/* Stats */
.f2d-stats { padding: 80px 0 70px; text-align: center; }
.f2d-stats__hero { margin-bottom: 56px; }
.f2d-stats__hero-num { display: block; font-family: var(--f2d-font-display); font-size: clamp(52px, 8vw, 96px); font-weight: 800; color: var(--f2d-accent); letter-spacing: -.03em; line-height: 1; }
.f2d-stats__hero-label { display: block; font-size: 16.5px; color: var(--f2d-muted); font-weight: 600; margin-top: 14px; }
.f2d-stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.f2d-stat__num { display: block; font-family: var(--f2d-font-display); font-size: clamp(28px, 3.2vw, 38px); font-weight: 800; color: var(--f2d-accent); letter-spacing: -.02em; margin-bottom: 6px; }
.f2d-stat__label { font-size: 13.5px; color: var(--f2d-muted); font-weight: 600; }

/* Scroll-linked colour + size: each stat number's colour is interpolated
   directly (plain `color`, no background-clip tricks — those can render
   invisible text on some browsers) between ink (black) and the accent
   colour based on how close it is to the vertical centre of the screen,
   and it grows slightly at the same time. See main.js. */
.f2d-stats__hero-num, .f2d-stat__num {
	color: var(--f2d-ink);
	transform-origin: center;
	transition: transform .15s linear, color .15s linear;
}
@media (prefers-reduced-motion: reduce) {
	.f2d-stats__hero-num, .f2d-stat__num { transform: none !important; transition: none; color: var(--f2d-accent); }
}
@media (max-width: 700px) {
	.f2d-stats { padding: 36px 0 50px; }
	.f2d-stats__hero { margin-bottom: 48px; }
	.f2d-stats__grid { grid-template-columns: 1fr; row-gap: 48px; }
	.f2d-stat__num { color: var(--f2d-accent); font-size: clamp(34px, 9vw, 46px); }
}
@media (max-width: 480px) {
	.f2d-stats__grid { grid-template-columns: 1fr; row-gap: 44px; }
}

/* Cards */
.f2d-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.f2d-card { background: #fff; border: 1px solid var(--f2d-border); border-radius: var(--f2d-radius); padding: 28px 24px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.f2d-card:hover { transform: translateY(-5px); box-shadow: var(--f2d-shadow-lg); border-color: transparent; }
.f2d-card__icon { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 13px; background: var(--f2d-accent-soft); color: var(--f2d-accent); margin-bottom: 16px; }
.f2d-card__title { font-size: 18px; margin-bottom: 9px; }
.f2d-card__desc { color: var(--f2d-muted); font-size: 14.5px; }
.f2d-card--link { display: block; cursor: pointer; }
.f2d-card__arrow { display: inline-block; margin-top: 15px; font-size: 13.5px; font-weight: 700; color: var(--f2d-accent); }
@media (max-width: 900px) { .f2d-card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .f2d-card-grid { grid-template-columns: 1fr; } }

/* Process */
.f2d-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.f2d-process__step { padding: 0 24px; border-left: 1px dashed var(--f2d-border-dark); }
.f2d-process__step:first-child { border-left: none; }
.f2d-process__num { font-family: var(--f2d-font-display); font-size: 22px; font-weight: 800; color: var(--f2d-accent); display: block; margin-bottom: 14px; }
.f2d-process__step h3 { color: #fff; font-size: 17.5px; margin-bottom: 9px; }
.f2d-process__step p { color: var(--f2d-muted-light); font-size: 14px; }
@media (max-width: 900px) { .f2d-process { grid-template-columns: 1fr 1fr; row-gap: 34px; } .f2d-process__step:nth-child(3) { border-left: none; } }
@media (max-width: 560px) { .f2d-process { grid-template-columns: 1fr; } .f2d-process__step { border-left: none; border-top: 1px dashed var(--f2d-border-dark); padding: 22px 0 0; } .f2d-process__step:first-child { border-top: none; padding-top: 0; } }

/* Feature grid + detail pages */
.f2d-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 38px; }
.f2d-feature { display: flex; gap: 15px; }
.f2d-feature__icon { flex: none; width: 40px; height: 40px; border-radius: 12px; background: var(--f2d-accent-soft); color: var(--f2d-accent); display: inline-flex; align-items: center; justify-content: center; }
.f2d-feature h3 { font-size: 16.5px; margin-bottom: 6px; }
.f2d-feature p { color: var(--f2d-muted); font-size: 14.5px; }
@media (max-width: 700px) { .f2d-feature-grid { grid-template-columns: 1fr; } }

.f2d-detail { max-width: 860px; margin: 0 auto; }
.f2d-detail__desc { font-size: 17.5px; color: var(--f2d-muted); margin-bottom: 42px; max-width: 700px; }

/* Testimonials */
.f2d-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.f2d-testimonial { background: #fff; border: 1px solid var(--f2d-border); border-radius: var(--f2d-radius); padding: 28px; }
.f2d-stars { display: block; color: #F5A623; letter-spacing: 2px; font-size: 14px; margin-bottom: 13px; }
.f2d-testimonial blockquote { margin: 0 0 18px; font-size: 15px; color: var(--f2d-ink); line-height: 1.6; }
.f2d-testimonial__name { display: block; font-weight: 700; font-size: 14px; }
.f2d-testimonial__title { display: block; font-size: 12.5px; color: var(--f2d-muted); }
@media (max-width: 900px) { .f2d-testimonial-grid { grid-template-columns: 1fr; } }

/* Pricing */
.f2d-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.f2d-pricing-card { position: relative; background: #fff; border: 1px solid var(--f2d-border); border-radius: var(--f2d-radius); padding: 32px 26px; display: flex; flex-direction: column; }
.f2d-pricing-card--featured { border-color: var(--f2d-ink); box-shadow: var(--f2d-shadow-lg); }
.f2d-pricing-card__badge { position: absolute; top: -13px; left: 26px; background: var(--f2d-ink); color: #fff; font-size: 11px; font-weight: 800; padding: 5px 12px; border-radius: 999px; }
.f2d-pricing-card h3 { font-size: 18px; margin-bottom: 9px; }
.f2d-pricing-card__price { font-family: var(--f2d-font-display); font-size: 30px; font-weight: 800; color: var(--f2d-accent); margin-bottom: 9px; }
.f2d-pricing-card__desc { color: var(--f2d-muted); font-size: 13.5px; margin-bottom: 20px; }
.f2d-pricing-card__features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; flex: 1; }
.f2d-pricing-card__features li { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; color: var(--f2d-ink); }
.f2d-pricing-card__features .f2d-icon { color: var(--f2d-accent); flex: none; margin-top: 1px; display: inline-flex; }
@media (max-width: 900px) { .f2d-pricing-grid { grid-template-columns: 1fr; } }

/* CTA */
.f2d-cta { position: relative; background: var(--f2d-ink); color: #fff; padding: 88px 0; text-align: center; }
.f2d-cta__inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.f2d-cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 15px; }
.f2d-cta p { color: var(--f2d-muted-light); font-size: 16px; margin-bottom: 30px; }
@media (max-width: 640px) {
	.f2d-cta { padding: 56px 0; }
	.f2d-cta .f2d-btn { width: 100%; }
}

/* Contact */
.f2d-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.f2d-contact__desc { color: var(--f2d-muted-light); font-size: 15px; margin: 15px 0 28px; max-width: 420px; }
.f2d-contact__info { display: flex; flex-direction: column; gap: 13px; }
.f2d-contact__info li { display: flex; gap: 13px; align-items: baseline; font-size: 14.5px; color: #fff; }
.f2d-tag { color: var(--f2d-accent); font-size: 10.5px; font-weight: 800; width: 54px; flex: none; text-transform: uppercase; letter-spacing: .06em; }
.f2d-contact__info a { border-bottom: 1px solid transparent; }
.f2d-contact__info a:hover { border-color: var(--f2d-accent); }

.f2d-form { background: rgba(255,255,255,.05); border: 1px solid var(--f2d-border-dark); border-radius: var(--f2d-radius); padding: 30px; }
.f2d-form__row { margin-bottom: 17px; }
.f2d-form__row label { display: block; font-size: 12.5px; font-weight: 600; color: var(--f2d-muted-light); margin-bottom: 7px; }
.f2d-form input, .f2d-form textarea { width: 100%; background: rgba(255,255,255,.06); border: 1px solid var(--f2d-border-dark); border-radius: 10px; padding: 12px 14px; color: #fff; font-family: var(--f2d-font-body); font-size: 14px; }
.f2d-form input:focus, .f2d-form textarea:focus { outline: 2px solid var(--f2d-accent); outline-offset: 1px; }
.f2d-form__status { margin-top: 13px; font-size: 13px; min-height: 18px; }
.f2d-form__status.is-success { color: #7EE0A8; }
.f2d-form__status.is-error { color: #FF9B85; }
@media (max-width: 860px) { .f2d-contact__grid { grid-template-columns: 1fr; gap: 36px; } }

/* =========================================================================
   FOOTER
   ========================================================================= */
.f2d-footer { position: relative; background: var(--f2d-ink); color: #fff; padding: 0 0 28px; overflow: hidden; }
.f2d-footer__glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; top: -220px; left: 50%; transform: translateX(-50%); background: var(--f2d-accent); opacity: .16; filter: blur(100px); pointer-events: none; }

.f2d-footer-cta { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 74px auto 66px; }
.f2d-footer-cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.f2d-footer-cta p { color: var(--f2d-muted-light); font-size: 15.5px; margin-bottom: 28px; }
@media (max-width: 640px) {
	.f2d-footer-cta { margin: 46px auto 44px; }
	.f2d-footer-cta .f2d-btn { width: 100%; }
}

.f2d-footer__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--f2d-border-dark); }
.f2d-footer__brand p { color: var(--f2d-muted-light); font-size: 14px; margin: 13px 0 20px; max-width: 300px; }

.f2d-social { display: flex; gap: 10px; }
.f2d-social__link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid var(--f2d-border-dark); display: inline-flex; align-items: center; justify-content: center; transition: background .2s ease; font-size: 12px; font-weight: 800; letter-spacing: .02em; color: #fff; text-transform: uppercase; }
.f2d-social__link:hover { background: var(--f2d-accent); }

.f2d-footer__heading { display: block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--f2d-muted-light); margin-bottom: 17px; }
.f2d-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.f2d-footer__col a { font-size: 13.5px; color: var(--f2d-muted-light); }
.f2d-footer__col a:hover { color: #fff; }

.f2d-footer__bottom { position: relative; z-index: 1; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--f2d-muted-light); }
.f2d-footer__version { font-weight: 600; }

@media (max-width: 900px) { .f2d-footer__grid { grid-template-columns: 1fr 1fr; row-gap: 32px; } }
@media (max-width: 560px) { .f2d-footer__grid { grid-template-columns: 1fr; } }

/* RTL */
html[dir="rtl"] .f2d-menu__panel { right: auto; left: 0; }
html[dir="rtl"] .f2d-tag { order: 2; }

/* Inline SVG icon wrapper (replaces the dashicons webfont) */
.f2d-icon { display: inline-flex; align-items: center; justify-content: center; }
.f2d-icon svg { display: block; }
