/* Section styles: hero, cards, steps, corporate grid, enquiry form */
.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #fff 30%, var(--sky) 70%, #cfe4f4 100%);
	padding: clamp(64px, 10vw, 128px) 0 clamp(96px, 12vw, 160px);
}
.hero .container { position: relative; z-index: 2; }
.hero .lead { margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-tag { letter-spacing: 0.3em; font-size: 0.85rem; color: var(--ocean); font-weight: 600; margin-bottom: 24px; }
.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; line-height: 0; }
.wave-divider svg { width: 100%; height: clamp(50px, 8vw, 110px); }
.hero-orb {
	position: absolute;
	right: -120px;
	top: -80px;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, #a9d2ee, var(--ocean) 70%);
	opacity: 0.18;
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px 28px;
	transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card p { color: var(--muted); margin-bottom: 0; }
.icon-badge {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--sky);
	color: var(--ocean);
	display: grid;
	place-items: center;
	font-size: 1.5rem;
	margin-bottom: 18px;
}
.brand-card { background: var(--navy); border: 0; color: #cfdcea; }
.brand-card h3 { color: #fff; font-size: 2.1rem; }
.brand-card p { color: #cfdcea; margin-bottom: 20px; }
.brand-card:hover { background: #0e2c4e; }
.brand-soon { border-style: dashed; background: var(--mist); box-shadow: none; }
.brand-soon:hover { transform: none; box-shadow: none; }

.section-head { margin-bottom: 48px; }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; counter-reset: step; }
.steps li {
	counter-increment: step;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 20px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
}
.steps li::before {
	content: counter(step);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	font-family: var(--serif);
	font-size: 1.6rem;
	display: grid;
	place-items: center;
}
.steps h3 { font-size: 1.4rem; margin-bottom: 6px; }
.steps p { color: var(--muted); margin-bottom: 8px; }
.steps p:last-child { margin-bottom: 0; }

/* Corporate */
.chip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.chip {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 16px 18px;
	font-weight: 500;
	color: var(--navy);
}
.chip::before { content: "\1F30A"; margin-right: 10px; }
.cta-band {
	background: linear-gradient(135deg, var(--navy), var(--ocean));
	color: #fff;
	border-radius: 24px;
	padding: clamp(36px, 6vw, 72px);
	text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #dbe9f5; max-width: 560px; margin-inline: auto; }
.closing { text-align: center; }
.closing .mantra { letter-spacing: 0.35em; color: var(--ocean); font-weight: 600; margin-top: 28px; font-size: 0.9rem; }

/* Enquiry form */
.form-wrap { max-width: 760px; margin-inline: auto; }
.enquiry-form { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
	font: inherit;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--mist);
	color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
	outline: 2px solid var(--ocean);
	outline-offset: 1px;
	background: #fff;
}
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: 10px; display: none; font-size: 0.95rem; }
.form-status.ok { display: block; background: #e6f6ec; color: #1d6b3a; }
.form-status.err { display: block; background: #fdeaea; color: #a12626; }

@media (max-width: 860px) {
	.grid-2, .grid-3, .grid-4, .chip-grid, .form-row { grid-template-columns: 1fr; }
	.steps li { grid-template-columns: 44px 1fr; gap: 14px; padding: 18px; }
	.steps li::before { width: 44px; height: 44px; font-size: 1.3rem; }
	.hero-orb { width: 320px; height: 320px; right: -100px; }
}
