/* =========================================================================
   Vibe Prototype Landing Page — DATAFORT
   -------------------------------------------------------------------------
   Ported value-for-value from the approved prototype
   (datafort-vibe-prototype…chatgpt.site). Every rule is scoped to .vp-lp
   (or body.vp-landing-page), and the file is enqueued on the
   "Vibe Prototype Landing Page" template only.

   Fonts: Manrope (headings) + DM Sans (body), as in the prototype —
   loaded from Google Fonts on this template only (see inc/vibe-prototype.php).
   ========================================================================= */

.vp-lp {
	--vp-navy:  #071a80;
	--vp-ink:   #101b46;
	--vp-cyan:  #54daf0;
	--vp-paper: #f8fafb;
	--vp-line:  #d9e4ed;
	--vp-head:  Manrope, Arial, sans-serif;
	--vp-body:  "DM Sans", Arial, sans-serif;

	color: var(--vp-ink);
	background: #fff;
	font-family: var(--vp-body);
	font-size: 16px;
	line-height: normal;
	-webkit-font-smoothing: antialiased;
}

/* -------------------------------------------------------------------------
   Neutralise Divi globals inside this page only
   ---------------------------------------------------------------------- */
body.vp-landing-page #main-content .container { width: 100%; max-width: none; padding: 0; }
body.vp-landing-page #main-content .container::before { display: none; }
body.vp-landing-page #left-area { width: 100%; padding: 0; }
.vp-lp *, .vp-lp *::before, .vp-lp *::after { box-sizing: border-box; }
.vp-lp p,
.vp-lp h1, .vp-lp h2, .vp-lp h3 { padding: 0; }
.vp-lp h1 span, .vp-lp h1 em { font-size: inherit; }   /* Divi sets `h1 span { font-size: 7vw }` */
.vp-lp a { color: inherit; text-decoration: none; }
.vp-lp ul { list-style: none; margin: 0; padding: 0; }

.vp-wrap { width: min(1260px, 100% - 96px); margin: auto; }

/* =========================================================================
   HERO
   ========================================================================= */

.vp-hero { position: relative; overflow: hidden; background: #071a80; color: #fff; }
.vp-hero::before {
	content: "";
	position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(3, 12, 55, .88) 0%, rgba(3, 15, 68, .77) 42%, rgba(3, 14, 62, .38) 100%),
		url("../img/hero-background.jpg") center / cover no-repeat;
}
.vp-hero::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(0deg, rgba(2, 11, 49, .22), transparent 45%);
	pointer-events: none;
}
.vp-hero__inner {
	position: relative; z-index: 1;
	min-height: 650px;
	display: grid;
	grid-template-columns: 1.04fr .96fr;
	align-items: center;
	gap: 60px;
	padding: 68px 0 72px;
}

.vp-lp .vp-hero .vp-eyebrow {
	display: flex; align-items: center; gap: 13px;
	font-size: 12px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase;
	color: #86eaff;
	margin: 0 0 26px;
}
.vp-lp .vp-hero .vp-eyebrow::before { content: ""; width: 34px; height: 2px; background: #86eaff; }

.vp-lp .vp-hero h1 {
	font-family: var(--vp-head);
	font-size: clamp(43px, 4.05vw, 64px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -.055em;
	color: #fff;
	max-width: 690px;
	margin: 0 0 26px;
	text-transform: none;
}
.vp-lp .vp-hero h1 em { font-style: normal; color: #75e4f5; }

.vp-lp .vp-hero p {
	font-size: 19px; line-height: 1.56; color: #dce8ff;
	max-width: 580px; margin: 0 0 33px;
}

.vp-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }

.vp-lp .vp-button {
	display: inline-flex; justify-content: center; align-items: center; gap: 14px;
	background: #77e6f3; color: #07175b;
	padding: 17px 23px; border-radius: 5px;
	font-family: var(--vp-body); font-size: 15px; font-weight: 800; line-height: normal;
	box-shadow: 0 8px 25px rgba(0, 17, 58, .25);
	transition: transform .2s, background .2s;
}
.vp-lp .vp-button:hover { transform: translateY(-2px); background: #a2f3fc; color: #07175b; }
.vp-lp .vp-button span { font-size: 20px; line-height: 0; }

.vp-lp .vp-text-link {
	font-size: 14px; font-weight: 700; color: #fff;
	border-bottom: 1px solid #90abf0; padding-bottom: 5px;
}
.vp-lp .vp-text-link:hover { color: #fff; }

.vp-lp .vp-hero .vp-micro { font-size: 12px; color: #b7c9ed; margin: 21px 0 0; }

/* Diagram --------------------------------------------------------------- */

.vp-visual {
	position: relative; max-width: 540px; width: 100%;
	justify-self: end; min-height: 515px;
	display: flex; align-items: center;
}
.vp-orbit {
	position: absolute; width: 420px; height: 420px;
	border: 1px solid rgba(121, 169, 244, .227); border-radius: 50%;
	right: 32px; top: 46px;
}
.vp-orbit::after {
	content: ""; position: absolute; inset: 54px;
	border: 1px solid rgba(121, 169, 244, .17); border-radius: 50%;
}
.vp-board {
	position: relative; width: 100%; padding: 17px;
	background: #edf8ff; border: 1px solid #a1d7f6; border-radius: 14px;
	box-shadow: 0 30px 75px rgba(2, 13, 73, .66);
	transform: rotate(-2deg);
	color: #122c62;
}
.vp-board-head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 2px 3px 15px; border-bottom: 1px solid #d4e6f1;
	font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase;
}
.vp-dots { display: flex; gap: 5px; }
.vp-dots i { display: block; width: 7px; height: 7px; background: #b4c9d9; border-radius: 50%; }
.vp-dots i:first-child { background: #50cddc; }
.vp-board-content { padding: 19px 4px 4px; }

.vp-prototype {
	background: #fff; border: 1px solid #d7e5ed; border-radius: 9px; padding: 17px 18px;
	display: flex; align-items: center; justify-content: space-between;
	box-shadow: 0 3px 12px rgba(16, 62, 112, .125);
}
.vp-prototype strong,
.vp-system strong { display: block; font-family: var(--vp-head); font-size: 16px; letter-spacing: -.03em; }
.vp-prototype small,
.vp-system small { display: block; color: #647997; margin-top: 4px; font-size: 11px; }
.vp-chip {
	background: #e7edff; color: #1843a3; padding: 7px 9px; border-radius: 3px;
	font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
}

.vp-flow { height: 76px; display: flex; align-items: center; justify-content: center; position: relative; }
.vp-flow::before { content: ""; position: absolute; height: 65px; border-left: 1.5px dashed #76b5d9; top: 5px; }
.vp-flow span {
	position: relative; background: #071a80; color: #fff;
	font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
	padding: 9px 13px; border-radius: 3px; box-shadow: 0 3px 10px rgba(20, 50, 115, .216);
}

.vp-system { background: #0b237e; color: #fff; border-radius: 9px; padding: 20px; box-shadow: 0 8px 25px rgba(5, 24, 83, .26); }
.vp-system small { color: #c2d4fb; }
.vp-system-title {
	display: flex; align-items: center; justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, .21); padding-bottom: 18px;
}
.vp-live { font-size: 10px; font-weight: 800; color: #93f3de; text-transform: uppercase; letter-spacing: .07em; }
.vp-live::before {
	content: ""; display: inline-block; width: 7px; height: 7px;
	background: #78e9cc; border-radius: 50%; margin-right: 6px;
}
.vp-modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 17px; }
.vp-module {
	border: 1px solid #6c87ce; border-radius: 5px; padding: 13px 8px;
	text-align: center; font-size: 11px; font-weight: 700; color: #ebf4ff;
}
.vp-module b {
	display: block; margin: 0 auto 9px; width: 20px; height: 20px;
	border: 1.5px solid #8de7f7; border-radius: 4px; position: relative;
}
.vp-module:nth-child(2) b { border-radius: 50%; }
.vp-module:nth-child(3) b { transform: rotate(45deg); width: 17px; height: 17px; margin-bottom: 12px; }

.vp-board-foot { text-align: right; padding: 16px 4px 2px; font-size: 10px; color: #5a7391; letter-spacing: .05em; }

.vp-float-note {
	position: absolute; right: -16px; bottom: 10px;
	padding: 11px 15px; background: #7be4f0; color: #072367; border-radius: 4px;
	font-size: 11px; font-weight: 800;
	box-shadow: 0 12px 25px rgba(0, 18, 87, .43);
	transform: rotate(2deg);
}

/* =========================================================================
   PROOF STRIP
   ========================================================================= */

.vp-proof { background: #f0f8fb; border-bottom: 1px solid #dbeaf1; }
.vp-proof .vp-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.vp-proof strong { font-family: var(--vp-head); font-size: 15px; color: var(--vp-ink); }
.vp-proof-items { display: flex; gap: 28px; }
.vp-proof-items b { font-size: 13px; color: #183e8f; }
.vp-proof-items b::before { content: "\2713"; color: #0f99ac; margin-right: 8px; }

/* =========================================================================
   CONTENT SECTIONS
   ========================================================================= */

.vp-content { padding: 100px 0; }
.vp-section-head { max-width: 750px; }

.vp-lp .vp-kicker,
.vp-lp .vp-content .vp-kicker,
.vp-lp .vp-call .vp-kicker {
	font-size: 12px; color: #0c6eaa; font-weight: 800; letter-spacing: .15em;
	text-transform: uppercase; margin: 0 0 16px; line-height: normal;
}
.vp-lp .vp-h2 {
	font-family: var(--vp-head);
	font-size: clamp(34px, 3vw, 48px); font-weight: 700;
	line-height: 1.18; letter-spacing: -.045em;
	color: var(--vp-ink);
	margin: 0 0 20px;
}
.vp-lp .vp-content p { font-size: 17px; line-height: 1.65; color: #56637b; margin: 0 0 17px; }

/* Why it matters */
.vp-questions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.vp-question { background: var(--vp-paper); border: 1px solid var(--vp-line); border-radius: 6px; padding: 27px; min-height: 170px; }
.vp-question .vp-number { font-size: 12px; color: #0788ac; font-weight: 800; letter-spacing: .1em; }
.vp-lp .vp-question h3 {
	font-family: var(--vp-head); font-size: 20px; font-weight: 700;
	line-height: 1.3; letter-spacing: -.025em; color: var(--vp-ink);
	margin: 18px 0 0;
}

/* Take the good idea further */
.vp-blue { background: #eef5fb; }
.vp-help-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 42px; }
.vp-help-item { background: #fff; border: 1px solid #dce8f0; padding: 28px; border-radius: 6px; }
.vp-help-icon { display: block; width: 32px; height: 32px; color: #32bed3; margin-bottom: 20px; }
.vp-help-icon svg { display: block; width: 100%; height: 100%; }
.vp-lp .vp-help-item h3 {
	font-family: var(--vp-head); font-size: 18px; font-weight: 700;
	color: var(--vp-ink); margin: 0 0 9px; line-height: 1.3;
}
.vp-lp .vp-content .vp-help-item p { font-size: 14px; line-height: 1.55; margin: 0; }

/* =========================================================================
   START WITH A CONVERSATION
   ========================================================================= */

.vp-call { background: #081c71; color: #fff; padding: 88px 0; }
.vp-call-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: center; }
.vp-lp .vp-call .vp-kicker { color: #86eaff; }
.vp-lp .vp-call .vp-h2 { color: #fff; max-width: 660px; }
.vp-lp .vp-call p { color: #d5e0fc; font-size: 17px; line-height: 1.65; max-width: 650px; margin: 0 0 17px; }
.vp-lp .vp-call .vp-button { margin-top: 8px; }
.vp-lp .vp-call .vp-call-small { font-size: 13px; margin-top: 17px; }
.vp-call-note {
	background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .208);
	border-radius: 6px; padding: 30px;
}
.vp-call-note strong { display: block; font-family: var(--vp-head); font-size: 22px; line-height: 1.3; color: #fff; margin-bottom: 14px; }
.vp-lp .vp-call-note p { font-size: 14px; margin-bottom: 0; }

/* =========================================================================
   BOOKING / CALENDLY (new — styled to the prototype's system)
   ========================================================================= */

.vp-book-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.vp-checks { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.vp-checks li { display: flex; gap: 14px; align-items: flex-start; }
.vp-checks i {
	flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
	background: #fff; border: 1px solid #dce8f0; color: #0f99ac;
	display: inline-flex; align-items: center; justify-content: center;
	font-style: normal; font-size: 13px; font-weight: 800;
}
.vp-checks strong { display: block; font-family: var(--vp-head); font-size: 16px; color: var(--vp-ink); }
.vp-checks span { font-size: 14px; color: #56637b; }
.vp-booking {
	background: #fff; border: 1px solid #dce8f0; border-radius: 10px;
	box-shadow: 0 10px 40px rgba(7, 26, 128, .08);
	padding: 12px; min-width: 0;
}
.vp-booking__widget { width: 100%; min-width: 0; border-radius: 6px; overflow: hidden; }

/* =========================================================================
   Responsive (breakpoints as in the prototype)
   ========================================================================= */

@media (max-width: 1050px) {
	.vp-hero__inner { gap: 25px; }
	.vp-lp .vp-hero h1 { font-size: 48px; }
	.vp-visual { transform: scale(.9); transform-origin: right center; }
	.vp-book-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 760px) {
	.vp-wrap { width: min(100% - 40px, 560px); }
	.vp-hero__inner { display: block; padding: 65px 0 44px; min-height: 0; }
	.vp-lp .vp-hero h1 { font-size: clamp(39px, 10vw, 54px); }
	.vp-lp .vp-hero p { font-size: 17px; }
	.vp-visual { transform: none; min-height: 400px; margin: 28px auto 0; max-width: 470px; }
	.vp-orbit { width: 320px; height: 320px; }
	.vp-board { transform: none; }
	.vp-float-note { right: -5px; }
	.vp-proof .vp-wrap { display: block; padding: 24px 0; }
	.vp-proof-items { flex-wrap: wrap; gap: 13px 24px; margin-top: 16px; }
	.vp-questions, .vp-help-grid, .vp-call-inner { grid-template-columns: 1fr; }
	.vp-question { min-height: 0; }
	.vp-content { padding: 65px 0; }
	.vp-call { padding: 65px 0; }
	.vp-call-inner { gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
	.vp-lp * { transition: none !important; scroll-behavior: auto !important; }
}
