@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary:      #1c2157;
    --primary-mid:  #253080;
    --secondary:    #2f5de3;
    --secondary-hover: #1e46c7;
    --text-main:    #1c2157;
    --text-body:    #2c3566;
    --text-light:   #5a6498;
    --bg-light:     #f5f3ee;
    --bg-mid:       #ede9e0;
    --white:        #fafaf8;
    --border:       #d8d4cc;
    --card-bg:      #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garant', serif;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1rem;
}

h1 { font-size: 4rem; color: var(--primary); letter-spacing: -0.5px; }
h2.section-title {
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    position: relative;
}
h2.section-title::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--secondary);
}
.text-center h2.section-title::after,
h2.section-title.text-center::after { margin: 0 auto; left: 50%; transform: translateX(-30px); }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn-primary { background: var(--primary); color: #fff; border: 2px solid var(--primary); }
.btn-primary:hover { background: var(--secondary); border-color: var(--secondary); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-full { width: 100%; text-align: center; padding: 1rem; font-size: 0.88rem; }

/* Navbar */
.navbar {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; overflow: hidden; height: 44px; }
.logo-img { height: 100px; width: auto; display: block; mix-blend-mode: multiply; }
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a { font-size: 0.88rem; font-weight: 500; letter-spacing: 0.5px; color: var(--text-body); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active { border-bottom: 1px solid var(--primary); padding-bottom: 2px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 0.35rem; cursor: pointer; }
.dropdown-caret { font-size: 0.6rem; transition: transform 0.25s ease; }
.nav-dropdown:hover .dropdown-caret { transform: rotate(180deg); }
.dropdown-menu {
    visibility: hidden; position: absolute; top: calc(100% + 14px); left: 50%;
    transform: translateX(-50%); background: var(--white);
    border: 1px solid var(--border); min-width: 290px; list-style: none;
    padding: 0.75rem 0; z-index: 200; opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s; box-shadow: 0 8px 32px rgba(28,33,87,0.08);
}
.dropdown-menu::before { content: ''; position: absolute; top: -40px; left: -20px; right: -20px; height: 40px; background: transparent; }
.nav-dropdown:hover .dropdown-menu { visibility: visible; opacity: 1; pointer-events: all; }
.dropdown-menu li a {
    display: block; padding: 0.6rem 1.5rem; font-size: 0.88rem; font-weight: 500;
    color: var(--text-body); transition: color 0.15s, background 0.15s;
    border-left: 2px solid transparent;
}
.dropdown-menu li a:hover, .dropdown-menu li a.active {
    color: var(--secondary); border-left-color: var(--secondary);
    background: var(--bg-light);
}

/* Hero */
.hero-home { padding: 5rem 0 7rem; border-bottom: 1px solid var(--border); }
.hero-home h1 { font-size: 5rem; margin-bottom: 2rem; }
.hero-sub {
    font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 300;
    color: var(--text-light); line-height: 1.8; max-width: 760px; margin-bottom: 1.5rem;
}
.hero-desc {
    font-size: 1rem; color: var(--text-body); line-height: 1.8;
    max-width: 680px; margin-bottom: 2.5rem;
    padding-left: 1.25rem; border-left: 2px solid var(--secondary);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page Hero */
.page-hero { padding: 5.5rem 0 4.5rem; border-bottom: 1px solid var(--border); background: var(--white); }
.page-hero-dark { background: var(--primary); border-bottom: none; }
.page-hero-content { max-width: 700px; }
.page-label {
    display: block; font-family: 'Inter', sans-serif; font-size: 0.75rem;
    font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--secondary); margin-bottom: 1.25rem;
}
.page-hero-dark .page-label { color: rgba(255,255,255,0.5); }
.page-hero h1 { margin-bottom: 1.5rem; }
.page-hero-dark h1 { color: #fff; }

/* Sections */
.section { padding: 6rem 0; }
.bg-light { background-color: var(--bg-light); }
.bg-primary { background-color: var(--primary); }
.section-subtitle { max-width: 800px; margin: 0 auto 3.5rem; font-size: 1.1rem; color: var(--text-light); line-height: 1.8; }
.cta-section { background: var(--bg-light); border-top: 1px solid var(--border); }

/* Grids */
.double-column { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; margin-top: 3rem; }

/* Cards */
.card {
    background: var(--card-bg); padding: 2.5rem 2rem;
    border: 1px solid var(--border); border-left: 3px solid var(--secondary);
    transition: border-color 0.2s;
}
.card:hover { border-color: var(--secondary); }
.card h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 0.75rem; }
.card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }
.card-numbered { position: relative; padding-top: 3rem; }
.card-number {
    position: absolute; top: 1.5rem; right: 1.5rem;
    font-family: 'Cormorant Garant', serif; font-size: 2.5rem;
    font-weight: 700; color: var(--border); line-height: 1;
}

/* Feature list */
.feature-list { list-style: none; }
.feature-list li {
    padding: 0.85rem 0 0.85rem 1.5rem; border-bottom: 1px solid var(--border);
    position: relative;
}
.feature-list li::before { content: '—'; position: absolute; left: 0; color: var(--secondary); }

/* Focus Cards */
.focus-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.focus-card {
    display: flex; gap: 1.5rem; background: var(--card-bg);
    padding: 1.5rem; border: 1px solid var(--border);
    border-left: 3px solid var(--secondary); transition: background 0.2s;
}
.focus-card:hover { background: var(--bg-light); }
.focus-card-link { text-decoration: none; color: inherit; cursor: pointer; }
.focus-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; margin-top: 0.2rem; }
.focus-body h3 { font-size: 1.25rem; color: var(--primary); margin-bottom: 0.75rem; }
.focus-body p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1.2rem; line-height: 1.7; }
.focus-tags { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; list-style: none; }
.focus-tags li { font-size: 0.8rem; font-weight: 600; color: var(--text-light); letter-spacing: 0.3px; }
.focus-tags li::before { content: '·'; margin-right: 0.4rem; color: var(--secondary); }
.focus-cta { display: inline-block; margin-top: 1rem; font-size: 0.85rem; font-weight: 600; color: var(--secondary); letter-spacing: 0.5px; }

/* Focus Detail */
.focus-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 5rem; align-items: start; }
.focus-detail-main p { color: var(--text-light); line-height: 1.9; margin-bottom: 1.5rem; }
.focus-detail-lead {
    font-size: 1.15rem !important; color: var(--text-body) !important;
    border-left: 3px solid var(--secondary); padding-left: 1.5rem;
    margin-bottom: 2.5rem !important; line-height: 1.85;
}
.focus-detail-list { list-style: none; margin-bottom: 2rem; }
.focus-detail-list li {
    padding: 0.85rem 0 0.85rem 1.5rem; border-bottom: 1px solid var(--border);
    position: relative; color: var(--text-body); font-size: 1rem; line-height: 1.5;
}
.focus-detail-list li::before { content: '—'; position: absolute; left: 0; color: var(--secondary); }
.focus-detail-close { margin-top: 2rem; font-family: 'Cormorant Garant', serif; font-size: 1.1rem; color: var(--text-light) !important; font-style: italic; }

/* Sidebar */
.focus-detail-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 100px; }
.sidebar-card { background: var(--card-bg); border: 1px solid var(--border); padding: 1.75rem; }
.sidebar-card h4 { font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 1rem; }
.sidebar-card-accent { background: var(--bg-light); border-left: 3px solid var(--secondary); }
.sidebar-list { list-style: none; }
.sidebar-list li { padding: 0.5rem 0; color: var(--text-body); font-size: 0.92rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.5rem; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li::before { content: '—'; color: var(--secondary); font-size: 0.9rem; }

/* Focus Nav Grid */
.focus-nav-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; margin-top: 1rem; }
.focus-nav-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: 0.75rem; padding: 1.5rem 1rem; background: var(--card-bg);
    border: 1px solid var(--border); color: var(--text-body);
    font-size: 0.85rem; font-weight: 500; transition: all 0.2s; line-height: 1.35;
}
.focus-nav-card:hover { border-color: var(--secondary); color: var(--secondary); background: var(--bg-light); }
.focus-nav-icon { font-size: 1.5rem; }

/* Capabilities */
.capabilities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.capability-card {
    display: flex; gap: 1.25rem; background: var(--card-bg); padding: 2rem;
    border: 1px solid var(--border); border-top: 2px solid var(--secondary);
    transition: background 0.2s;
}
.capability-card:hover { background: var(--bg-light); }
.capability-card-wide { grid-column: span 3; }
.capability-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }
.capability-body h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 0.6rem; }
.capability-body p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* Deliver Steps */
.deliver-step { text-align: center; padding: 2rem 1.5rem; }
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.deliver-step h4 { font-family: 'Cormorant Garant', serif; font-size: 1.35rem; color: var(--primary); margin-bottom: 0.75rem; }
.deliver-step p { color: var(--text-light); font-size: 0.95rem; }

/* Content Box */
.content-box { padding: 2rem; border: 1px solid rgba(255,255,255,0.2); }
.content-box h4 { color: #fff; font-size: 1.25rem; margin-bottom: 0.5rem; }
.content-box p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 4rem; align-items: start; }
.contact-form-wrap { background: var(--card-bg); border: 1px solid var(--border); padding: 3rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1.5rem; }
.form-group label { font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
    border: 1px solid var(--border); border-radius: 0; padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text-main);
    outline: none; transition: border-color 0.2s; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--secondary); }
.form-group textarea { resize: vertical; }
.form-success { margin-top: 1rem; color: #1a8b4a; font-weight: 600; font-size: 0.9rem; }

/* Contact Info */
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.info-block { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-block h4 { font-family: 'Cormorant Garant', serif; color: var(--primary); font-size: 1.1rem; margin-bottom: 0.25rem; }
.info-block p { color: var(--text-light); font-size: 0.9rem; }
.highlight-block {
    background: var(--bg-light); border: 1px solid var(--border);
    border-left: 3px solid var(--secondary); padding: 1.5rem;
    flex-direction: column; gap: 0;
}
.highlight-block h4 { margin-bottom: 0.75rem; }

/* Dummy Placeholder */
.dummy-placeholder {
    background: var(--bg-light); border: 1px solid var(--border);
    padding: 5rem 3rem; max-width: 600px; margin: 0 auto; text-align: center;
}
.dummy-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.dummy-placeholder h2 { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.dummy-placeholder p { color: var(--text-light); font-size: 1rem; line-height: 1.8; }

/* Footer */
.footer { background: var(--primary); color: #fff; padding: 4rem 0 2rem; font-size: 0.9rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 2rem; }
.footer-brand h3 { font-family: 'Cormorant Garant', serif; font-size: 1.5rem; margin-bottom: 0.5rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links, .footer-legal { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a, .footer-legal a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.footer-links a:hover, .footer-legal a:hover { color: #fff; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 4px; transition: background 0.2s; z-index: 301; flex-shrink: 0; }
.hamburger:hover { background: var(--bg-light); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 1px; transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease; transform-origin: center; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 299; pointer-events: none; }
.mobile-menu.is-open { pointer-events: all; }
.mobile-menu-backdrop { position: absolute; inset: 0; background: rgba(28,33,87,0.5); opacity: 0; transition: opacity 0.3s ease; }
.mobile-menu.is-open .mobile-menu-backdrop { opacity: 1; }
.mobile-menu-panel { position: absolute; top: 0; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--secondary); box-shadow: 0 12px 40px rgba(28,33,87,0.15); padding: 5rem 1.5rem 2rem; transform: translateY(-100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); max-height: 100vh; overflow-y: auto; }
.mobile-menu.is-open .mobile-menu-panel { transform: translateY(0); }
.mobile-nav-links { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.mobile-nav-links li { border-bottom: 1px solid var(--border); }
.mobile-nav-links li:last-child { border-bottom: none; }
.mobile-nav-links > li > a { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0.25rem; font-size: 1rem; font-weight: 600; color: var(--primary); text-decoration: none; transition: color 0.2s; }
.mobile-nav-links > li > a:hover, .mobile-nav-links > li > a.active { color: var(--secondary); }
.mobile-dropdown-toggle { cursor: pointer; }
.mobile-dropdown-caret { font-size: 0.7rem; color: var(--text-light); transition: transform 0.25s ease; }
.mobile-dropdown-toggle.open .mobile-dropdown-caret { transform: rotate(180deg); }
.mobile-submenu { display: none; list-style: none; padding: 0 0 0.5rem 1rem; margin: 0; }
.mobile-submenu.open { display: block; }
.mobile-submenu li a { display: block; padding: 0.6rem 0.25rem; font-size: 0.9rem; font-weight: 500; color: var(--text-body); text-decoration: none; border-bottom: 1px solid var(--bg-mid); transition: color 0.2s; }
.mobile-submenu li:last-child a { border-bottom: none; }
.mobile-submenu li a:hover { color: var(--secondary); }
.mobile-submenu li a.active { color: var(--secondary); font-weight: 600; }
.mobile-menu-cta { display: block; text-align: center; padding: 0.9rem 1.5rem; background: var(--primary); color: #fff !important; font-weight: 700; font-size: 0.88rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.mobile-menu-cta:hover { background: var(--secondary); }

/* Responsive */
@media (max-width: 900px) {
    .nav-links { display: none !important; }
    .nav-container > .btn { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; }
    h1 { font-size: 2.8rem; }
    h2.section-title { font-size: 2rem; }
    .hero-home { padding: 5rem 0 4rem; }
    .hero-home h1 { font-size: 3rem; }
    .page-hero { padding: 4rem 0 3rem; }
    .section { padding: 3.5rem 0; }
    .double-column, .grid-3, .grid-2, .focus-grid, .contact-layout, .capabilities-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .capability-card-wide { grid-column: span 1; }
    .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .focus-card { flex-direction: column; gap: 1rem; }
    .focus-detail-layout { grid-template-columns: 1fr; gap: 2rem; }
    .focus-detail-sidebar { position: static; }
    .focus-nav-grid { grid-template-columns: repeat(2,1fr); }
    .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-links, .footer-legal { flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 1.1rem; }
    h1 { font-size: 2.2rem; }
    h2.section-title { font-size: 1.75rem; }
    .hero-home { padding: 3.5rem 0 3rem; }
    .hero-home h1 { font-size: 2.2rem; }
    .page-hero { padding: 3rem 0 2.5rem; }
    .section { padding: 2.5rem 0; }
    .card, .capability-card, .focus-card { padding: 1.5rem 1.25rem; }
    .btn { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
    .hero-actions { flex-direction: column; gap: 0.75rem; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .dummy-placeholder { padding: 3rem 1.5rem; }
    .footer { padding: 2.5rem 0 1.5rem; }
    .footer-links, .footer-legal { flex-direction: column; gap: 0.5rem; }
    .focus-nav-grid { grid-template-columns: 1fr; }
}
