/* ==========================================================================
   SUDAIR PHARMA — DESIGN SYSTEM
   Corporate identity layer. Elementor supplies structure; this supplies the
   visual language. Component classes are applied via Elementor's CSS Classes
   field, so the design can be revised here without touching page data.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   Brand colours are sampled from the Sudair logo. Neutrals are green-tinted
   rather than pure grey so the whole surface feels related to the mark.
   -------------------------------------------------------------------------- */

:root {
	/* ----------------------------------------------------------------------
	   OFFICIAL BRAND PALETTE
	   Source: SUDAIR PHARMA Brand Guidelines v1 (2016), supplied by the client.
	   These supersede the colours previously sampled from the logo SVG.

	   ACCESSIBILITY LIMITS — measured, not assumed. Contrast on white:

	     #006344  Dark Green    7.32:1  — safe for body text and anything else
	     #1B469D  P2736 Blue    8.72:1  — safe for body text
	     #0C84C6  Blue          4.09:1  — LARGE TEXT / UI ONLY, never body copy
	     #43B649  Bright Green  2.62:1  — GRAPHICS ONLY, never text on white
	     #30B5E3  Light Blue    2.37:1  — GRAPHICS ONLY
	     #85C66F / #85D3E6 / #5BC7D6    — GRAPHICS ONLY (1.7–2.0:1)

	   Only Dark Green and P2736 may carry text. Everything else is for fills,
	   icons, charts and accents. The same holds inverted: white text is legible
	   only on Dark Green or P2736.

	   NOTE ON BRIGHT GREEN: the guideline lists HEX #43D549 but RGB 67,182,73,
	   which is #43B649 — a 31-point disagreement in the green channel. Pantone
	   361 C matches the RGB, so the RGB is treated as authoritative and the HEX
	   as a typo. Flagged in notes/CONTENT-NOTES.md for client confirmation.
	   ---------------------------------------------------------------------- */

	/* Core primary */
	--sud-green-700: #006344;  /* Pantone 3425 C — primary, the only text-safe green */
	--sud-green-500: #43B649;  /* Pantone 361 C  — bright green, graphics only */
	--sud-blue-600:  #0C84C6;  /* Process Blue C — large text / UI only */
	--sud-blue-500:  #30B5E3;  /* Pantone 298 C  — graphics only */

	/* Supporting secondary — 20% of the palette, highlights and sub-categories */
	--sud-green-400: #85C66F;  /* Pantone 7487 C */
	--sud-blue-400:  #5BC7D6;  /* Pantone 3105 C */
	--sud-blue-300:  #85D3E6;  /* Pantone 2975 C */
	--sud-blue-700:  #1B469D;  /* Pantone 2736 C — text-safe */

	/* Derived steps. Not in the guideline: interface states (hover, pressed,
	   deep backgrounds) need darker greens than the brand supplies. Both are
	   tonal steps off #006344, so they stay on-brand. */
	--sud-green-900: #00301F;
	--sud-green-800: #004A31;
	--sud-green-600: #0A7A52;

	/* Neutrals — subtly green-tinted */
	--sud-ink:       #0B1F17;
	--sud-body:      #46574F;
	/* #6B7C74 measured 4.41:1 on white — just under AA for body-size text.
	   Darkened to clear 4.5:1 at every size it is used. */
	--sud-muted:     #5C6E66;
	--sud-line:      #E3EAE6;
	--sud-surface:   #FFFFFF;
	--sud-surface-2: #F4F8F6;
	--sud-surface-3: #EAF2ED;

	/* ----------------------------------------------------------------------
	   OFFICIAL BRAND TYPOGRAPHY
	   Source: SUDAIR PHARMA Brand Guidelines v1 (2016).

	     English  main headlines      Friz Quadrata BT
	              supporting headings Roboto Light
	              body                Roboto Regular / Bold / Black
	     Arabic   main headlines      AE Sharjah
	              supporting + body   Muna Regular / Bold / Black
	     Web/PPT fallback             Arial (EN), WinSoft Pro (AR)

	   Roboto is used as specified. Friz Quadrata BT is a LICENSED typeface with
	   no free web version — it is not embedded here because we hold no webfont
	   licence for it. Headlines therefore use Roboto in the guideline's own
	   uppercase treatment until the client supplies a licensed webfont.
	   See notes/CONTENT-NOTES.md.

	   AE Sharjah and Muna are print-era Arabic faces with no reliable webfont
	   distribution; Noto Kufi Arabic stands in, chosen because its structure is
	   closest to Muna's. Also pending client confirmation.
	   ---------------------------------------------------------------------- */
	--sud-font-display: 'Roboto', Arial, Helvetica, sans-serif;
	--sud-font-body:    'Roboto', Arial, Helvetica, sans-serif;
	--sud-font-arabic:  'Noto Kufi Arabic', 'Noto Naskh Arabic', Tahoma, sans-serif;

	/* Fluid type scale — 1.25 ratio, clamped so it never runs away */
	--sud-text-xs:   0.8125rem;
	--sud-text-sm:   0.9375rem;
	--sud-text-base: 1rem;
	--sud-text-lg:   clamp(1.0625rem, 0.4vw + 0.95rem, 1.1875rem);
	--sud-text-xl:   clamp(1.25rem, 0.6vw + 1.1rem, 1.5rem);
	--sud-h4:        clamp(1.25rem, 0.7vw + 1.1rem, 1.5rem);
	--sud-h3:        clamp(1.5rem, 1vw + 1.25rem, 1.875rem);
	--sud-h2:        clamp(1.875rem, 2vw + 1.375rem, 2.75rem);
	--sud-h1:        clamp(2.25rem, 3.2vw + 1.5rem, 3.75rem);
	--sud-display:   clamp(2.75rem, 4.5vw + 1.5rem, 4.75rem);

	/* Spacing rhythm — 4px base */
	--sud-1: 0.25rem;  --sud-2: 0.5rem;   --sud-3: 0.75rem;
	--sud-4: 1rem;     --sud-5: 1.5rem;   --sud-6: 2rem;
	--sud-7: 2.5rem;   --sud-8: 3rem;     --sud-9: 4rem;
	--sud-10: 5rem;    --sud-11: 6rem;    --sud-12: 8rem;

	/* Section rhythm — generous white space is the brief */
	--sud-section-y: clamp(4rem, 7vw, 8rem);

	/* Radii, elevation, motion */
	--sud-radius-sm: 8px;
	--sud-radius:    16px;
	--sud-radius-lg: 24px;
	--sud-radius-xl: 32px;

	--sud-shadow-sm: 0 1px 2px rgba(11, 31, 23, .04), 0 2px 8px rgba(11, 31, 23, .04);
	--sud-shadow:    0 2px 4px rgba(11, 31, 23, .03), 0 12px 32px rgba(11, 31, 23, .07);
	--sud-shadow-lg: 0 4px 8px rgba(11, 31, 23, .04), 0 24px 64px rgba(11, 31, 23, .10);

	--sud-ease: cubic-bezier(.22, 1, .36, 1);
	--sud-dur:  .5s;

	--sud-maxw: 1240px;
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */

body {
	font-family: var(--sud-font-body);
	font-size: var(--sud-text-base);
	line-height: 1.7;
	color: var(--sud-body);
	background: var(--sud-surface);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--sud-font-display);
	color: var(--sud-ink);
	line-height: 1.15;
	letter-spacing: -0.02em;
	font-weight: 700;
	text-wrap: balance;
}

h1 { font-size: var(--sud-h1); letter-spacing: -0.03em; }
h2 { font-size: var(--sud-h2); }
h3 { font-size: var(--sud-h3); letter-spacing: -0.015em; }
h4 { font-size: var(--sud-h4); letter-spacing: -0.01em; }

/* The guideline's rule "headlines should be UPPERCASE" is applied to the two
   levels that read as headlines — the page H1 and section H2 — and deliberately
   NOT below that. Uppercase costs legibility as strings lengthen, and H3 carries
   product names (Imalar®, Azacitidine SPC®) and board members' names, where
   capitalising would be wrong rather than merely harder to read.

   Tracking is opened up, because uppercase set at display tracking closes up. */
h1, h2,
.sud-harvest .elementor-widget-heading h1.elementor-heading-title,
.sud-harvest .elementor-widget-heading h2.elementor-heading-title {
	text-transform: uppercase;
	letter-spacing: 0.005em;
	word-spacing: 0.06em;
}

/* Arabic is never uppercased — the concept does not exist in the script, and
   the property would only disturb shaping. */
[dir="rtl"] h1, [dir="rtl"] h2,
.sud-rtl h1, .sud-rtl h2 {
	text-transform: none;
	letter-spacing: 0;
	word-spacing: normal;
}

p { text-wrap: pretty; }

a { color: var(--sud-green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--sud-green-800); }

::selection { background: var(--sud-green-500); color: #fff; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 3px solid var(--sud-green-500);
	outline-offset: 3px;
	border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */

.sud-section { padding-block: var(--sud-section-y); position: relative; }
.sud-section--tight  { padding-block: clamp(2.5rem, 4vw, 4rem); }
.sud-section--flush-t { padding-top: 0; }
.sud-section--flush-b { padding-bottom: 0; }

.sud-surface-2 { background: var(--sud-surface-2); }
.sud-surface-3 { background: var(--sud-surface-3); }

/* Deep green band — used for CTAs and statement sections */
.sud-surface-brand {
	background: var(--sud-green-700);
	color: rgba(255, 255, 255, .82);
	position: relative;
	overflow: hidden;
}
/* Text on the brand band.
   `!important` is deliberate: Elementor writes heading and link colours per
   element at a specificity a theme rule cannot reach, which previously left
   near-black headings sitting on brand green at 2.08:1. */
.sud-surface-brand h1, .sud-surface-brand h2,
.sud-surface-brand h3, .sud-surface-brand h4,
.sud-surface-brand .elementor-heading-title,
.sud-surface-brand .elementor-icon-box-title {
	color: #fff !important;
}

/* Eyebrow colour on dark surfaces is owned solely by on-dark.css — it is white,
   per the brand rule that all text on green or imagery is white. Declaring a
   tint here as well only created a specificity fight. */

.sud-surface-brand .sud-lead,
.sud-surface-brand .sud-lead p,
.sud-surface-brand p,
.sud-surface-brand .elementor-icon-box-description {
	color: rgba(255, 255, 255, .92) !important;
}

/* Soft organic wash echoing the logo's colour spread */
.sud-surface-brand::before {
	content: '';
	position: absolute;
	inset-inline-end: -10%;
	top: -40%;
	width: 55%;
	aspect-ratio: 1;
	background: radial-gradient(circle at center,
		rgba(61, 174, 43, .30), rgba(0, 130, 202, .16) 45%, transparent 70%);
	pointer-events: none;
}

.sud-surface-tint {
	background:
		radial-gradient(1000px 500px at 88% -10%, rgba(60, 180, 229, .10), transparent 60%),
		radial-gradient(800px 400px at -5% 15%, rgba(61, 174, 43, .09), transparent 60%),
		var(--sud-surface);
}

/* Grids.
   Elementor sets display:flex on containers, so these need to win — scoped
   under .elementor rather than flagged !important. Auto-fit means columns
   collapse on their own and no breakpoint bookkeeping is needed. */
.elementor .sud-grid { display: grid; }

.sud-grid { gap: clamp(1.25rem, 2.5vw, 2rem); align-items: stretch; }

.sud-grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.sud-grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.sud-grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

/* Stat rows keep 2-up on phones rather than collapsing to a tall stack */
.sud-grid--stats { grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 860px) { .sud-grid--stats { grid-template-columns: repeat(4, 1fr); } }

/* Two-column split with optional asymmetry */
.elementor .sud-split { display: grid; }
.sud-split { gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

@media (min-width: 900px) {
	.sud-split { grid-template-columns: 1fr 1fr; }
	.sud-split--40-60 { grid-template-columns: 2fr 3fr; }
	.sud-split--60-40 { grid-template-columns: 3fr 2fr; }
	.sud-split--start  { align-items: start; }
	/* Flip visual order without moving it in the DOM — reading order is preserved */
	.sud-split--reverse > :first-child { order: 2; }
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHIC COMPONENTS
   -------------------------------------------------------------------------- */

/* Eyebrow — small brand-coloured kicker above a section heading */
.sud-eyebrow,
.sud-eyebrow .elementor-heading-title {
	font-family: var(--sud-font-body);
	font-size: var(--sud-text-sm);
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--sud-green-700);
	display: inline-flex;
	align-items: center;
	gap: var(--sud-2);
	margin: 0;
}

.sud-eyebrow::before {
	content: '';
	inline-size: 28px;
	block-size: 2px;
	background: var(--sud-green-500);
	flex: none;
}

.sud-eyebrow--center { justify-content: center; }

/* Lead paragraph */
.sud-lead,
.sud-lead p {
	font-size: var(--sud-text-lg);
	line-height: 1.65;
	color: var(--sud-body);
}

.sud-measure { max-width: 68ch; }
.sud-measure--narrow { max-width: 54ch; }
.sud-center { text-align: center; margin-inline: auto; }

/* Display heading for the homepage hero */
.sud-display .elementor-heading-title,
h1.sud-display {
	font-size: var(--sud-display);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.05;
}

/* Accent a phrase inside a heading: <span class="sud-accent">…</span> */
.sud-accent { color: var(--sud-green-500); }
.sud-accent-blue { color: var(--sud-blue-600); }

/* --------------------------------------------------------------------------
   5. CARDS
   -------------------------------------------------------------------------- */

.sud-card {
	background: var(--sud-surface);
	border: 1px solid var(--sud-line);
	border-radius: var(--sud-radius-lg);
	padding: clamp(1.5rem, 2.5vw, 2.25rem);
	transition: transform var(--sud-dur) var(--sud-ease),
	            box-shadow var(--sud-dur) var(--sud-ease),
	            border-color var(--sud-dur) var(--sud-ease);
	height: 100%;
}

.sud-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--sud-shadow);
	border-color: transparent;
}

/* Icon-box styled as a feature card */
.sud-feature .elementor-icon-box-icon { margin-bottom: var(--sud-4) !important; }

.sud-feature .elementor-icon {
	inline-size: 56px;
	block-size: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--sud-radius-sm);
	background: var(--sud-surface-3);
	color: var(--sud-green-700);
	font-size: 26px;
	transition: background var(--sud-dur) var(--sud-ease),
	            color var(--sud-dur) var(--sud-ease);
}

.sud-card:hover .elementor-icon,
.sud-feature:hover .elementor-icon {
	background: var(--sud-green-700);
	color: #fff;
}

.sud-feature .elementor-icon-box-title,
.sud-feature .elementor-icon-box-title a {
	font-family: var(--sud-font-display);
	font-size: var(--sud-h4);
	font-weight: 700;
	color: var(--sud-ink);
	letter-spacing: -0.01em;
	line-height: 1.3;
	margin-bottom: var(--sud-2);
}

.sud-feature .elementor-icon-box-description {
	font-size: var(--sud-text-base);
	color: var(--sud-body);
	line-height: 1.7;
}

/* Numbered card — the index is decorative, set via --sud-index */
.sud-card--numbered { position: relative; padding-top: clamp(2rem, 3vw, 2.75rem); }

.sud-card--numbered::before {
	content: counter(sud-counter, decimal-leading-zero);
	counter-increment: sud-counter;
	position: absolute;
	inset-block-start: clamp(1.5rem, 2.5vw, 2.25rem);
	inset-inline-end: clamp(1.5rem, 2.5vw, 2.25rem);
	font-family: var(--sud-font-display);
	font-size: var(--sud-text-xl);
	font-weight: 800;
	color: var(--sud-green-500);
	opacity: .35;
	line-height: 1;
}

.sud-grid-counter { counter-reset: sud-counter; }

/* Therapeutic-area card.
   The area's colour is carried by the icon and a top edge that draws in on
   hover — not by a coloured side-stripe, which reads as a template alert
   component rather than a considered card.
   Colour never carries meaning alone: every card is labelled and icon-marked. */
.sud-area-card {
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--sud-line);
}

/* Top edge, drawn from the leading corner on hover */
.sud-area-card::before {
	content: '';
	position: absolute;
	inset-block-start: -1px;
	inset-inline-start: 0;
	inline-size: 0;
	block-size: 2px;
	background: var(--sud-area-color, var(--sud-green-500));
	transition: inline-size .55s var(--sud-ease);
}

.sud-area-card:hover::before,
.sud-area-card:focus-within::before { inline-size: 100%; }

/* Icon chip tinted to the area, filling on hover */
.sud-area-card .elementor-icon {
	background: color-mix(in oklab, var(--sud-area-color, var(--sud-green-500)) 14%, white);
	color: color-mix(in oklab, var(--sud-area-color, var(--sud-green-500)) 78%, black);
}

.sud-area-card:hover .elementor-icon {
	background: var(--sud-area-color, var(--sud-green-500));
	color: #fff;
}

@supports not (color: color-mix(in oklab, red 50%, white)) {
	.sud-area-card .elementor-icon {
		background: var(--sud-surface-3);
		color: var(--sud-green-700);
	}
}

/* Per-area accents, drawn from the official palette.
   These are decorative wayfinding only — the icon and the label carry the
   meaning, so colour never has to be distinguished to use the page. */
.sud-area--onco    { --sud-area-color: #1B469D; } /* P2736 */
.sud-area--resp    { --sud-area-color: #30B5E3; } /* P298  */
.sud-area--neuro   { --sud-area-color: #5BC7D6; } /* P3105 */
.sud-area--cardio  { --sud-area-color: #0C84C6; } /* Process Blue */
.sud-area--rare    { --sud-area-color: #85C66F; } /* P7487 */
.sud-area--auto    { --sud-area-color: #43B649; } /* P361  */
.sud-area--anesth  { --sud-area-color: #006344; } /* P3425 */
.sud-area--misc    { --sud-area-color: #85D3E6; } /* P2975 */

/* People */
.sud-person { display: flex; flex-direction: column; }

.sud-role .elementor-heading-title {
	font-family: var(--sud-font-body);
	font-size: var(--sud-text-sm);
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--sud-green-500);
	margin-bottom: var(--sud-2);
}

.sud-person-bio p {
	font-size: var(--sud-text-sm);
	line-height: 1.75;
	color: var(--sud-body);
	margin: 0;
}

/* Pull quote */
.sud-quote { max-width: 62ch; margin-inline: auto; text-align: center; position: relative; }

.sud-quote::before {
	content: '\201C';
	display: block;
	font-family: var(--sud-font-display);
	font-size: 5rem;
	line-height: .8;
	color: var(--sud-green-500);
	opacity: .35;
	margin-bottom: var(--sud-2);
}

.sud-quote-text p {
	font-family: var(--sud-font-display);
	font-size: var(--sud-h3);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.015em;
	color: var(--sud-ink);
	margin: 0 0 var(--sud-5);
	text-wrap: balance;
}

.sud-quote-name .elementor-heading-title {
	font-family: var(--sud-font-display);
	font-size: var(--sud-text-lg);
	font-weight: 700;
	color: var(--sud-ink);
}

.sud-quote-role .elementor-heading-title {
	font-family: var(--sud-font-body);
	font-size: var(--sud-text-sm);
	font-weight: 500;
	color: var(--sud-muted);
}

/* Pillars — flat, roomy, no card chrome */
.sud-pillar { text-align: center; }
.sud-pillar .elementor-icon-box-icon { margin-inline: auto; }

.sud-surface-brand .sud-pillar .elementor-icon {
	background: rgba(255, 255, 255, .12);
	color: #fff;
}

.sud-surface-brand .sud-pillar:hover .elementor-icon {
	background: var(--sud-green-400);
	color: var(--sud-green-900);
}

.sud-surface-brand .sud-pillar .elementor-icon-box-description {
	color: rgba(255, 255, 255, .78);
}

/* Chips — partner and society names, pending real logos */
.sud-chips {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sud-3);
	margin: 0;
}

.sud-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.6rem 1.1rem;
	border: 1px solid var(--sud-line);
	border-radius: 100px;
	background: var(--sud-surface);
	font-family: var(--sud-font-display);
	font-size: var(--sud-text-sm);
	font-weight: 600;
	color: var(--sud-ink);
	line-height: 1.3;
	transition: border-color var(--sud-dur) var(--sud-ease),
	            color var(--sud-dur) var(--sud-ease),
	            transform var(--sud-dur) var(--sud-ease);
}

.sud-chip:hover {
	border-color: var(--sud-green-500);
	color: var(--sud-green-700);
	transform: translateY(-2px);
}

.sud-chip-group + .sud-chip-group { padding-top: var(--sud-6); border-top: 1px solid var(--sud-line); }

/* --------------------------------------------------------------------------
   6. STATS
   -------------------------------------------------------------------------- */

.sud-stat .elementor-counter-number-wrapper {
	font-family: var(--sud-font-display);
	font-size: clamp(2.25rem, 3.5vw, 3.25rem);
	font-weight: 800;
	color: var(--sud-green-700);
	letter-spacing: -0.03em;
	line-height: 1;
}

.sud-stat .elementor-counter-title {
	font-family: var(--sud-font-body);
	font-size: var(--sud-text-sm);
	font-weight: 500;
	color: var(--sud-muted);
	letter-spacing: .04em;
	margin-top: var(--sud-3);
	line-height: 1.5;
}

.sud-surface-brand .sud-stat .elementor-counter-number-wrapper { color: #fff; }
.sud-surface-brand .sud-stat .elementor-counter-title { color: rgba(255, 255, 255, .7); }

/* Stat band with hairline separators */
.sud-stat-band { border-block: 1px solid var(--sud-line); }
.sud-surface-brand .sud-stat-band { border-color: rgba(255, 255, 255, .18); }

/* --------------------------------------------------------------------------
   7. BUTTONS
   -------------------------------------------------------------------------- */

.sud-btn .elementor-button,
a.sud-btn {
	font-family: var(--sud-font-body);
	font-size: var(--sud-text-sm);
	font-weight: 600;
	letter-spacing: .01em;
	padding: 0.95rem 1.75rem;
	border-radius: 100px;
	background: var(--sud-green-700);
	color: #fff;
	border: 1px solid var(--sud-green-700);
	display: inline-flex;
	align-items: center;
	gap: var(--sud-2);
	transition: background var(--sud-dur) var(--sud-ease),
	            border-color var(--sud-dur) var(--sud-ease),
	            transform var(--sud-dur) var(--sud-ease),
	            box-shadow var(--sud-dur) var(--sud-ease);
	text-decoration: none;
}

.sud-btn .elementor-button:hover,
a.sud-btn:hover {
	background: var(--sud-green-800);
	border-color: var(--sud-green-800);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 98, 65, .22);
}

.sud-btn--ghost .elementor-button {
	background: transparent;
	color: var(--sud-green-700);
	border-color: var(--sud-line);
}

.sud-btn--ghost .elementor-button:hover {
	background: var(--sud-green-700);
	border-color: var(--sud-green-700);
	color: #fff;
}

.sud-surface-brand .sud-btn .elementor-button {
	background: #fff;
	color: var(--sud-green-700);
	border-color: #fff;
}

.sud-surface-brand .sud-btn .elementor-button:hover {
	background: var(--sud-green-400);
	border-color: var(--sud-green-400);
	color: var(--sud-green-900);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
}

.sud-surface-brand .sud-btn--ghost .elementor-button {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .4);
}

.sud-surface-brand .sud-btn--ghost .elementor-button:hover {
	background: rgba(255, 255, 255, .12);
	border-color: #fff;
}

/* --------------------------------------------------------------------------
   8. TIMELINE
   -------------------------------------------------------------------------- */

.sud-timeline { position: relative; counter-reset: sud-milestone; }

.sud-timeline::before {
	content: '';
	position: absolute;
	inset-block: 0.75rem 0;
	inset-inline-start: 7px;
	inline-size: 2px;
	background: linear-gradient(to bottom,
		var(--sud-green-500), var(--sud-blue-500) 55%, transparent);
}

.sud-milestone {
	position: relative;
	padding-inline-start: clamp(2.25rem, 4vw, 3.25rem);
	padding-bottom: var(--sud-8);
}

.sud-milestone::before {
	content: '';
	position: absolute;
	inset-block-start: 0.5rem;
	inset-inline-start: 0;
	inline-size: 16px;
	block-size: 16px;
	border-radius: 50%;
	background: var(--sud-surface);
	border: 3px solid var(--sud-green-700);
	z-index: 1;
	transition: transform var(--sud-dur) var(--sud-ease),
	            border-color var(--sud-dur) var(--sud-ease);
}

.sud-milestone:hover::before {
	transform: scale(1.25);
	border-color: var(--sud-green-500);
}

.sud-milestone .sud-year,
.sud-milestone .sud-year .elementor-icon-box-title {
	font-family: var(--sud-font-display);
	font-size: var(--sud-text-xl);
	font-weight: 800;
	color: var(--sud-green-500);
	letter-spacing: -0.01em;
	line-height: 1;
	margin-bottom: var(--sud-2);
}

/* --------------------------------------------------------------------------
   9. PAGE HERO
   -------------------------------------------------------------------------- */

.sud-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(5.5rem, 9vw, 9rem) clamp(3.5rem, 6vw, 6rem);
	background:
		radial-gradient(900px 460px at 92% -20%, rgba(60, 180, 229, .16), transparent 62%),
		radial-gradient(760px 400px at -8% 10%, rgba(61, 174, 43, .13), transparent 60%),
		var(--sud-surface-2);
}

/* Homepage hero gets more air and a stronger colour wash */
.sud-hero--home {
	padding-block: clamp(6rem, 11vw, 11rem) clamp(4.5rem, 8vw, 8rem);
	background:
		radial-gradient(1100px 560px at 88% -18%, rgba(60, 180, 229, .22), transparent 62%),
		radial-gradient(900px 480px at -6% 8%, rgba(61, 174, 43, .18), transparent 60%),
		radial-gradient(700px 400px at 55% 120%, rgba(0, 98, 65, .10), transparent 65%),
		var(--sud-surface);
}

.sud-hero::after {
	content: '';
	position: absolute;
	inset-inline: 0;
	inset-block-end: 0;
	block-size: 1px;
	background: linear-gradient(90deg, transparent, var(--sud-line), transparent);
}

.sud-breadcrumb,
.sud-breadcrumb .elementor-icon-box-title {
	font-size: var(--sud-text-sm);
	color: var(--sud-muted);
	font-weight: 500;
	letter-spacing: .02em;
}

.sud-breadcrumb a { color: var(--sud-muted); text-decoration: none; }
.sud-breadcrumb a:hover { color: var(--sud-green-700); }

/* --------------------------------------------------------------------------
   10. LISTS
   -------------------------------------------------------------------------- */

.sud-list .elementor-icon-list-item {
	align-items: flex-start;
	margin-bottom: var(--sud-3);
}

.sud-list .elementor-icon-list-icon {
	color: var(--sud-green-500);
	padding-top: 0.3em;
}

.sud-list .elementor-icon-list-text {
	color: var(--sud-body);
	line-height: 1.65;
}

/* Two-column list on wide screens */
@media (min-width: 768px) {
	.sud-list--two-col .elementor-icon-list-items {
		columns: 2;
		column-gap: var(--sud-8);
	}
	.sud-list--two-col .elementor-icon-list-item { break-inside: avoid; }
}

/* --------------------------------------------------------------------------
   11. IMAGERY
   -------------------------------------------------------------------------- */

.sud-media img {
	border-radius: var(--sud-radius-lg);
	inline-size: 100%;
	block-size: auto;
	object-fit: cover;
}

.sud-media--tall img { aspect-ratio: 3 / 4; }
.sud-media--wide img { aspect-ratio: 16 / 10; }
.sud-media--square img { aspect-ratio: 1; }

.sud-media--framed {
	position: relative;
	isolation: isolate;
}

.sud-media--framed::before {
	content: '';
	position: absolute;
	inset-block-start: clamp(1rem, 2vw, 1.75rem);
	inset-inline-start: clamp(1rem, 2vw, 1.75rem);
	inline-size: 100%;
	block-size: 100%;
	border: 1.5px solid var(--sud-green-500);
	border-radius: var(--sud-radius-lg);
	z-index: -1;
	opacity: .6;
}

/* Placeholder while the client's photography is pending */
.sud-media--pending img {
	background: linear-gradient(135deg, var(--sud-surface-3), var(--sud-surface-2));
}

/* --------------------------------------------------------------------------
   12. DIVIDERS
   -------------------------------------------------------------------------- */

.sud-rule .elementor-divider-separator {
	border-top-color: var(--sud-line) !important;
}

.sud-rule .elementor-divider__text {
	font-family: var(--sud-font-body);
	font-size: var(--sud-text-xs);
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--sud-muted);
}

/* --------------------------------------------------------------------------
   12b. FAQ + STEPS
   -------------------------------------------------------------------------- */

.sud-faq { max-width: 78ch; }

.sud-faq__item {
	border: 1px solid var(--sud-line);
	border-radius: var(--sud-radius);
	background: var(--sud-surface);
	margin-bottom: var(--sud-3);
	overflow: hidden;
	transition: border-color var(--sud-dur) var(--sud-ease),
	            box-shadow var(--sud-dur) var(--sud-ease);
}

.sud-faq__item[open] {
	border-color: var(--sud-green-500);
	box-shadow: var(--sud-shadow-sm);
}

.sud-faq__q {
	font-family: var(--sud-font-display);
	font-size: var(--sud-text-lg);
	font-weight: 600;
	color: var(--sud-ink);
	padding: clamp(1rem, 2vw, 1.4rem) clamp(1.25rem, 2.5vw, 1.75rem);
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sud-4);
	transition: color var(--sud-dur) var(--sud-ease);
}

.sud-faq__q::-webkit-details-marker { display: none; }
.sud-faq__q:hover { color: var(--sud-green-700); }

/* Chevron drawn in CSS so no icon font is needed */
.sud-faq__q::after {
	content: '';
	flex: none;
	inline-size: 10px;
	block-size: 10px;
	border-right: 2px solid var(--sud-green-500);
	border-bottom: 2px solid var(--sud-green-500);
	transform: rotate(45deg);
	transition: transform var(--sud-dur) var(--sud-ease);
	margin-block-start: -4px;
}

.sud-faq__item[open] .sud-faq__q::after { transform: rotate(-135deg); margin-block-start: 4px; }

.sud-faq__a {
	padding: 0 clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.1rem, 2vw, 1.5rem);
}

.sud-faq__a p {
	font-size: var(--sud-text-base);
	line-height: 1.75;
	color: var(--sud-body);
	margin: 0 0 var(--sud-3);
}

.sud-faq__a p:last-child { margin-bottom: 0; }

/* Process steps */
.sud-step { position: relative; padding-top: var(--sud-5); }

.sud-step::before {
	content: '';
	position: absolute;
	inset-block-start: 0;
	inset-inline: 0;
	block-size: 2px;
	background: var(--sud-line);
}

.sud-step::after {
	content: '';
	position: absolute;
	inset-block-start: 0;
	inset-inline-start: 0;
	inline-size: 32px;
	block-size: 2px;
	background: var(--sud-green-500);
}

.sud-step__n .elementor-heading-title {
	font-family: var(--sud-font-display);
	font-size: var(--sud-text-sm);
	font-weight: 800;
	letter-spacing: .08em;
	color: var(--sud-green-500);
}

.sud-step__t .elementor-heading-title {
	font-size: var(--sud-text-xl);
	line-height: 1.35;
}

/* --------------------------------------------------------------------------
   13. MOTION
   Subtle and elegant — short travel, soft easing, never bouncy.
   -------------------------------------------------------------------------- */

/* Reveal behaviour now lives in motion.css, gated behind the .sud-motion class
   so the finished state is the default and content can never ship hidden. */

/* --------------------------------------------------------------------------
   14. HEADER & FOOTER
   -------------------------------------------------------------------------- */

.sud-header {
	background: rgba(255, 255, 255, .88);
	backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--sud-line);
	position: sticky;
	top: 0;
	z-index: 100;
}

.sud-header__inner { padding-block: var(--sud-3); }

.sud-logo img { max-height: 52px; width: auto; }
.sud-logo--footer img { max-height: 64px; width: auto; }

.sud-header__nav { flex: 1 1 auto; }

/* Navigation */
.sud-nav .elementor-nav-menu--main .elementor-item {
	font-family: var(--sud-font-body);
	font-size: var(--sud-text-sm);
	font-weight: 600;
	color: var(--sud-ink);
	letter-spacing: 0;
	padding: 0.6rem 0.85rem;
	transition: color var(--sud-dur) var(--sud-ease);
}

.sud-nav .elementor-nav-menu--main .elementor-item:hover,
.sud-nav .elementor-nav-menu--main .elementor-item.highlighted,
.sud-nav .elementor-nav-menu--main .elementor-item.elementor-item-active {
	color: var(--sud-green-700);
}

/* Underline pointer in brand green */
.sud-nav .e--pointer-underline .elementor-item:before,
.sud-nav .e--pointer-underline .elementor-item:after {
	background-color: var(--sud-green-500);
	height: 2px;
}

/* Dropdowns — quiet, generous, no hard edges */
.sud-nav .elementor-nav-menu--dropdown {
	border-radius: var(--sud-radius);
	box-shadow: var(--sud-shadow);
	border: 1px solid var(--sud-line);
	overflow: hidden;
	padding-block: var(--sud-2);
	background: var(--sud-surface);
}

.sud-nav .elementor-nav-menu--dropdown a.elementor-sub-item {
	font-family: var(--sud-font-body);
	font-size: var(--sud-text-sm);
	font-weight: 500;
	color: var(--sud-body);
	padding: 0.7rem 1.1rem;
	transition: background var(--sud-dur) var(--sud-ease),
	            color var(--sud-dur) var(--sud-ease),
	            padding-inline-start var(--sud-dur) var(--sud-ease);
}

.sud-nav .elementor-nav-menu--dropdown a.elementor-sub-item:hover,
.sud-nav .elementor-nav-menu--dropdown a.elementor-sub-item.elementor-item-active {
	background: var(--sud-surface-3);
	color: var(--sud-green-700);
	padding-inline-start: 1.35rem;
}

/* Burger */
.sud-nav .elementor-menu-toggle {
	color: var(--sud-ink);
	background: transparent;
	border-radius: var(--sud-radius-sm);
}

.sud-nav .elementor-menu-toggle:hover { color: var(--sud-green-700); }

/* Hide the desktop CTA where space is tight — the mobile menu carries it */
@media (max-width: 1024px) {
	.sud-header__cta { display: none; }
}

/* Footer layout */
.elementor .sud-footer__cols { display: grid; gap: clamp(2rem, 4vw, 3rem); }

@media (min-width: 700px)  { .sud-footer__cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .sud-footer__cols { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; } }

.sud-footer { padding-block: clamp(3.5rem, 6vw, 5.5rem) var(--sud-6); }

.sud-footer-blurb p {
	font-size: var(--sud-text-sm);
	color: rgba(255, 255, 255, .62);
	max-width: 34ch;
	margin: 0;
}

.sud-footer-list .elementor-icon-list-item { margin-bottom: var(--sud-2); }

.sud-footer-list .elementor-icon-list-text {
	font-size: var(--sud-text-sm);
	transition: color var(--sud-dur) var(--sud-ease),
	            padding-inline-start var(--sud-dur) var(--sud-ease);
}

.sud-footer-list .elementor-icon-list-item:hover .elementor-icon-list-text {
	padding-inline-start: 4px;
}

.sud-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .14);
	padding-top: var(--sud-5);
}

.sud-footer-legal p {
	font-size: var(--sud-text-xs);
	color: rgba(255, 255, 255, .72);
	margin: 0;
}

.sud-footer-legal a { color: rgba(255, 255, 255, .68); }
.sud-footer-legal a:hover { color: var(--sud-green-400); }

/* Product cards */
.sud-product-name .elementor-heading-title {
	font-size: var(--sud-text-xl);
	color: var(--sud-ink);
}

.sud-product-desc p {
	font-size: var(--sud-text-sm);
	line-height: 1.7;
	color: var(--sud-body);
	margin: 0;
}

.sud-group-title .elementor-heading-title {
	font-size: var(--sud-h4);
	color: var(--sud-green-700);
	padding-bottom: var(--sud-3);
	border-bottom: 1px solid var(--sud-line);
}

.sud-footer {
	background: var(--sud-green-900);
	color: rgba(255, 255, 255, .68);
}

.sud-footer h1, .sud-footer h2, .sud-footer h3,
.sud-footer h4, .sud-footer h5, .sud-footer h6 { color: #fff; }

.sud-footer .elementor-icon-list-text,
.sud-footer a { color: rgba(255, 255, 255, .68); text-decoration: none; }

.sud-footer a:hover,
.sud-footer .elementor-icon-list-item:hover .elementor-icon-list-text {
	color: var(--sud-green-400);
}

.sud-footer .elementor-icon-list-icon { color: var(--sud-green-500); }

.sud-footer-heading .elementor-heading-title {
	font-family: var(--sud-font-body);
	font-size: var(--sud-text-xs);
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .5);
}

/* --------------------------------------------------------------------------
   15. RTL / ARABIC
   Logical properties do most of the work; these handle what they cannot.
   -------------------------------------------------------------------------- */

.sud-rtl body,
[dir="rtl"] body {
	font-family: var(--sud-font-arabic);
	/* Arabic needs more vertical room than Latin at the same size */
	line-height: 1.85;
}

.sud-rtl h1, .sud-rtl h2, .sud-rtl h3, .sud-rtl h4, .sud-rtl h5, .sud-rtl h6,
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6 {
	font-family: var(--sud-font-arabic);
	letter-spacing: 0;   /* Arabic must never be letter-spaced */
	line-height: 1.35;   /* Latin display line-height is too tight for Arabic ascenders */
}

.sud-rtl .sud-eyebrow,
[dir="rtl"] .sud-eyebrow,
.sud-rtl .sud-rule .elementor-divider__text,
[dir="rtl"] .sud-rule .elementor-divider__text,
.sud-rtl .sud-footer-heading .elementor-heading-title,
[dir="rtl"] .sud-footer-heading .elementor-heading-title {
	letter-spacing: 0;
	text-transform: none;
}

/* Numerals stay LTR inside RTL text */
.sud-rtl .sud-stat .elementor-counter-number-wrapper,
[dir="rtl"] .sud-stat .elementor-counter-number-wrapper,
.sud-rtl .sud-year, [dir="rtl"] .sud-year {
	direction: ltr;
	unicode-bidi: isolate;
}

/* --------------------------------------------------------------------------
   16. PRINT
   -------------------------------------------------------------------------- */

@media print {
	.sud-header, .sud-footer, .sud-btn { display: none !important; }
	[data-sud-reveal] { opacity: 1 !important; transform: none !important; }
	.sud-section { padding-block: 1.5rem; }
	body { color: #000; }
}
