/* ============ Reset & Base ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #0b1e3f;
    --navy-2: #112a55;
    --orange: #f57c1f;
    --orange-dark: #d96714;
    --ink: #1a1a1a;
    --muted: #5b6271;
    --line: #e6e8ee;
    --bg: #ffffff;
    --bg-soft: #f6f8fc;
    --bg-dark: #0b1e3f;
    --radius: 10px;
    --shadow-sm: 0 2px 8px rgba(11, 30, 63, 0.06);
    --shadow-md: 0 8px 24px rgba(11, 30, 63, 0.10);
    --shadow-lg: 0 20px 50px rgba(11, 30, 63, 0.18);
    --max: 1200px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    line-height: 1.2;
    font-weight: 700;
}

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


/* ============ Header ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(11, 30, 63, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    box-sizing: border-box;
}

.header-inner > * { align-self: center; }

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.logo-mark::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    letter-spacing: 0.2px;
}

.logo-sub {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.main-nav ul {
    display: flex;
    gap: 8px;
    align-items: center;
}

.main-nav a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.main-nav a:hover { color: var(--orange); }

.main-nav a.active {
    color: var(--orange);
    background: rgba(245, 124, 31, 0.08);
}

.menu-toggle {
    display: none;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    border-radius: 8px;
    flex-shrink: 0;
}

.menu-toggle:active { background: rgba(245, 124, 31, 0.12); }

.menu-toggle span {
    display: block;
    height: 2.5px;
    width: 22px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============ Buttons ============ */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 6px 18px rgba(245, 124, 31, 0.35);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(245, 124, 31, 0.45);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}


/* ============ Hero ============ */
.hero {
    position: relative;
    background:
        linear-gradient(135deg, rgba(11, 30, 63, 0.92) 0%, rgba(17, 42, 85, 0.92) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.05'%3E%3Cpath d='M0 30h60M30 0v60'/%3E%3C/g%3E%3C/svg%3E");
    color: #fff;
    padding: 110px 0 130px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 124, 31, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; }

.hero-content { max-width: 760px; }

.hero-eyebrow {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(245, 124, 31, 0.15);
    color: var(--orange);
    border: 1px solid rgba(245, 124, 31, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 span { color: var(--orange); }

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 38px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }


/* ============ Highlights ============ */
.highlights {
    background: var(--bg-soft);
    padding: 60px 0;
    border-bottom: 1px solid var(--line);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.highlight { text-align: center; }

.highlight-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.highlight-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}


/* ============ Sections ============ */
.section { padding: 100px 0; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-head h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
}

.section-head p {
    font-size: 1.05rem;
    color: var(--muted);
}

.category-title {
    font-size: 1.5rem;
    margin: 56px 0 28px;
    padding-left: 18px;
    border-left: 5px solid var(--orange);
}

.category-title:first-of-type { margin-top: 0; }


/* ============ Product Grid ============ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card:hover::before { transform: scaleX(1); }

.product-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(11, 30, 63, 0.05), rgba(245, 124, 31, 0.08));
    color: var(--navy);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    transition: background 0.3s, color 0.3s;
}

.product-icon svg { width: 36px; height: 36px; }

.product-card:hover .product-icon {
    background: var(--navy);
    color: var(--orange);
}

.product-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.6;
}


/* ===== Photo card variant ===== */
.product-card.has-photo { padding: 0; }

.product-photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-soft);
    position: relative;
}

.product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card.has-photo:hover .product-photo img {
    transform: scale(1.06);
}

.product-body { padding: 24px 26px 28px; }

.product-body h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.product-body p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.6;
}


/* ============ Page Hero (inner pages) ============ */
.page-hero {
    background: linear-gradient(135deg, rgba(11, 30, 63, 0.94) 0%, rgba(17, 42, 85, 0.94) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.05'%3E%3Cpath d='M0 30h60M30 0v60'/%3E%3C/g%3E%3C/svg%3E");
    color: #fff;
    padding: 90px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(245, 124, 31, 0.2), transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    left: -120px;
    bottom: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(245, 124, 31, 0.15), transparent 70%);
    border-radius: 50%;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin: 18px 0 18px;
    letter-spacing: -0.5px;
}

.page-hero h1 span { color: var(--orange); }

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
}


/* ============ About: Story + Stats ============ */
.section-alt { background: var(--bg-soft); }

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text .section-eyebrow { margin-bottom: 16px; }

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 22px;
}

.about-text p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text strong { color: var(--navy); font-weight: 700; }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}


/* ============ Founders ============ */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 920px;
    margin: 0 auto;
}

.founder-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
}

.founder-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.founder-photo {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--bg-soft) 0%, #e9eef7 100%);
    position: relative;
    overflow: hidden;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.founder-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
    z-index: 1;
}

.founder-placeholder svg {
    width: 80px;
    height: 80px;
    color: #bcc3d4;
}

.founder-placeholder span {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #98a0b3;
}

.founder-info {
    padding: 26px 28px 30px;
    text-align: center;
}

.founder-info h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.founder-role {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

.founder-info p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}


/* ============ Values Grid ============ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(245, 124, 31, 0.4);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(11, 30, 63, 0.06), rgba(245, 124, 31, 0.1));
    color: var(--orange);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.value-icon svg { width: 30px; height: 30px; }

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.65;
}


/* ============ Filter Bar (Products page) ============ */
.filter-bar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    position: sticky;
    top: 76px;
    z-index: 50;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 10px 22px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.filter-tab:hover {
    background: rgba(245, 124, 31, 0.08);
    color: var(--orange);
    border-color: rgba(245, 124, 31, 0.3);
}

.filter-tab.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}


/* ============ Products page extras ============ */
.products-page-section { padding-top: 60px; }

.category-block {
    margin-bottom: 60px;
    transition: opacity 0.3s;
}

.category-block:last-of-type { margin-bottom: 0; }

.category-block.is-hidden { display: none; }

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(11, 30, 63, 0.92);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 50px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.product-features {
    list-style: none;
    margin: 14px 0 18px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
}

.product-features li {
    font-size: 0.82rem;
    color: var(--muted);
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(-45deg);
}

.product-cta {
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: gap 0.2s, color 0.2s;
}

.product-cta:hover {
    color: var(--orange-dark);
    letter-spacing: 0.5px;
}

.empty-state {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    padding: 40px 0;
}


/* ============ Contact: Phone Spotlight (HIGHLIGHTED) ============ */
.phone-spotlight {
    margin-top: -50px;
    position: relative;
    z-index: 5;
    padding-bottom: 30px;
}

.phone-spotlight-inner {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(11, 30, 63, 0.18);
    padding: 50px 40px 44px;
    border: 1px solid var(--line);
}

.phone-spotlight-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 32px;
}

.phone-spotlight-eyebrow {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.phone-spotlight-head h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    margin-bottom: 10px;
}

.phone-spotlight-head p {
    color: var(--muted);
    font-size: 1rem;
}

.phone-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 880px;
    margin: 0 auto;
}

.phone-card {
    display: flex;
    align-items: center;
    gap: 22px;
    background: linear-gradient(135deg, #fff7ef 0%, #ffefdc 100%);
    border: 2px solid rgba(245, 124, 31, 0.2);
    border-radius: 14px;
    padding: 24px 26px;
    color: var(--ink);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
}

.phone-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.phone-card > * { position: relative; z-index: 1; }

.phone-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(245, 124, 31, 0.3);
    border-color: var(--orange);
}

.phone-card:hover::before { opacity: 1; }

.phone-card:hover,
.phone-card:hover .phone-card-number,
.phone-card:hover .phone-card-label,
.phone-card:hover .phone-card-action { color: #fff; }

.phone-card:hover .phone-card-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.phone-card-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 16px;
    background: var(--orange);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 18px rgba(245, 124, 31, 0.35);
    transition: background 0.3s, color 0.3s;
}

.phone-card-icon svg { width: 28px; height: 28px; }

.phone-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.phone-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
}

.phone-card-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 1.7rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.phone-card-action {
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.phone-spotlight-extra {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

.extra-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-soft);
    border-radius: 50px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--line);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.extra-link svg { width: 18px; height: 18px; }

.extra-link:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}


/* ============ Contact: Form + Info ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-wrap h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    margin: 12px 0 12px;
}

.contact-form-intro {
    color: var(--muted);
    margin-bottom: 28px;
}

.contact-form {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.form-row .form-field { margin-bottom: 0; }
.form-row + .form-field { margin-top: 18px; }

.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
    letter-spacing: 0.2px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(245, 124, 31, 0.15);
}

.form-field textarea { resize: vertical; min-height: 110px; }

.form-submit {
    width: 100%;
    margin-top: 8px;
    border: none;
    font-family: inherit;
}

.form-note {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(46, 164, 79, 0.1);
    color: #1e7a3a;
    font-size: 0.9rem;
    text-align: center;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.info-grid .info-card {
    text-align: center;
}

.info-grid .info-icon {
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 26px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(11, 30, 63, 0.06), rgba(245, 124, 31, 0.12));
    color: var(--orange);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.info-icon svg { width: 22px; height: 22px; }

.info-card h5 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 6px;
}

.info-card p strong { color: var(--navy); font-weight: 700; }

.info-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
}

.info-link:hover { color: var(--orange-dark); }


/* ============ Map ============ */
.map-section {
    padding-bottom: 100px;
}

.map-head {
    text-align: center;
    margin-bottom: 32px;
}

.map-head h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    margin-top: 10px;
}

.map-embed {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
}

.map-embed iframe { display: block; }


/* ============ CTA Band ============ */
.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 124, 31, 0.2), transparent 70%);
    border-radius: 50%;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-inner h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 6px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}


/* ============ Footer ============ */
.site-footer {
    background: #08182f;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 50px;
}

.footer-col .logo { margin-bottom: 18px; }
.footer-col .logo-name,
.footer-col .logo-sub { color: #fff; }
.footer-col .logo-sub { color: rgba(255, 255, 255, 0.5); }

.footer-tag {
    font-size: 0.95rem;
    max-width: 360px;
    line-height: 1.7;
}

.footer-col h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange); }
.footer-col p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 8px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}


/* ============ Responsive ============ */
@media (max-width: 900px) {
    .site-header { position: relative; }
    .header-inner { height: 68px; padding: 0 24px; }

    .menu-toggle { display: flex; }

    .main-nav {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 16px 24px 24px;
        box-shadow: var(--shadow-md);
    }

    .main-nav.is-open { display: block; }

    .main-nav ul {
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
    }

    .main-nav a {
        padding: 14px 16px;
        border-radius: 8px;
    }

    .hero { padding: 80px 0 90px; }

    .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

    .section { padding: 70px 0; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .cta-inner { flex-direction: column; text-align: center; }

    .page-hero { padding: 70px 0 80px; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid { grid-template-columns: repeat(2, 1fr); }

    .phone-spotlight-inner { padding: 36px 24px 32px; }
    .phone-cards { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; max-width: 460px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-row .form-field { margin-bottom: 18px; }
    .map-embed { height: 340px; }
}

@media (max-width: 600px) {
    .founders-grid { grid-template-columns: 1fr; max-width: 420px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .product-features { grid-template-columns: 1fr; }
    .filter-bar { top: 68px; padding: 16px 0; }
    .filter-tab { padding: 8px 16px; font-size: 12px; }
    .phone-card { flex-direction: column; text-align: center; gap: 14px; padding: 22px 18px; }
    .contact-form { padding: 22px; }
}

@media (max-width: 480px) {
    .logo-text { display: none; }
    .product-grid { grid-template-columns: 1fr; }
    .hero-cta { width: 100%; }
    .hero-cta .btn { flex: 1; text-align: center; }
}
