/*
Theme Name: Oaktis Group Elite
Theme URI: https://oaktisgroup.co.uk
Author: Oaktis Group Ltd
Author URI: https://oaktisgroup.co.uk
Description: Refined multi-page WordPress theme for Oaktis Group Ltd, focused on Amazon wholesale and online arbitrage operations in the US and UK.
Version: 3.0.0
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: oaktis-group-elite
Tags: custom-logo, custom-menu, featured-images, full-width-template, one-column, two-columns, business, services, responsive-layout
*/

:root {
    --ogt-forest: #173F35;
    --ogt-emerald: #285447;
    --ogt-emerald-2: #6E8B79;
    --ogt-mint: #E7EFEA;
    --ogt-gold: #C5A059;
    --ogt-gold-soft: #F4EBD8;
    --ogt-cream: #F7F3EB;
    --ogt-paper: #FCFAF7;
    --ogt-ink: #1D2924;
    --ogt-muted: #617069;
    --ogt-border: #CFDAD4;
    --ogt-shadow: 0 24px 60px rgba(23, 63, 53, .13);
    --ogt-shadow-soft: 0 12px 32px rgba(23, 63, 53, .09);
    --ogt-radius: 20px;
    --ogt-radius-sm: 14px;
    --ogt-max: 1180px;
    --ogt-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ogt-serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ogt-ink);
    background: var(--ogt-paper);
    font-family: var(--ogt-font);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--ogt-emerald); }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--ogt-emerald); color: #fff; }

.ogt-container {
    width: min(var(--ogt-max), calc(100% - 40px));
    margin: 0 auto;
}
.ogt-section { padding: 96px 0; position: relative; }
.ogt-section-tight { padding: 70px 0; position: relative; }
.ogt-section-muted { background: var(--ogt-cream); border-block: 1px solid rgba(207, 218, 212, .75); }
.ogt-grid { display: grid; gap: 28px; }
.ogt-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.ogt-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ogt-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ogt-section-head { max-width: 750px; margin-bottom: 42px; }
.ogt-section-head.center { margin-inline: auto; text-align: center; }
.ogt-section-head h2, .ogt-page-content h2 { margin: 10px 0 14px; font-size: clamp(32px, 4vw, 54px); line-height: 1.05; letter-spacing: -.04em; }
.ogt-section-head p { margin: 0; color: var(--ogt-muted); font-size: 18px; }
.ogt-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(40, 84, 71, .18);
    background: var(--ogt-mint);
    color: var(--ogt-emerald);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.ogt-kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ogt-gold);
    box-shadow: 0 0 0 5px rgba(197, 160, 89, .14);
}
.ogt-kicker.dark { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.22); }
.ogt-kicker.dark::before { background: var(--ogt-gold); }
.ogt-text-muted { color: var(--ogt-muted); }
.ogt-accent { color: var(--ogt-gold); }

.ogt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
}
.ogt-button::after { display: none; }
.ogt-button.primary {
    color: #fff;
    background: var(--ogt-forest);
    box-shadow: 0 10px 24px rgba(23, 63, 53, .18);
}
.ogt-button.primary:hover { color: #fff; background: var(--ogt-emerald); transform: translateY(-1px); box-shadow: 0 14px 30px rgba(23, 63, 53, .22); }
.ogt-button.secondary {
    color: var(--ogt-forest);
    background: #fff;
    border-color: var(--ogt-border);
    box-shadow: 0 8px 20px rgba(23,63,53,.06);
}
.ogt-button.secondary:hover { color: var(--ogt-forest); transform: translateY(-2px); border-color: rgba(40,84,71,.24); }
.ogt-button.gold { background: var(--ogt-gold); color: var(--ogt-forest); box-shadow: 0 10px 24px rgba(197,160,89,.18); }
.ogt-button.light { background: #fff; color: var(--ogt-forest); border-color: rgba(255,255,255,.14); }
.ogt-button.outline { border-color: rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.08); }
.ogt-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Top bar and header */
.ogt-topbar {
    background: var(--ogt-forest);
    color: rgba(255,255,255,.86);
    font-size: 13px;
}
.ogt-topbar .ogt-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 40px;
}
.ogt-topbar a { color: rgba(255,255,255,.88); }
.ogt-topbar a:hover { color: #fff; }
.ogt-topbar-links { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.ogt-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(252,250,247,.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ogt-border);
    transition: box-shadow .25s ease, background .25s ease;
}
.ogt-header.is-stuck { box-shadow: 0 10px 28px rgba(23,63,53,.08); background: rgba(252,250,247,.98); }
.ogt-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.ogt-brand { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.ogt-logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--ogt-forest);
    color: var(--ogt-gold);
    font-weight: 950;
    box-shadow: 0 10px 24px rgba(23,63,53,.18);
    position: relative;
}
.ogt-logo-mark::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(197,160,89,.8);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}
.ogt-logo-text strong { display: block; font-size: 20px; line-height: 1.1; letter-spacing: -.03em; color: var(--ogt-forest); }
.ogt-logo-text span { display: block; font-size: 12px; color: var(--ogt-muted); font-weight: 700; }
.ogt-nav { display: flex; align-items: center; gap: 20px; }
.ogt-nav .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ogt-nav li { position: relative; }
.ogt-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 12px;
    color: var(--ogt-ink);
    font-weight: 800;
    font-size: 14px;
    border-radius: 999px;
}
.ogt-nav a:hover, .ogt-nav .current-menu-item > a { background: var(--ogt-mint); color: var(--ogt-emerald); }
.ogt-header-cta { flex: 0 0 auto; }
.ogt-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--ogt-border);
    background: #fff;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.ogt-menu-toggle span,
.ogt-menu-toggle span::before,
.ogt-menu-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ogt-forest);
    position: relative;
    transition: transform .25s ease, opacity .25s ease;
}
.ogt-menu-toggle span::before, .ogt-menu-toggle span::after { content: ''; position: absolute; left: 0; }
.ogt-menu-toggle span::before { top: -7px; }
.ogt-menu-toggle span::after { top: 7px; }
body.ogt-menu-open .ogt-menu-toggle span { background: transparent; }
body.ogt-menu-open .ogt-menu-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.ogt-menu-open .ogt-menu-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.ogt-hero {
    position: relative;
    padding: 88px 0 82px;
    overflow: hidden;
    background: linear-gradient(112deg, var(--ogt-paper) 0%, var(--ogt-cream) 58%, var(--ogt-mint) 100%);
}
.ogt-hero::before,
.ogt-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, transparent 0 72%, rgba(197,160,89,.10) 72% 72.12%, transparent 72.12%);
    pointer-events: none;
}
.ogt-hero-bg-shape {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(197,160,89,.10);
    right: -260px;
    top: -230px;
    opacity: .8;
}
.ogt-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(420px, .92fr);
    gap: 64px;
    align-items: center;
}
.ogt-hero h1 {
    margin: 18px 0 18px;
    max-width: 800px;
    font-size: clamp(44px, 5.6vw, 74px);
    line-height: 1;
    letter-spacing: -.055em;
    color: var(--ogt-forest);
}
.ogt-hero h1 .ogt-gold-line { color: var(--ogt-gold); }
.ogt-hero-lead {
    max-width: 690px;
    margin: 0 0 30px;
    font-size: clamp(18px, 2vw, 21px);
    color: var(--ogt-muted);
}
.ogt-hero-note {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 26px;
    color: var(--ogt-muted);
    font-size: 14px;
    font-weight: 700;
}
.ogt-hero-note .dots { display: flex; }
.ogt-hero-note .dots i { width: 28px; height: 28px; border-radius: 50%; background: var(--ogt-emerald); border: 2px solid var(--ogt-paper); margin-left: -8px; box-shadow: 0 5px 12px rgba(23,63,53,.14); }
.ogt-hero-note .dots i:first-child { margin-left: 0; background: var(--ogt-forest); }
.ogt-hero-note .dots i:nth-child(2) { background: var(--ogt-gold); }
.ogt-hero-note .dots i:nth-child(3) { background: var(--ogt-emerald-2); }
.ogt-hero-visual { position: relative; }
.ogt-operations-photo {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: var(--ogt-mint);
    border: 1px solid rgba(40,84,71,.16);
    box-shadow: var(--ogt-shadow);
}
.ogt-operations-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 68% center; }
.ogt-operations-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(23,63,53,.82) 100%); pointer-events: none; }
.ogt-operations-caption { position: absolute; left: 26px; right: 26px; bottom: 24px; z-index: 2; color: #fff; }
.ogt-operations-caption span { display: block; margin-bottom: 5px; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ogt-operations-caption strong { display: block; max-width: 420px; font-size: 22px; line-height: 1.2; }
.ogt-operations-points { position: absolute; left: -28px; top: 34px; z-index: 3; display: grid; gap: 9px; }
.ogt-operations-points span { display: inline-flex; width: max-content; align-items: center; gap: 9px; padding: 10px 14px; border-radius: 999px; background: rgba(252,250,247,.96); border: 1px solid var(--ogt-border); box-shadow: 0 8px 24px rgba(23,63,53,.10); color: var(--ogt-forest); font-size: 13px; font-weight: 800; }
.ogt-operations-points span::before { content: '✓'; color: var(--ogt-gold); font-weight: 900; }

/* Cards */
.ogt-card {
    position: relative;
    border: 1px solid var(--ogt-border);
    background: rgba(255,255,255,.92);
    border-radius: var(--ogt-radius);
    padding: 28px;
    box-shadow: 0 8px 24px rgba(23,63,53,.06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
    overflow: hidden;
}
.ogt-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(231,239,234,.45), transparent 44%);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}
.ogt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(23,63,53,.11);
    border-color: rgba(40,84,71,.24);
    background: #fff;
}
.ogt-card:hover::before { opacity: 1; }
.ogt-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--ogt-mint);
    color: var(--ogt-gold);
    font-weight: 950;
    box-shadow: none;
    border: 1px solid var(--ogt-border);
    margin-bottom: 20px;
}
.ogt-card h3 { margin: 0 0 10px; font-size: 23px; line-height: 1.18; letter-spacing: -.035em; }
.ogt-card p { margin: 0; color: var(--ogt-muted); }
.ogt-card-link { margin-top: 22px; display: inline-flex; align-items: center; gap: 8px; font-weight: 900; color: var(--ogt-emerald); }
.ogt-card-link::after { content: '→'; transition: transform .2s ease; }
.ogt-card:hover .ogt-card-link::after { transform: translateX(4px); }

.ogt-audience-card {
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    min-height: 250px;
    border: 1px solid var(--ogt-border);
    box-shadow: var(--ogt-shadow-soft);
    position: relative;
    overflow: hidden;
}
.ogt-audience-card::after {
    content: '';
    width: 160px;
    height: 160px;
    border-radius: 50%;
    position: absolute;
    right: -70px;
    bottom: -70px;
    background: rgba(197,160,89,.18);
}
.ogt-audience-card strong { display: block; font-size: 28px; line-height: 1.04; margin: 0 0 12px; letter-spacing: -.05em; }
.ogt-audience-card span { display: inline-flex; margin-bottom: 20px; color: var(--ogt-emerald); font-weight: 900; }

.ogt-marquee {
    overflow: hidden;
    background: var(--ogt-forest);
    color: #fff;
    padding: 20px 0;
    white-space: nowrap;
}
.ogt-marquee-track { width: min(var(--ogt-max), calc(100% - 40px)); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 30px; align-items: center; }
.ogt-marquee span { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; color: rgba(255,255,255,.9); }
.ogt-marquee span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ogt-gold); }

.ogt-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.ogt-stat {
    padding: 28px 22px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--ogt-border);
    box-shadow: 0 14px 44px rgba(15,23,42,.08);
}
.ogt-stat strong { display: block; color: var(--ogt-forest); font-size: clamp(32px,4vw,48px); line-height: 1; letter-spacing: -.06em; }
.ogt-stat span { display: block; margin-top: 10px; color: var(--ogt-muted); font-weight: 800; }

.ogt-process {
    counter-reset: step;
    position: relative;
}
.ogt-process::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--ogt-border);
    opacity: .22;
}
.ogt-process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 36px;
    counter-increment: step;
}
.ogt-process-step:nth-child(even) .ogt-process-box { grid-column: 2; }
.ogt-process-step:nth-child(even) .ogt-process-space { grid-column: 1; grid-row: 1; }
.ogt-process-box {
    border-radius: 28px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--ogt-border);
    box-shadow: var(--ogt-shadow-soft);
    position: relative;
}
.ogt-process-box::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 19px;
    display: grid;
    place-items: center;
    background: var(--ogt-forest);
    color: var(--ogt-gold);
    font-weight: 950;
    top: 24px;
    right: 24px;
}
.ogt-process-box h3 { margin: 0 80px 10px 0; font-size: 25px; letter-spacing: -.04em; }
.ogt-process-box p { margin: 0; color: var(--ogt-muted); }

.ogt-feature-panel {
    border-radius: 34px;
    padding: 40px;
    background: var(--ogt-forest);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--ogt-shadow);
}
.ogt-feature-panel::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    right: -170px;
    top: -150px;
    background: rgba(197,160,89,.22);
}
.ogt-feature-panel h2, .ogt-feature-panel h3 { color: #fff; margin-top: 0; letter-spacing: -.045em; }
.ogt-feature-panel p { color: rgba(255,255,255,.76); }
.ogt-check-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.ogt-check-list li { display: flex; gap: 11px; align-items: flex-start; font-weight: 750; }
.ogt-check-list li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: var(--ogt-gold);
    color: var(--ogt-forest);
    font-weight: 950;
    flex: 0 0 auto;
    margin-top: 2px;
}

.ogt-case-card .label { display: inline-flex; color: var(--ogt-emerald); font-weight: 950; margin-bottom: 12px; }
.ogt-case-card .metric { display: inline-flex; float: right; background: var(--ogt-gold-soft); color: var(--ogt-forest); padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 950; }

.ogt-cta {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    padding: clamp(34px, 5vw, 60px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    color: #fff;
    background: var(--ogt-forest);
    box-shadow: var(--ogt-shadow);
}
.ogt-cta::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, rgba(255,255,255,.045), transparent 58%);
}
.ogt-cta > * { position: relative; z-index: 2; }
.ogt-cta h2 { margin: 12px 0 12px; font-size: clamp(32px, 5vw, 56px); line-height: 1.02; letter-spacing: -.055em; }
.ogt-cta p { color: rgba(255,255,255,.78); margin: 0; max-width: 720px; font-size: 18px; }

/* Page hero and content */
.ogt-page-hero {
    position: relative;
    padding: 80px 0 74px;
    overflow: hidden;
    background: linear-gradient(112deg, var(--ogt-cream), var(--ogt-mint));
}
.ogt-breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-bottom: 20px; color: var(--ogt-muted); font-size: 14px; font-weight: 800; position: relative; z-index: 2; }
.ogt-breadcrumb a { color: var(--ogt-emerald); }
.ogt-page-hero .ogt-container { position: relative; z-index: 2; }
.ogt-page-hero h1 { max-width: 880px; margin: 18px 0 14px; font-size: clamp(42px, 5.5vw, 72px); line-height: .98; letter-spacing: -.065em; color: var(--ogt-forest); }
.ogt-page-hero p { max-width: 760px; margin: 0; color: var(--ogt-muted); font-size: 19px; }
.ogt-page-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--ogt-muted);
}
.ogt-page-content h2, .ogt-page-content h3 { color: var(--ogt-ink); letter-spacing: -.04em; line-height: 1.1; }
.ogt-page-content h2 { font-size: 40px; margin: 38px 0 12px; }
.ogt-page-content h3 { font-size: 27px; margin: 28px 0 10px; }
.ogt-page-content p { margin: 0 0 18px; }
.ogt-page-content ul { padding-left: 22px; }
.ogt-page-content li { margin: 8px 0; }
.ogt-content-card { background: #fff; border: 1px solid var(--ogt-border); border-radius: 30px; padding: 36px; box-shadow: var(--ogt-shadow-soft); }

.ogt-service-detail {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(320px, .44fr);
    gap: 36px;
    align-items: start;
}
.ogt-service-aside { position: sticky; top: 120px; }
.ogt-aside-box { border-radius: 28px; background: #fff; border: 1px solid var(--ogt-border); box-shadow: var(--ogt-shadow-soft); padding: 28px; }
.ogt-aside-box h3 { margin-top: 0; letter-spacing: -.04em; }
.ogt-mini-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.ogt-mini-list li { padding: 12px 14px; background: var(--ogt-cream); border-radius: 14px; font-weight: 800; color: var(--ogt-forest); }

.ogt-contact-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1fr); gap: 34px; align-items: start; }
.ogt-contact-list { display: grid; gap: 16px; margin-top: 22px; }
.ogt-contact-item { padding: 20px; border-radius: 18px; background: #fff; border: 1px solid var(--ogt-border); box-shadow: 0 10px 30px rgba(15,23,42,.06); }
.ogt-contact-item span { display: block; color: var(--ogt-muted); font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.ogt-contact-item strong { display: block; margin-top: 4px; color: var(--ogt-forest); font-size: 18px; }
.ogt-form { background: #fff; border: 1px solid var(--ogt-border); border-radius: 30px; padding: 30px; box-shadow: var(--ogt-shadow-soft); }
.ogt-form-notice { margin-bottom: 18px; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--ogt-border); font-weight: 750; }
.ogt-form-notice.success { background: var(--ogt-mint); color: var(--ogt-forest); }
.ogt-form-notice.error { background: #FFF1ED; border-color: #EAC9BE; color: #7A3525; }
.ogt-field { display: grid; gap: 7px; margin-bottom: 14px; }
.ogt-field label { font-weight: 850; color: var(--ogt-forest); font-size: 14px; }
.ogt-field input, .ogt-field textarea, .ogt-field select { width: 100%; border: 1px solid rgba(17,24,39,.14); border-radius: 14px; padding: 13px 14px; background: var(--ogt-paper); color: var(--ogt-ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.ogt-field textarea { min-height: 130px; resize: vertical; }
.ogt-field input:focus, .ogt-field textarea:focus, .ogt-field select:focus { border-color: var(--ogt-emerald); box-shadow: 0 0 0 4px rgba(40,84,71,.10); }

.ogt-faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 14px; }
.ogt-faq-item { border-radius: 22px; background: #fff; border: 1px solid var(--ogt-border); box-shadow: 0 10px 32px rgba(15,23,42,.06); overflow: hidden; }
.ogt-faq-question { width: 100%; padding: 22px 24px; background: transparent; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; cursor: pointer; text-align: left; font-weight: 950; color: var(--ogt-forest); }
.ogt-faq-question::after { content: '+'; width: 32px; height: 32px; border-radius: 50%; background: var(--ogt-mint); display: grid; place-items: center; color: var(--ogt-emerald); flex: 0 0 auto; }
.ogt-faq-item.is-open .ogt-faq-question::after { content: '–'; background: var(--ogt-gold); color: var(--ogt-forest); }
.ogt-faq-answer { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.ogt-faq-answer p { padding: 0 24px 22px; margin: 0; color: var(--ogt-muted); }

/* Footer */
.ogt-footer { background: #12362E; color: rgba(255,255,255,.76); position: relative; overflow: hidden; }
.ogt-footer::before { content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(197,160,89,.10); right: -240px; top: -260px; }
.ogt-footer-main { position: relative; padding: 76px 0 46px; display: grid; grid-template-columns: minmax(0,1.1fr) repeat(3,minmax(0,.7fr)); gap: 34px; }
.ogt-footer h3, .ogt-footer h4 { color: #fff; margin: 0 0 16px; letter-spacing: -.035em; }
.ogt-footer p { margin: 0; }
.ogt-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ogt-footer a { color: rgba(255,255,255,.78); }
.ogt-footer a:hover { color: #fff; }
.ogt-footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding: 20px 0; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 14px; position: relative; }

/* WordPress defaults */
.alignwide { max-width: var(--ogt-max); }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text { color: var(--ogt-muted); font-size: 14px; }
.sticky, .bypostauthor { display: block; }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }

/* Animations */
.ogt-animate { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.ogt-animate.ogt-visible { opacity: 1; transform: translateY(0); }
.ogt-animate-scale { transform: translateY(20px) scale(.98); }
.ogt-animate-scale.ogt-visible { transform: translateY(0) scale(1); }
.ogt-delay-1 { transition-delay: .08s; }
.ogt-delay-2 { transition-delay: .16s; }
.ogt-delay-3 { transition-delay: .24s; }
.ogt-delay-4 { transition-delay: .32s; }
@keyframes ogt-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .ogt-animate { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
    .ogt-hero-inner { grid-template-columns: 1fr; }
    .ogt-hero-visual { max-width: 620px; }
    .ogt-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .ogt-footer-main { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .ogt-header-cta { display: none; }
}
@media (max-width: 920px) {
    .ogt-menu-toggle { display: inline-flex; }
    .ogt-nav {
        position: fixed;
        top: 122px;
        left: 20px;
        right: 20px;
        padding: 18px;
        background: rgba(255,253,247,.98);
        border: 1px solid var(--ogt-border);
        border-radius: 24px;
        box-shadow: var(--ogt-shadow);
        transform: translateY(-18px);
        opacity: 0;
        visibility: hidden;
        transition: .25s ease;
        display: block;
    }
    body.ogt-menu-open .ogt-nav { opacity: 1; visibility: visible; transform: translateY(0); }
    .ogt-nav .menu { display: grid; gap: 4px; }
    .ogt-nav a { width: 100%; justify-content: space-between; }
    .ogt-grid-2, .ogt-grid-3, .ogt-contact-grid, .ogt-service-detail { grid-template-columns: 1fr; }
    .ogt-stats { grid-template-columns: repeat(2,1fr); }
    .ogt-process::before { left: 26px; }
    .ogt-process-step, .ogt-process-step:nth-child(even) .ogt-process-box { grid-template-columns: 1fr; }
    .ogt-process-step:nth-child(even) .ogt-process-box { grid-column: auto; }
    .ogt-process-step:nth-child(even) .ogt-process-space { display: none; }
    .ogt-process-space { display: none; }
    .ogt-process-box { margin-left: 52px; }
    .ogt-cta { grid-template-columns: 1fr; }
    .ogt-service-aside { position: static; }
}
@media (max-width: 720px) {
    .ogt-container { width: min(100% - 28px, var(--ogt-max)); }
    .ogt-topbar .ogt-container { align-items: flex-start; flex-direction: column; padding: 8px 0; }
    .ogt-header-inner { min-height: 72px; }
    .ogt-nav { top: 118px; }
    .ogt-section { padding: 76px 0; }
    .ogt-section-tight { padding: 54px 0; }
    .ogt-hero { padding: 70px 0 62px; }
    .ogt-hero h1 { font-size: clamp(42px, 13vw, 62px); }
    .ogt-actions { align-items: stretch; flex-direction: column; }
    .ogt-button { width: 100%; }
    .ogt-operations-photo img { aspect-ratio: 4 / 4.7; }
    .ogt-operations-points { position: relative; left: auto; top: auto; margin-top: 14px; }
    .ogt-operations-points span { width: 100%; }
    .ogt-grid-4, .ogt-stats { grid-template-columns: 1fr; }
    .ogt-card, .ogt-content-card, .ogt-form { padding: 24px; }
    .ogt-footer-main { grid-template-columns: 1fr; }
    .ogt-footer-bottom { flex-direction: column; }
    .ogt-brand { min-width: auto; }
    .ogt-logo-text span { display: none; }
}
