
/* ==========================================================
   TOKENS
   ========================================================== */

:root{
	--radius: 18px;
	--container: 1120px;
	--shadow: 0 18px 48px rgba(15, 23, 42, .08);
}

/* Theme: ocean */
html[data-theme="ocean"]{
	--bg: #f6f8fb;
	--card: #ffffff;
	--text: #0b1220;
	--muted: #475569;
	--line: #e7eef5;

	--grey-50: #f8fafc;
	--grey-100: #f1f5f9;

	--brand: #C75D7A;
	--brand-dark: #A54862;
}

/* ==========================================================
   BASE
   ========================================================== */

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
	margin: 0;
	font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
	color: var(--text);
	line-height: 1.65;
	background:
		radial-gradient(900px 520px at 18% -10%, rgba(59,130,246,.10), transparent 60%),
		radial-gradient(900px 520px at 85% 0%, rgba(16,185,129,.10), transparent 55%),
		linear-gradient(180deg, var(--bg), var(--grey-50));
}

a{ color: inherit; text-decoration: none; }

.container{
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 20px;
}

/* Headings */
h1, h2{
	margin: 0;
	letter-spacing: -.03em;
}

h1{
	font-size: 46px;
	margin-bottom: 2rem;
	line-height: 1.05;
}

h2{
	font-size: 30px;
	line-height: 1.2;
}

@media (max-width: 900px){
	h1{ font-size: 38px; }
	h2{ font-size: 26px; }
}

/* Reusable short “paragraph headings” */
.paragraph-title{
	margin: 0;
	font-size: .9rem;
	font-weight: 800;
	color: var(--brand);
	letter-spacing: .02em;
}

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

.section{
	padding: 140px 0;
}

.section-bg-steps{ background: #e4eaf3; }
.section-bg-tools{ background: #ffffff; }
.section-bg-why{ background: #e4eaf3; }
.section-bg-contact{ background: #f3f6fb; }
.section-bg-company{ background: #e4eaf3; }

/* Proposition: background image band */
.section-bg-proposition{
	background:
		linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.18)),
		url("gifs/background.jpg") center / cover no-repeat;
}

.proposition-content{
	background: rgba(255,255,255,.65);
	border-radius: var(--radius);
	padding: 40px 40px;
	max-width: 900px;
	margin: 0 auto;
	box-shadow: var(--shadow);
}

/* ==========================================================
   COMPONENTS
   ========================================================== */

.subtext{
	color: var(--muted);
	font-size: 16px;
	max-width: 100%;
	margin-top: 16px;
}

.card{
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 26px;
}

/* ==========================================================
   TOPBAR + NAV (desktop + mobile)
   ========================================================== */

.topbar{
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: saturate(140%) blur(10px);
	background: rgba(246,248,251,.78);
	border-bottom: 1px solid rgba(231,238,245,.95);
}

.topbar-inner{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 74px;
	gap: 16px;
}

.brand{
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	letter-spacing: .2px;
	white-space: nowrap;
}

.brand-logo{
	height: 42px;
	width: auto;
	display: block;
}

/* Desktop nav */
.nav{
	display: flex;
	align-items: center;
	gap: .25rem;
	margin-left: auto;
}

.nav ul{
	display: flex;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.nav a{
	padding: 10px 12px;
	color: var(--muted);
	border-radius: 999px;
	transition: background .18s ease, color .18s ease;
	font-weight: 700;
	font-size: 14px;
}

.nav a:hover{
	background: rgba(0,0,0,.05);
	color: var(--text);
}

.nav-cta{
	background: var(--brand);
	color: #fff !important;
	border-radius: 999px;
	padding: 10px 18px;
	font-weight: 800;
}

.nav-cta:hover{
	background: var(--brand-dark);
	border-color: var(--brand-dark);
	color: #fff !important;
}

/* Language selector */
.topbar-right{
	display: flex;
	align-items: center;
	margin-left: .5rem;
}

.lang-select{
	border: 1px solid rgba(0,0,0,.10);
	background: var(--card);
	border-radius: 10px;
	padding: .38rem .5rem;
	font: inherit;
	color: var(--text);
}

.lang-select:focus{
	outline: none;
	box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}

/* Burger (mobile) */
.burger{
	display: none;
	margin-left: 12px;
	width: 42px;
	height: 38px;
	border: 1px solid rgba(0,0,0,.10);
	border-radius: 12px;
	background: var(--card);
	cursor: pointer;
}

.burger span{
	display: block;
	height: 2px;
	background: var(--text);
	margin: 6px 10px;
}

/* Mobile menu */
.mobile-menu{
	border-top: 1px solid rgba(0,0,0,.06);
	background: rgba(255,255,255,.96);
}

.mobile-menu-inner{
	display: grid;
	gap: .35rem;
	padding: .8rem 20px 1rem;
}

.mobile-link{
	padding: .65rem .8rem;
	border-radius: 12px;
	font-weight: 650;
	background: rgba(0,0,0,.03);
	color: var(--text);
}

.mobile-link:hover{ background: rgba(0,0,0,.06); }

.mobile-link-cta{
	background: var(--brand);
	color: #fff;
}

.mobile-link-cta:hover{
	background: var(--brand-dark);
	color: #fff;
}

@media (max-width: 860px){
	.nav{ display: none; }
	.burger{ display: inline-block; }
}

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

.hero{
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero .subtext{
	margin-left: auto;
	margin-right: auto;
	line-height: 2;
}

/* Animation: slide in */
@keyframes slideInFromLeft{
	from{
		opacity: 0;
		transform: translateX(-120px);
	}
	to{
		opacity: 1;
		transform: translateX(0);
	}
}

.animate-slide-in{
	animation: slideInFromLeft 1.5s ease-out both;
}

/* Give the hero card extra side margins */
.proposition-content{
  margin-left: 60px;
  margin-right: 60px;
}

@media (max-width: 900px){
  .proposition-content{
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* ==========================================================
   STEPS
   ========================================================== */

.steps-stacked{
	display: flex;
	flex-direction: column;
	gap: 56px;
	margin-top: 22px;
}

.step-header{
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 20px;
}

.step-title{
	margin: 0;
	font-size: 18px;
}

.objective{
	font-weight: 800;
	margin: 6px 0 12px;
}

ul.clean{
	margin: 12px 0 0;
	padding-left: 18px;
	color: var(--muted);
}

ul.clean li{ margin: 8px 0; }

/* Steps: icon column left */
.step-card{
	padding: 0;
	overflow: hidden;
}

.step-layout{
	display: grid;
	grid-template-columns: 10% 90%;
	min-height: 100%;
}

.step-image{
	display:flex;
	justify-content:center; /* ✅ horizontal centering */
	align-items:flex-start; /* keep it near the top */
	padding-top:18px;       /* replaces top:18px */
	background: #f3f6fb;
}

/* Icon */
.step-image img{
  width:70%;
  height:auto;
  display:block;
  object-fit:contain;
}

.step-content{
	padding: 26px;
}

/* ===== Steps icon scroll-in animation ===== */
/* initial state */
.step-card .step-image img{
  transform: translateY(60px);   /* bigger movement */
  opacity: 0;
  transition:
    transform 900ms cubic-bezier(.2,.7,.2,1), /* slower */
    opacity 900ms ease;
  will-change: transform, opacity;
}

/* final state */
.step-card.is-inview .step-image img{
  transform: translateY(0);
  opacity: 1;
}

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .step-card .step-image img{
    transition: none;
    transform: none;
    opacity: 1;
  }
}
/* ===== END ===== */

@media (max-width: 900px){
	.step-layout{ grid-template-columns: 14% 86%; }

	.step-image img{
		top: 14px;
		left: 14px;
		width: 75%;
	}
}

/* ==========================================================
   TOOLS
   ========================================================== */

.tools-grid{
	display: grid;
	grid-template-columns: 1.3fr .7fr;
	gap: 40px;
	align-items: center;
	margin-top: 22px;
}

.tools-icons{
	list-style: none;
	padding: 0;
	margin-top: 20px;
	display: grid;
	gap: 22px;
}

.tool{
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.tool-icon{
	width: 44px;
	height: 44px;
	padding: 10px;
	border-radius: 14px;
	background: var(--grey-100);
	border: 1px solid var(--line);
	box-shadow: 0 6px 18px rgba(15,23,42,.06);
	object-fit: contain;
	flex: 0 0 auto;
}

.tools-image img{
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 900px){
	.tools-grid{ grid-template-columns: 1fr; }
	.tools-image{ order: 2; }
}

/* ==========================================================
   WHY
   ========================================================== */

.why{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 18px;
}

@media (max-width: 900px){
	.why{ grid-template-columns: 1fr; }
}

/* ==========================================================
   COMPANY
   ========================================================== */

.contact-details-grid-3{
	display: grid;
	grid-template-columns: 1.2fr 0.8fr .6fr;
	gap: 40px;
	align-items: start;
	margin-top: 40px;
}

@media (max-width: 960px){
	.contact-details-grid-3{ grid-template-columns: 1fr; }
}

.contact-details-col p:not(.paragraph-title){
	margin-top: .55rem;
	color: var(--text);
	opacity: .9;
	font-size: .92rem;
}

.contact-details-col a{
	color: var(--brand);
	font-weight: 700;
}

.contact-map-img{
	display: block;
	margin: 0;
	max-width: 220px;
	width: 100%;
	height: auto;
	opacity: .8;
}

/* ==========================================================
   CONTACT FORM
   ========================================================== */

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

.field input,
.field textarea{
	width: 100%;
	padding: 12px;
	border-radius: 14px;
	border: 1px solid var(--line);
	background: var(--grey-50);
	font: inherit;
	color: var(--text);
	outline: none;
}

.field textarea{ resize: vertical; }

.field input:focus,
.field textarea:focus{
	border-color: rgba(37,99,235,.45);
	box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}

.field input::placeholder,
.field textarea::placeholder{
	color: var(--muted);
	opacity: .75;
}

.btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border-radius: 14px;
	border: 1px solid var(--brand);
	background: var(--brand);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	max-width: 200px;
}

.btn:hover{
	background: var(--brand-dark);
	border-color: var(--brand-dark);
}

.btn:disabled{
	opacity: .65;
	cursor: not-allowed;
}

.form-status{
	margin: 4px 0 0;
	color: var(--muted);
	font-weight: 700;
	min-height: 1.4em; /* prevents layout jump */
}

/* Honeypot helper */
.visually-hidden{
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* ==========================================================
   FOOTER
   ========================================================== */

footer{
	border-top: 1px solid rgba(231,238,245,.95);
	padding: 30px 0;
	color: var(--muted);
	font-size: 13px;
}

.footer-inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.footer-links{
	display: flex;
	gap: 14px;
}
