:root {
    --bg-page: #f6f7fb;
    --bg-surface: #ffffff;
    --bg-soft: #edf3f5;
    --text-main: #111827;
    --text-muted: #6b7280;
    --border-subtle: #d1d5db;
    --accent: #469aa4;          /* primary logo color */
    --accent-dark: #33757d;
    --accent-soft: #d9eef1;
    --shadow-soft: 0 12px 28px rgba(15, 23, 42, 0.12);
  }
  
  * { box-sizing: border-box; }
  
  html { scroll-behavior: smooth; }
  
  body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-page);
    color: var(--text-main);
  }
  
  a {
    color: var(--accent-dark);
    text-decoration: none;
  }
  
  a:hover { text-decoration: underline; }
  
  .page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  section { padding: 3.5rem 0; }
  
  @media (max-width: 768px) {
    section { padding: 3rem 0; }
  }
  
  .section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    color: var(--accent-dark);
    font-weight: 600;
  }
  
  .section-title {
    margin: 0.35rem 0 0.75rem;
    font-size: 1.6rem;
    line-height: 1.25;
  }
  
  .section-lead {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    max-width: 36rem;
    font-size: 0.95rem;
  }
  
  /* NAVBAR */
  
  .navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 247, 251, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
  }
  
  .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }
  
  /* --- BRAND LOGO + TEXT --- */
    @font-face {
        font-family: 'UrbanoCondensed';
        src: url('../fonts/Urbano-BoldCondensed.woff2') format('woff2'),
            url('../fonts/Urbano-BoldCondensed.woff')  format('woff');
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }

    .brand {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        text-decoration: none;
    }
    
    .brand-logo {
        height: 34px;
        width: auto;
        display: block;
    }
    
    .brand-text {
        font-family: 'UrbanoCondensed', sans-serif;
        font-size: 34px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--accent-dark);
        line-height: 1;
      }
    
    /* Smaller on mobile */
    @media (max-width: 480px) {
        .brand-logo {
        height: 30px;
        }
        .brand-text {
        font-size: 1.05rem;
        }
    }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
  }
  
  .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    padding: 0.25rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }
  
  .nav-link i {
    font-size: 1rem;
    color: #9ca3af;
  }
  
  .nav-link:hover {
    color: var(--accent-dark);
    text-decoration: none;
  }
  
  .nav-cta {
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--accent-dark);
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }
  
  .nav-cta i { font-size: 1rem; }
  
  .nav-cta:hover {
    text-decoration: none;
    filter: brightness(1.03);
  }
  
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;      /* square */
    height: 40px;     /* square */
    padding: 0;
    margin-left: auto;
    border: 1px solid #d1d5db;
    background: #ffffff;
    border-radius: 15px;   /* slight rounding, set to 0 for perfect square */
    cursor: pointer;
    
  }
  
    /* Three-line icon */
    .nav-toggle span {
    position: relative;
    display: block;
    width: 20px;
    height: 2.2px;
    background: #111827;
    border-radius: 2px;
  }
  
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #374151;
    left: 0;
  }
  
  .nav-toggle span::before { top: -5px; }
  .nav-toggle span::after  { top:  5px; }
  
  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      inset: 64px 0 auto 0;
      background: #ffffff;
      border-bottom: 1px solid #e5e7eb;
      padding: 0.75rem 1.5rem;
      flex-direction: column;
      align-items: flex-start;
      display: none;
    }
    .nav-links.open { display: flex; }
    .nav-cta {
      align-self: stretch;
      justify-content: center;
    }
    .nav-toggle { display: inline-flex; }
  }
  
  /* HERO */
  
  .hero {
    background: radial-gradient(circle at top left, #d9eef1 0, #f6f7fb 55%, #f6f7fb 100%);
    padding: 3rem 0 3.4rem;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
    gap: 2.3rem;
    align-items: center;
  }
  
  @media (max-width: 900px) {
    .hero-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }
  
  .hero-kicker {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-dark);
    margin-bottom: 0.4rem;
  }
  
  .hero-slogan {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 0.8rem;
    color: #111827;
    margin-bottom: 0.75rem;
  }
  
  .hero-slogan i { color: var(--accent-dark); }
  
  .hero-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin: 0 0 0.7rem;
    line-height: 1.15;
  }
  
  .hero-subtitle {
    margin: 0 0 1.3rem;
    color: var(--text-muted);
    max-width: 32rem;
    font-size: 0.95rem;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.45rem;
  }
  
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    border: 1px solid var(--accent-dark);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    gap: 0.35rem;
  }
  
  .btn-primary i { font-size: 1.1rem; }
  
  .btn-primary:hover {
    text-decoration: none;
    filter: brightness(1.03);
    cursor: pointer;
  }
  
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.15rem;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: rgba(255, 255, 255, 0.9);
    color: #111827;
    font-weight: 500;
    font-size: 0.9rem;
    gap: 0.35rem;
  }
  
  .btn-secondary i { font-size: 1.1rem; }
  
  .btn-secondary:hover {
    text-decoration: none;
    background: #ffffff;
  }
  
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 32rem;
  }
  
  @media (max-width: 600px) {
    .hero-meta {
      grid-template-columns: minmax(0, 1fr);
    }
  }
  
  .hero-meta-block {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
  }
  
  .hero-meta-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    flex-shrink: 0;
    font-size: 1.05rem;
  }
  
  .hero-meta-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #4b5563;
    font-weight: 600;
    margin-bottom: 0.2rem;
  }
  
  .hero-card {
    background: var(--bg-surface);
    border-radius: 1.4rem;
    padding: 1.4rem 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.4);
    position: relative;
    overflow: hidden;
  }
  
  .hero-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, #7fd1dd 0, var(--accent) 40%, transparent 70%);
    top: -80px;
    right: -80px;
    opacity: 0.2;
  }
  
  .hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
  }
  
  .hero-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .hero-chip {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border: 1px solid #7fb8c0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }
  
  .hero-chip i { font-size: 0.9rem; }
  
  .hero-icons {
    display: flex;
    gap: 0.85rem;
    margin: 0.7rem 0 0.8rem;
    font-size: 0.75rem;
    color: var(--text-muted);
  }
  
  .hero-icons-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
    flex: 1;
  }
  
  .hero-icons-item i {
    font-size: 1.7rem;
    color: var(--accent-dark);
    background: var(--accent-soft);
    border-radius: 999px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-list {
    padding-left: 1rem;
    margin: 0;
    font-size: 0.83rem;
    color: var(--text-muted);
  }
  
  .hero-list li { margin: 0.15rem 0; }
  
  /* GRID HELPERS */
  
  .grid {
    display: grid;
    gap: 1.4rem;
  }
  
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  
  @media (max-width: 900px) {
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  
  @media (max-width: 680px) {
    .grid-3, .grid-2 { grid-template-columns: minmax(0, 1fr); }
  }
  
  .card {
    background: var(--bg-surface);
    border-radius: 1rem;
    padding: 1.2rem 1.25rem;
    border: 1px solid var(--border-subtle);
  }
  
  .card h3, .card h4, .card h5 {
    margin-top: 0;
    margin-bottom: 0.35rem;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
  }
  
  .card-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--accent-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    flex-shrink: 0;
    font-size: 1.2rem;
  }
  
  .card-bullets {
    margin: 0.35rem 0 0;
    padding-left: 1.1rem;
    font-size: 0.86rem;
    color: var(--text-muted);
  }
  
  .card-bullets li { margin: 0.08rem 0; }
  
  /* SERVICES */
  
  #services {
    background: linear-gradient(to bottom, #f6f7fb 0, #edf3f5 100%);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .services-tag {
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: #e2f3f6;
    color: #0f172a;
    border: 1px solid #b7d9de;
  }
  
  .services-tag i {
    color: var(--accent-dark);
    font-size: 1rem;
  }
  
  /* APPROACH */
  
  .approach-steps {
    display: grid;
    gap: 0.85rem;
    margin: 0.7rem 0 0;
  }
  
  .approach-step {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
  }
  
  .approach-badge {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-dark);
    flex-shrink: 0;
  }
  
  .approach-content-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.1rem;
  }
  
  .approach-content-text {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin: 0;
  }
  
  /* VALUES */
  
  .pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
  
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    font-size: 0.8rem;
    color: #111827;
  }
  
  .pill i {
    font-size: 0.9rem;
    color: var(--accent-dark);
  }
  
  /* CLIENTS */
  
  #clients {
    background: #f6f7fb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
  }
  
  /* FOUNDERS */
  
  .founder-name {
    font-weight: 600;
    font-size: 0.98rem;
    margin-bottom: 0.15rem;
  }
  
  .founder-role {
    font-size: 0.82rem;
    color: var(--accent-dark);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }
  
  .founder-role i { font-size: 1rem; }
  
  /* CONTACT */
  
  #contact {
    background: #edf3f5;
    border-top: 1px solid #e5e7eb;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr);
    gap: 2rem;
    align-items: flex-start;
  }
  
  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: minmax(0, 1fr); }
  }
  
  .form-card {
    background: #ffffff;
    border-radius: 1.1rem;
    border: 1px solid var(--border-subtle);
    padding: 1.4rem 1.5rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  }
  
  label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
  }
  
  .field { margin-bottom: 0.8rem; }
  
  input, select, textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 0.55rem;
    border: 1px solid #d1d5db;
    font-size: 0.88rem;
    font-family: inherit;
    color: #111827;
    background: #ffffff;
  }
  
  input::placeholder, textarea::placeholder { color: #9ca3af; }
  
  textarea {
    resize: vertical;
    min-height: 110px;
  }
  
  input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(70, 154, 164, 0.25);
  }
  
  .help-text {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
  }
  
  /* FOOTER */
  
  footer {
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 0.9rem 0 1.1rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: auto;
  }
  
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    justify-content: space-between;
  }
