/*
Theme Name: Netsyne Pty Ltd
Theme URI: https://netsyne.com.au
Author: Netsyne Pty Ltd
Description: WordPress theme for Netsyne Pty Ltd — website development, SEO & IT solutions. Blue technology branding, Poppins/Inter typography, flexbox-based Elementor-friendly layout (no CSS grid). Reproduces the eight-page Netsyne site: Home, About, Services, Website Development, SEO Services, IT Solutions & Support, Portfolio and Contact.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: netsyne
Tags: business, technology, blue, elementor-ready, flexible-layout, custom-menu, custom-logo, featured-images, translation-ready
*/

/* ------------------------------------------------------------------
   Fonts — loaded via wp_enqueue_style in functions.php (netsyne-fonts)
   for reliable, preconnected delivery. See netsyne_assets().
------------------------------------------------------------------ */

/* ------------------------------------------------------------------
   Tokens
------------------------------------------------------------------ */
:root {
    --primary: hsl(221 83% 45%);
    --primary-dark: hsl(221 83% 40%);
    --primary-soft: hsl(221 83% 45% / 0.10);
    --primary-fg: #ffffff;
    --midnight: hsl(222 64% 9%);
    --ice: hsl(211 100% 97%);
    --blue-300: hsl(217 91% 70%);
    --blue-400: hsl(217 91% 60%);
    --blue-100: hsl(211 100% 97%);
    --secondary: hsl(214 95% 96%);
    --secondary-fg: hsl(222 47% 15%);
    --accent: hsl(214 95% 93%);
    --border: hsl(214 25% 88%);
    --input: hsl(214 25% 84%);
    --muted-fg: hsl(217 16% 42%);
    --fg: hsl(222 47% 11%);
    --card: #ffffff;
    --bg: #ffffff;
    --radius: 6px;
    --shadow-hard: 10px 10px 0 0 hsl(222 47% 11% / 0.07);
    --shadow-hard-sm: 6px 6px 0 0 hsl(222 47% 11% / 0.06);
    --container: 72rem;
}

/* ------------------------------------------------------------------
   Reset / base
------------------------------------------------------------------ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
    margin: 0;
    line-height: 1.15;
}

p { margin: 0; }

a { color: var(--primary); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--primary); color: #fff; }

/* ------------------------------------------------------------------
   Layout primitives
------------------------------------------------------------------ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.bg-midnight { background: var(--midnight); color: #fff; }
.bg-ice { background: var(--ice); }
.bg-primary { background: var(--primary); color: #fff; }
.text-muted { color: var(--muted-fg); }
.text-center { text-align: center; }

/* Two-column split (flexbox, collapses to single column under 1024px) */
.split { display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 1024px) {
    .split { flex-direction: row; align-items: stretch; }
    .split.split-center { align-items: center; }
    .split > .col-1-2 { flex: 0 0 50%; }
    .split > .col-3-5 { flex: 0 0 60%; }
    .split > .col-2-5 { flex: 0 0 40%; }
    .split > .col-pad-l { padding-left: 1.5rem; }
    .split > .col-pad-r { padding-right: 1.5rem; }
}

/* Flex grid (flexbox + width %, never CSS grid) */
.grid-row { display: flex; flex-wrap: wrap; margin: -0.75rem; }
.grid-item { padding: 0.75rem; flex: 0 0 100%; }
.gi-thirds { flex: 0 0 100%; }
.gi-fourths { flex: 0 0 100%; }
.gi-thirds-md { flex: 0 0 100%; }
.gi-half-md { flex: 0 0 100%; }
.gi-portfolio { flex: 0 0 100%; }

@media (min-width: 640px) {
    .gi-thirds { flex: 0 0 50%; }
    .gi-fourths { flex: 0 0 50%; }
}
@media (min-width: 768px) {
    .gi-thirds-md { flex: 0 0 33.3333%; }
    .gi-half-md { flex: 0 0 50%; }
    .gi-portfolio { flex: 0 0 50%; }
}
@media (min-width: 1024px) {
    .gi-thirds { flex: 0 0 33.3333%; }
    .gi-fourths { flex: 0 0 25%; }
    .gi-portfolio { flex: 0 0 33.3333%; }
}

/* Inline horizontal list that wraps */
.inline-list { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; gap: 0.75rem 2rem; }

/* ------------------------------------------------------------------
   Typography helpers
------------------------------------------------------------------ */
.eyebrow {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.25em;
    color: var(--blue-300);
}
.eyebrow .bar { height: 1px; width: 2.5rem; background: var(--blue-400); }

.h-section { font-size: 1.875rem; font-weight: 700; letter-spacing: -0.01em; }
@media (min-width: 768px) { .h-section { font-size: 2.25rem; } }
.max-xl { max-width: 36rem; }
.max-2xl { max-width: 42rem; }
.max-3xl { max-width: 48rem; }
.lead { line-height: 1.625; color: var(--muted-fg); }

/* Section caption (number + bar + label) */
.scaption { display: flex; align-items: center; gap: 0.75rem; }
.scaption .num { font-family: 'Poppins'; font-weight: 700; font-size: 0.875rem; color: var(--primary); }
.scaption .bar { height: 1px; width: 2.5rem; background: var(--primary); }
.scaption .label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--muted-fg); }
.scaption.light .num { color: var(--blue-400); }
.scaption.light .bar { background: var(--blue-400); }
.scaption.light .label { color: hsl(211 100% 97% / 0.8); }

/* ------------------------------------------------------------------
   Buttons
------------------------------------------------------------------ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    height: 2.75rem; padding: 0 1.25rem;
    font-family: 'Poppins'; font-weight: 600; font-size: 0.875rem;
    border: 1px solid transparent; border-radius: var(--radius);
    cursor: pointer; text-decoration: none; transition: all 0.2s ease;
}
.btn-lg { height: 3rem; padding: 0 1.75rem; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--fg); }
.btn-outline:hover { background: var(--secondary); color: var(--primary); }
.btn-outline-light { background: transparent; border-color: hsl(0 0% 100% / 0.25); color: #fff; }
.btn-outline-light:hover { background: hsl(0 0% 100% / 0.1); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #eff6ff; color: var(--primary); }
.btn:active { transform: translateY(1px); }
.btn .icon { width: 1rem; height: 1rem; }

/* ------------------------------------------------------------------
   Header / navigation
------------------------------------------------------------------ */
.site-header { position: sticky; top: 0; z-index: 50; }

.utility-bar { display: none; background: var(--midnight); color: hsl(211 100% 97% / 0.8); }
@media (min-width: 768px) { .utility-bar { display: block; } }
.utility-bar .container { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 1.5rem; font-size: 0.75rem; }
.utility-bar .right { display: flex; align-items: center; gap: 1.5rem; }
.utility-bar a { display: flex; align-items: center; gap: 0.375rem; color: inherit; text-decoration: none; transition: color 0.2s; }
.utility-bar a:hover { color: #fff; }
.utility-bar .icon { width: 0.875rem; height: 0.875rem; color: var(--blue-400); }

.nav-bar { border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); }
.nav-bar .container { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 1024px) { .nav-bar .container { height: 4.5rem; } }

.logo { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; }
.logo .mark { width: 2.25rem; height: 2.25rem; flex-shrink: 0; }
.logo .name { font-family: 'Poppins'; font-size: 1.25rem; font-weight: 700; color: var(--fg); line-height: 1; }
.logo .sub { margin-top: 0.25rem; font-size: 0.625rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.28em; color: var(--primary); }
.logo.light .name { color: #fff; }
.logo.light .sub { color: var(--blue-300); }

.nav { display: none; align-items: center; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a { padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 500; color: hsl(222 47% 11% / 0.75); text-decoration: none; transition: color 0.2s; }
.nav a:hover, .nav a.active { color: var(--primary); }

.nav .has-dropdown { position: relative; }
.nav .dropdown-toggle { display: flex; align-items: center; gap: 0.25rem; background: none; border: none; padding: 0.5rem 0.75rem; font-family: inherit; font-size: 0.875rem; font-weight: 500; color: hsl(222 47% 11% / 0.75); cursor: pointer; transition: color 0.2s; }
.nav .has-dropdown:hover .dropdown-toggle { color: var(--primary); }
.nav .dropdown-toggle .chev { width: 1rem; height: 1rem; transition: transform 0.2s; }
.nav .has-dropdown:hover .dropdown-toggle .chev { transform: rotate(180deg); }
.nav .dropdown { position: absolute; left: 0; top: 100%; width: 16rem; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-hard-sm); opacity: 0; visibility: hidden; transform: translateY(4px); transition: all 0.2s; }
.nav .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .dropdown a { display: block; padding: 0.75rem 1.25rem; font-size: 0.875rem; font-weight: 500; color: hsl(222 47% 11% / 0.8); border-bottom: 1px solid var(--border); }
.nav .dropdown a:last-child { border-bottom: 0; }
.nav .dropdown a:hover { background: var(--secondary); color: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }
.menu-toggle { display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border: 1px solid var(--border); background: #fff; color: var(--fg); cursor: pointer; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle .icon { width: 1.25rem; height: 1.25rem; }

/* Mobile menu */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.4); z-index: 55; }
.mobile-overlay.open { display: block; }
.mobile-menu { position: fixed; top: 0; right: 0; bottom: 0; width: 20rem; max-width: 85%; background: #fff; border-left: 1px solid var(--border); z-index: 60; overflow-y: auto; transform: translateX(100%); transition: transform 0.25s ease; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .head { padding: 1.25rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.mobile-menu .close { width: 2.25rem; height: 2.25rem; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); background: #fff; cursor: pointer; }
.mobile-menu .close .icon { width: 1.25rem; height: 1.25rem; }
.mobile-menu nav { display: flex; flex-direction: column; padding: 1.25rem; }
.mobile-menu a { padding: 0.875rem 0; font-size: 0.875rem; font-weight: 600; color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .sub-label { padding: 1.25rem 0 0.25rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-fg); border-bottom: 0; }
.mobile-menu .sub a { font-weight: 500; color: hsl(222 47% 11% / 0.8); }
.mobile-menu .btn { margin-top: 1.5rem; }

/* ------------------------------------------------------------------
   Page header (interior hero)
------------------------------------------------------------------ */
.page-header { position: relative; overflow: hidden; background: var(--midnight); color: #fff; }
.page-header .deco { position: absolute; inset: 0; pointer-events: none; }
.page-header .deco span { position: absolute; top: 0; bottom: 0; width: 1px; background: hsl(0 0% 100% / 0.05); }
.page-header .deco span:nth-child(1) { left: 33.33%; }
.page-header .deco span:nth-child(2) { left: 66.66%; }
@media (max-width: 767px) { .page-header .deco { display: none; } }
.page-header .container { position: relative; padding: 4rem 1.5rem; }
@media (min-width: 768px) { .page-header .container { padding: 6rem 1.5rem; } }
.breadcrumb { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: hsl(211 100% 97% / 0.8); }
.breadcrumb a { color: inherit; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .icon { width: 0.875rem; height: 0.875rem; }
.page-header h1 { margin-top: 1.25rem; max-width: 48rem; font-size: 2.25rem; font-weight: 700; line-height: 1.1; }
@media (min-width: 768px) { .page-header h1 { font-size: 3rem; } }
.page-header .desc { margin-top: 1.25rem; max-width: 42rem; font-size: 1rem; line-height: 1.625; color: hsl(211 100% 97% / 0.75); }
@media (min-width: 768px) { .page-header .desc { font-size: 1.125rem; } }
.page-header .caption { margin-top: 2rem; display: flex; align-items: center; gap: 0.75rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--blue-300); }
.page-header .caption .bar { height: 1px; width: 2.5rem; background: var(--blue-400); }

/* ------------------------------------------------------------------
   Hero (home)
------------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; background: var(--midnight); color: #fff; }
.hero .deco { position: absolute; inset: 0; pointer-events: none; }
.hero .deco span { position: absolute; top: 0; bottom: 0; width: 1px; background: hsl(0 0% 100% / 0.05); }
.hero .deco span:nth-child(1) { left: 33.33%; }
.hero .deco span:nth-child(2) { left: 66.66%; }
@media (max-width: 767px) { .hero .deco { display: none; } }
.hero .container { position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 92vh; padding: 6rem 1.5rem; }
.hero h1 { margin-top: 1.5rem; max-width: 64rem; font-size: 2.25rem; font-weight: 700; line-height: 1.08; }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
.hero h1 .accent { color: var(--blue-400); }
.hero .lead { margin-top: 1.5rem; max-width: 42rem; font-size: 1rem; line-height: 1.625; color: hsl(211 100% 97% / 0.75); }
@media (min-width: 768px) { .hero .lead { font-size: 1.125rem; } }
.hero .btn-row { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero .stats { margin-top: 4rem; display: flex; flex-wrap: wrap; border-top: 1px solid hsl(0 0% 100% / 0.1); padding-top: 2rem; }
.hero .stats .stat { width: 50%; padding-bottom: 1.5rem; }
@media (min-width: 768px) { .hero .stats .stat { width: 25%; padding-bottom: 0; } }
.hero .stats .stat .num { font-family: 'Poppins'; font-size: 1.875rem; font-weight: 700; color: #fff; }
@media (min-width: 768px) { .hero .stats .stat .num { font-size: 2.25rem; } }
.hero .stats .stat .label { margin-top: 0.375rem; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: hsl(211 100% 97% / 0.7); }

/* Stats band (about) */
.stats-band { background: var(--midnight); color: #fff; padding: 4rem 0; }
@media (min-width: 768px) { .stats-band { padding: 5rem 0; } }
.stats-band .row { display: flex; flex-wrap: wrap; }
.stats-band .stat { width: 50%; padding-bottom: 2rem; }
@media (min-width: 768px) { .stats-band .stat { width: 25%; padding-bottom: 0; } }
.stats-band .stat .num { font-family: 'Poppins'; font-size: 1.875rem; font-weight: 700; }
@media (min-width: 768px) { .stats-band .stat .num { font-size: 2.25rem; } }
.stats-band .stat .label { margin-top: 0.375rem; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: hsl(211 100% 97% / 0.7); }

/* ------------------------------------------------------------------
   Icon box
------------------------------------------------------------------ */
.icon-box { display: flex; flex-direction: column; height: 100%; border: 1px solid var(--border); background: var(--card); padding: 1.75rem; transition: all 0.2s ease; }
.icon-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-hard); }
.icon-box .ib-icon { display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; background: var(--primary-soft); color: var(--primary); }
.icon-box .ib-icon .icon { width: 1.5rem; height: 1.5rem; }
.icon-box h3 { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 600; }
.icon-box p { margin-top: 0.625rem; flex: 1; font-size: 0.875rem; line-height: 1.625; color: var(--muted-fg); }
.icon-box .ib-link { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 600; color: var(--primary); text-decoration: none; transition: gap 0.2s; }
.icon-box .ib-link:hover { gap: 0.625rem; }
.icon-box .ib-link .icon { width: 1rem; height: 1rem; }

/* ------------------------------------------------------------------
   Process / outcome steps
------------------------------------------------------------------ */
.steps .step { height: 100%; border-top: 2px solid hsl(221 83% 45% / 0.2); padding-top: 1.5rem; }
.steps .step .num { font-family: 'Poppins'; font-size: 2.25rem; font-weight: 700; color: var(--primary); }
.steps .step h3 { margin-top: 1rem; font-size: 1.125rem; font-weight: 600; }
.steps .step p { margin-top: 0.625rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted-fg); }

/* ------------------------------------------------------------------
   Testimonials
------------------------------------------------------------------ */
.testimonial { display: flex; flex-direction: column; height: 100%; border: 1px solid hsl(0 0% 100% / 0.1); background: hsl(0 0% 100% / 0.05); padding: 1.75rem; }
.stars { display: flex; gap: 0.25rem; color: #fbbf24; }
.stars .icon { width: 1rem; height: 1rem; fill: #fbbf24; }
.testimonial blockquote { margin: 1.25rem 0 0; flex: 1; font-size: 0.875rem; line-height: 1.625; color: hsl(211 100% 97% / 0.85); }
.testimonial figcaption { margin-top: 1.5rem; border-top: 1px solid hsl(0 0% 100% / 0.1); padding-top: 1.25rem; }
.testimonial .name { font-family: 'Poppins'; font-size: 0.875rem; font-weight: 600; color: #fff; }
.testimonial .biz { margin-top: 0.25rem; font-size: 0.75rem; color: hsl(211 100% 97% / 0.7); }

/* ------------------------------------------------------------------
   Check lists
------------------------------------------------------------------ */
.check-list { list-style: none; margin: 1.75rem 0 0; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.875rem; font-size: 0.875rem; font-weight: 500; line-height: 1.625; }
@media (min-width: 768px) { .check-list li { font-size: 1rem; } }
.check-list li:last-child { margin-bottom: 0; }
.check-list .tick { flex-shrink: 0; margin-top: 2px; width: 1.5rem; height: 1.5rem; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; }
.check-list .tick .icon { width: 1rem; height: 1rem; }

.inline-checks { list-style: none; margin: 1.25rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.625rem 1.75rem; }
.inline-checks li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; }
.inline-checks .icon { width: 1rem; height: 1rem; color: var(--primary); }

/* Deliverables box */
.deliverables { border: 1px solid var(--border); background: var(--secondary); padding: 1.75rem; }
@media (min-width: 768px) { .deliverables { padding: 2.25rem; } }
.deliverables h3 { font-size: 1.125rem; font-weight: 600; }
.deliverables ul { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.deliverables li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.875rem; font-size: 0.875rem; font-weight: 500; line-height: 1.625; }
.deliverables li:last-child { margin-bottom: 0; }
.deliverables .tick { flex-shrink: 0; margin-top: 2px; width: 1.5rem; height: 1.5rem; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; }
.deliverables .tick .icon { width: 1rem; height: 1rem; }

/* Note box (services) */
.note { margin-top: 3rem; border-left: 4px solid var(--primary); background: var(--secondary); padding: 1.5rem; font-size: 0.875rem; line-height: 1.625; color: var(--secondary-fg); }
@media (min-width: 768px) { .note { font-size: 1rem; } }
.note a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }

/* ------------------------------------------------------------------
   Service row (services page)
------------------------------------------------------------------ */
.service-row { display: flex; flex-direction: column; gap: 1.5rem; border: 1px solid var(--border); background: var(--card); padding: 1.75rem; transition: all 0.2s ease; }
@media (min-width: 768px) { .service-row { flex-direction: row; align-items: flex-start; gap: 2.5rem; padding: 2.25rem; } }
.service-row:hover { box-shadow: var(--shadow-hard); }
.service-row .sr-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; background: var(--primary); color: #fff; }
.service-row .sr-icon .icon { width: 1.75rem; height: 1.75rem; }
.service-row .sr-body { flex: 1; }
.service-row h2 { font-size: 1.25rem; font-weight: 600; }
@media (min-width: 768px) { .service-row h2 { font-size: 1.5rem; } }
.service-row .sr-text { margin-top: 0.75rem; max-width: 48rem; line-height: 1.625; color: var(--muted-fg); }
.service-row .sr-cta { flex-shrink: 0; }
@media (min-width: 768px) { .service-row .sr-cta { align-self: center; } }

/* Audience card */
.audience { display: flex; align-items: flex-start; gap: 1.25rem; height: 100%; border: 1px solid var(--border); background: var(--card); padding: 1.75rem; }
.audience .icon { flex-shrink: 0; width: 3rem; height: 3rem; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; }
.audience .icon .icon { width: 1.5rem; height: 1.5rem; }
.audience h3 { font-size: 1.125rem; font-weight: 600; }
.audience p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted-fg); }

/* ------------------------------------------------------------------
   Portfolio cards
------------------------------------------------------------------ */
.project { display: flex; flex-direction: column; height: 100%; border: 1px solid var(--border); background: var(--card); transition: all 0.2s ease; }
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow-hard); }
.project .img-wrap { overflow: hidden; }
.project .img-wrap img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 0.3s ease; }
.project:hover .img-wrap img { transform: scale(1.05); }
.project .body { display: flex; flex: 1; flex-direction: column; padding: 1.5rem; }
.project .cat { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); }
.project h3 { margin-top: 0.5rem; font-size: 1.125rem; font-weight: 600; }
.project .text { margin-top: 0.5rem; flex: 1; font-size: 0.875rem; line-height: 1.625; color: var(--muted-fg); }
.project .result { margin-top: 1.25rem; border-top: 1px solid var(--border); padding-top: 1rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; }
.project .result .icon { width: 1rem; height: 1rem; color: var(--primary); }

/* ------------------------------------------------------------------
   Figure
------------------------------------------------------------------ */
.figure img { width: 100%; border: 4px solid #fff; object-fit: cover; box-shadow: var(--shadow-hard); }
.figure figcaption { margin-top: 1rem; display: flex; align-items: center; gap: 0.75rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-fg); }
.figure figcaption .bar { height: 1px; width: 2rem; background: var(--primary); }

/* ------------------------------------------------------------------
   CTA band
------------------------------------------------------------------ */
.cta { background: var(--primary); color: #fff; }
.cta .container { display: flex; flex-direction: column; gap: 2rem; padding: 4rem 1.5rem; }
@media (min-width: 768px) { .cta .container { flex-direction: row; align-items: center; justify-content: space-between; padding: 5rem 1.5rem; } }
.cta .cta-eyebrow { display: flex; align-items: center; gap: 0.75rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: hsl(211 100% 97% / 0.9); }
.cta .cta-eyebrow .bar { height: 1px; width: 2.5rem; background: hsl(211 100% 97% / 0.9); }
.cta h2 { margin-top: 1rem; font-size: 1.875rem; font-weight: 700; }
@media (min-width: 768px) { .cta h2 { font-size: 2.25rem; } }
.cta .cta-text { margin-top: 1rem; line-height: 1.625; color: hsl(211 100% 97% / 0.9); max-width: 42rem; }
.cta .cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; flex-shrink: 0; }

/* ------------------------------------------------------------------
   Forms (contact)
------------------------------------------------------------------ */
.form-row { display: flex; flex-wrap: wrap; margin: -0.625rem; }
.form-field { width: 100%; padding: 0.625rem; }
@media (min-width: 640px) { .form-field.half { width: 50%; } }
label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.input, .textarea, .select {
    width: 100%; height: 3rem; padding: 0 0.75rem;
    border: 1px solid var(--input); border-radius: var(--radius);
    background: #fff; font-family: 'Inter'; font-size: 0.875rem; color: var(--fg);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.textarea { height: auto; padding: 0.75rem; min-height: 8rem; resize: vertical; }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px hsl(221 83% 45% / 0.2); }
.form-note { margin-top: 1rem; font-size: 0.75rem; line-height: 1.625; color: var(--muted-fg); }
.form-note a { color: var(--primary); font-weight: 600; }

/* Contact details */
.detail-card { border: 1px solid var(--border); background: var(--secondary); padding: 1.75rem; }
@media (min-width: 768px) { .detail-card { padding: 2.25rem; } }
.detail-card h2 { font-size: 1.125rem; font-weight: 600; }
.detail-list { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.detail-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.detail-list li:last-child { margin-bottom: 0; }
.detail-list .icon { flex-shrink: 0; width: 2.75rem; height: 2.75rem; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; }
.detail-list .icon .icon { width: 1.25rem; height: 1.25rem; }
.detail-list .label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-fg); }
.detail-list .value { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 600; }
.detail-list a.value { text-decoration: none; color: var(--fg); transition: color 0.2s; }
.detail-list a.value:hover { color: var(--primary); }
.email-card { margin-top: 1.5rem; background: var(--midnight); color: #fff; padding: 1.75rem; }
@media (min-width: 768px) { .email-card { padding: 2.25rem; } }
.email-card h2 { font-size: 1.125rem; font-weight: 600; }
.email-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.625; color: hsl(211 100% 97% / 0.75); }
.email-card a { color: var(--blue-300); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }

/* ------------------------------------------------------------------
   Accordion (FAQ)
------------------------------------------------------------------ */
.accordion { border: 1px solid var(--border); background: var(--card); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: 0; }
.accordion-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; background: none; border: none; text-align: left; font-family: 'Poppins'; font-size: 1rem; font-weight: 600; color: var(--fg); cursor: pointer; }
.accordion-trigger .chev { flex-shrink: 0; width: 1.25rem; height: 1.25rem; color: var(--muted-fg); transition: transform 0.2s; }
.accordion-item.open .accordion-trigger .chev { transform: rotate(180deg); }
.accordion-content { display: none; padding: 0 1.5rem 1.25rem; line-height: 1.625; color: var(--muted-fg); }
.accordion-item.open .accordion-content { display: block; }

/* ------------------------------------------------------------------
   Footer
------------------------------------------------------------------ */
.footer { background: var(--midnight); color: hsl(211 100% 97% / 0.7); }
.footer .container { display: flex; flex-wrap: wrap; padding: 3.5rem 1.5rem; }
@media (min-width: 768px) { .footer .container { padding: 5rem 1.5rem; } }
.footer .col-brand { width: 100%; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .footer .col-brand { width: 50%; } }
@media (min-width: 1024px) { .footer .col-brand { width: 33.33%; padding-bottom: 0; padding-right: 2.5rem; } }
.footer .col { width: 50%; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .footer .col { width: 25%; } }
@media (min-width: 1024px) { .footer .col { width: 16.66%; padding-bottom: 0; } }
.footer .col-contact { width: 100%; }
@media (min-width: 768px) { .footer .col-contact { width: 50%; } }
@media (min-width: 1024px) { .footer .col-contact { width: 33.33%; } }
.footer h3 { font-family: 'Poppins'; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: #fff; }
.footer ul { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.footer ul li { margin-bottom: 0.75rem; font-size: 0.875rem; }
.footer ul li:last-child { margin-bottom: 0; }
.footer a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: #fff; }
.footer .brand-text { margin-top: 1.25rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.625; }
.footer .contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.875rem; }
.footer .contact-list .icon { flex-shrink: 0; margin-top: 2px; width: 1rem; height: 1rem; color: var(--blue-400); }
.footer .bottom { border-top: 1px solid hsl(0 0% 100% / 0.1); }
.footer .bottom .container { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.5rem; font-size: 0.75rem; color: hsl(211 100% 97% / 0.5); }
@media (min-width: 768px) { .footer .bottom .container { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ------------------------------------------------------------------
   Reveal animation
------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------------
   WordPress core alignment
------------------------------------------------------------------ */
.alignwide { max-width: 90rem; }
.alignfull { max-width: 100%; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); }

/* Elementor canvas padding fix */
.elementor-page .site-header,
.elementor-page .site-footer { display: inherit; }
