
  :root {
    --brand-blue-light: #4dc3ff;
    --brand-blue: #00a8e8;
    --brand-blue-dark: #0077b6;
    --brand-blue-deep: #003566;
    
    --bg-primary: #0a1a2e;
    --bg-secondary: #0f2542;
    --bg-tertiary: #14304f;
    --bg-card: #15355c;
    
    --text-primary: #ffffff;
    --text-secondary: #b8c6d6;
    --text-muted: #6b7c93;
    
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.18);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* Grid background */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
      linear-gradient(rgba(77,195,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(77,195,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 1;
  }

  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }

  /* ============ NAVBAR ============ */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(10, 26, 46, 0.85);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
  }

  .nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo img {
    height: 56px;
    display: block;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--brand-blue-light); }
  .nav-links a.active { color: var(--brand-blue-light); }

  .nav-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--border-strong);
    border-radius: 4px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
  }

  .nav-back:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
  }

  /* ============ SECTION BASE ============ */
  section.content-section {
    padding: 120px 0;
    position: relative;
  }

  .section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--brand-blue-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-label::before {
    content: '';
    width: 48px;
    height: 1px;
    background: var(--brand-blue-light);
  }

  .section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    max-width: 900px;
  }

  /* ============ ABOUT SECTION ============ */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: center;
  }

  .about-text p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
  }

  .about-visual {
    aspect-ratio: 4/3;
    background-image: url('../img/05784870cc1be59e.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-strong);
    position: relative;
    overflow: hidden;
  }

  /* ============ CORAL PARTNERSHIP ============ */
  .partnership {
    background: linear-gradient(135deg, #0f2542 0%, #14304f 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .partnership::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(77, 195, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
  }

  .partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(77, 195, 255, 0.1);
    border: 1px solid rgba(77, 195, 255, 0.4);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--brand-blue-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .partnership-badge .flag {
    font-size: 16px;
  }

  .partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .partnership-content h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }

  .partnership-content h2 .coral-name {
    color: var(--brand-blue-light);
  }

  .partnership-content p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
  }

  .coral-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    padding: 48px;
    text-align: center;
    backdrop-filter: blur(10px);
  }

  .coral-logo-placeholder {
    width: 100%;
    max-width: 380px;
    margin: 0 auto 32px;
    padding: 24px;
    background: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .coral-logo-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: 48px;
    color: #009ec0;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    line-height: 1;
  }

  .coral-logo-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #6b7c93;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 8px;
  }

  .coral-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
  }

  .coral-stat {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: rgba(0,0,0,0.2);
  }

  .coral-stat-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 32px;
    color: var(--brand-blue-light);
    line-height: 1;
  }

  .coral-stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 6px;
  }

  .partnership-benefits {
    list-style: none;
    margin-top: 32px;
  }

  .partnership-benefits li {
    padding: 16px 0;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--text-secondary);
  }

  .partnership-benefits li::before {
    content: '';
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%234dc3ff' stroke-width='1.5'/%3E%3Cpath d='M8 12L11 15L16 9' stroke='%234dc3ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
  }

  /* ============ COMPONENTS SECTION ============ */
  .components {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .components-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
  }

  .component-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
  }

  .component-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }

  .component-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-tertiary);
    transform: translateY(-4px);
  }

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

  .component-icon {
    width: 56px;
    height: 56px;
    color: var(--brand-blue-light);
    margin-bottom: 24px;
  }

  .component-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.1;
  }

  .component-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
  }

  /* ============ SECTORS GRID ============ */
  .sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .sector-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
  }

  .sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-blue-light), var(--brand-blue));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s;
  }

  .sector-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-tertiary);
    transform: translateY(-4px);
  }

  .sector-card:hover::before {
    transform: scaleY(1);
  }

  .sector-icon {
    width: 48px;
    height: 48px;
    color: var(--brand-blue-light);
    margin-bottom: 24px;
  }

  .sector-icon svg {
    width: 100%;
    height: 100%;
  }

  .sector-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .sector-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--brand-blue-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .sector-list {
    list-style: none;
    padding: 0;
  }

  .sector-list li {
    padding: 10px 0;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .sector-list li:last-child {
    border-bottom: 1px solid var(--border);
  }

  .sector-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--brand-blue-light);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.6;
  }

  .sector-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-bottom: 6px;
    color: var(--brand-blue-light);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--brand-blue-light);
    transition: all 0.3s;
    width: fit-content;
  }

  .sector-cta:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
    gap: 18px;
  }

  .sector-cta .arrow {
    transition: transform 0.3s;
  }

  .sector-cta:hover .arrow {
    transform: translateX(4px);
  }

  /* ============ BOTTOM CTA ============ */
  .sectors-bottom-cta {
    margin-top: 48px;
    padding: 48px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-strong);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden;
  }

  .sectors-bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(77, 195, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .sectors-bottom-text {
    position: relative;
    z-index: 1;
    flex: 1;
  }

  .sectors-bottom-text h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .sectors-bottom-text p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
  }

  .sectors-bottom-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    background: var(--brand-blue);
    color: white;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .sectors-bottom-btn:hover {
    background: var(--brand-blue-light);
    transform: translateY(-2px);
  }

  .sectors-bottom-btn .arrow {
    transition: transform 0.3s;
  }

  .sectors-bottom-btn:hover .arrow {
    transform: translateX(4px);
  }

  /* ============ PROCESS ============ */
  .process {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
  }

  .process-step {
    position: relative;
  }

  .step-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 72px;
    color: var(--brand-blue-light);
    line-height: 1;
    -webkit-text-stroke: 2px var(--brand-blue-light);
    color: transparent;
    margin-bottom: 16px;
  }

  .step-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .step-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
  }

  /* ============ WHY US ============ */
  .why-us {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

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

  .why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
  }

  .why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue-light), var(--brand-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }

  .why-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-tertiary);
    transform: translateY(-4px);
  }

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

  .why-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 56px;
    line-height: 1;
    background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
  }

  .why-icon {
    width: 48px;
    height: 48px;
    color: var(--brand-blue-light);
    margin-bottom: 32px;
  }

  .why-icon svg {
    width: 100%;
    height: 100%;
  }

  .why-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .why-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
  }

  /* ============ AWARDS BADGE ============ */
  .awards-banner {
    padding: 48px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .awards-badge-card {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    padding: 32px 40px;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
  }

  .awards-badge-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--brand-blue-light);
    transform: translateY(-2px);
  }

  .awards-badge-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(77, 195, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue-light);
    flex-shrink: 0;
  }

  .awards-badge-content {
    flex: 1;
  }

  .awards-badge-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--brand-blue-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .awards-badge-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .awards-badge-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
  }

  .awards-badge-stats {
    display: flex;
    gap: 32px;
    padding-left: 32px;
    border-left: 1px solid var(--border);
  }

  .awards-badge-stat {
    text-align: center;
  }

  .awards-badge-stat-value {
    font-family: 'Archivo Black', sans-serif;
    font-size: 32px;
    color: var(--brand-blue-light);
    line-height: 1;
    margin-bottom: 4px;
  }

  .awards-badge-stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .awards-badge-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-blue-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 8px;
  }

  /* ============ CONTACT FORM ============ */
  .contact-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }

  .contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(77,195,255,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    position: relative;
    z-index: 2;
  }

  .contact-info h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .contact-info p {
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 40px;
    max-width: 420px;
  }

  .contact-details {
    list-style: none;
  }

  .contact-details li {
    padding: 20px 0;
    border-top: 1px solid var(--border);
  }

  .contact-details li:last-child {
    border-bottom: 1px solid var(--border);
  }

  .contact-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--brand-blue-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
  }

  .contact-value {
    font-size: 17px;
    color: var(--text-primary);
    font-weight: 500;
  }

  .contact-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border-strong);
    padding: 48px;
    border-radius: 4px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-strong);
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    border-radius: 4px;
    transition: border-color 0.3s;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--brand-blue-light);
  }

  .form-group textarea {
    min-height: 120px;
    resize: vertical;
  }

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

  .submit-btn {
    width: 100%;
    background: var(--brand-blue);
    color: white;
    border: none;
    padding: 18px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    margin-top: 8px;
  }

  .submit-btn:hover {
    background: var(--brand-blue-light);
    transform: translateY(-2px);
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--bg-secondary);
    padding: 48px 0 32px;
    border-top: 1px solid var(--border);
  }

  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-info {
    text-align: right;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 2;
  }

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

  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(77, 195, 255, 0.1);
    border: 1px solid rgba(77, 195, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue-light);
    transition: all 0.3s;
    text-decoration: none;
  }

  .social-link:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: white;
    transform: translateY(-2px);
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 968px) {
    .about-grid,
    .partnership-grid,
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .components-grid,
    .process-steps,
    .why-grid {
      grid-template-columns: 1fr;
    }

    .industries-list,
    .sectors-grid {
      grid-template-columns: 1fr;
    }

    .sectors-bottom-cta {
      flex-direction: column;
      align-items: flex-start;
      padding: 32px;
      gap: 24px;
    }

    .industry-item {
      border-right: none !important;
    }

    .awards-badge-card {
      flex-direction: column;
      text-align: center;
      gap: 24px;
    }

    .awards-badge-stats {
      padding-left: 0;
      border-left: none;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      width: 100%;
      justify-content: center;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .nav-links {
      display: none;
    }

    .footer-content {
      flex-direction: column;
      text-align: center;
    }

    .footer-info {
      text-align: center;
    }

    section.content-section {
      padding: 80px 0;
    }
  }

  /* ============ GOOGLE MAPS ============ */
  .map-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .map-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-strong);
    flex-wrap: wrap;
  }
  
  .map-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(77, 195, 255, 0.12);
    color: var(--brand-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .map-header-text {
    flex: 1;
    min-width: 200px;
  }
  
  .map-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
  }
  
  .map-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
  }
  
  .map-open-link {
    font-size: 13px;
    color: var(--brand-blue-light);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
    white-space: nowrap;
  }
  
  .map-open-link:hover {
    opacity: 0.8;
  }
  
  .map-iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
    filter: grayscale(0.2) contrast(1.05);
  }
  
  @media (max-width: 768px) {
    .map-header {
      padding: 14px 18px;
    }
    .map-iframe {
      height: 280px;
    }
    .map-open-link {
      width: 100%;
      text-align: left;
    }
  }



  /* GALLERY STYLES (aspiration) */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  
  .gallery-item {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
  }
  
  .gallery-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.25);
  }
  
  .gallery-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    opacity: 0.4;
    transition: opacity 0.3s;
  }
  
  .gallery-item:hover .gallery-image-placeholder {
    opacity: 0.7;
  }
  
  .gallery-item img.gallery-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }
  
  .gallery-item:hover img.gallery-image {
    transform: scale(1.05);
  }
  
  .gallery-caption {
    padding: 14px 16px;
    border-top: 1px solid var(--border);
  }
  
  .gallery-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  
  .gallery-caption strong {
    display: block;
    font-size: 13px;
    line-height: 1.3;
    color: var(--text-primary);
  }
  
  /* LIGHTBOX */
  .lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    cursor: pointer;
  }
  
  .lightbox.active { display: flex; }
  
  .lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
  }
  
  .lightbox-caption {
    color: white;
    text-align: center;
    font-size: 15px;
    background: rgba(0, 0, 0, 0.6);
    padding: 12px 24px;
    border-radius: 100px;
  }
  
  .lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 48px; height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  
  .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  @media (max-width: 968px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  }
  
  @media (max-width: 640px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gallery-image-placeholder { font-size: 36px; }
    .gallery-caption { padding: 10px 12px; }
  }
