


  #granum-page *, #granum-page *::before, #granum-page *::after { box-sizing: border-box; margin: 0; padding: 0; }

  #granum-page {
    --navy: #1D2F56;
    --blue: #1985BB;
    --light: #F4F6FA;
    --white: #ffffff;
    --gray: #8B96A8;
    --border: #DDE3ED;
    --text: #2C3A52;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
  }

  /* NAV — position:relative т.к. fixed не работает внутри блока Tilda */
  #granum-page nav {
    position: relative; top: auto; left: auto; right: auto; z-index: 10;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 60px;
    height: 72px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  #granum-page .nav-logo { display: flex; align-items: center; }
  #granum-page .nav-logo svg { height: 36px; width: auto; }
  #granum-page .nav-links { display: flex; gap: 40px; align-items: center; }
  #granum-page .nav-links a {
    text-decoration: none; color: var(--navy);
    font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  #granum-page .nav-links a:hover { color: var(--blue); }
  #granum-page .nav-cta {
    padding: 10px 24px;
    background: var(--blue);
    color: white;
    text-decoration: none;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    border-radius: 4px; transition: background 0.2s; white-space: nowrap;
  }
  #granum-page .nav-cta:hover { background: #1575a8; }

  /* HERO */
  #granum-page .hero {
    min-height: 70vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 100px 60px 80px;
    background: var(--navy);
    position: relative; overflow: hidden;
  }
  #granum-page .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0d1a30 0%, #1D2F56 50%, #1a3a6b 100%);
  }
  #granum-page .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(25,133,187,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(25,133,187,0.08) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  #granum-page .hero-accent {
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(25,133,187,0.15) 0%, transparent 70%);
  }
  #granum-page .hero-photo {
    position: absolute; right: 0; bottom: 0; top: 0;
    width: 55%; z-index: 1;
    background: url('TILDA_HERO_PHOTO_URL') center/cover no-repeat;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 20%, rgba(0,0,0,0.95) 50%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 20%, rgba(0,0,0,0.95) 50%, #000 100%);
  }
  #granum-page .hero-content { position: relative; z-index: 2; max-width: 660px; }
  #granum-page .hero-tag {
    display: inline-block; margin-bottom: 28px;
    padding: 6px 16px; border: 1px solid rgba(25,133,187,0.4);
    border-radius: 2px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--blue);
  }
  #granum-page .hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 400; line-height: 1.15;
    color: var(--white); margin-bottom: 28px;
  }
  #granum-page .hero h1 em { font-style: italic; color: var(--blue); }
  #granum-page .hero-sub {
    font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.65);
    max-width: 600px; margin-bottom: 48px;
  }
  #granum-page .hero-cta {
    display: inline-block; padding: 16px 40px;
    background: var(--blue); color: white;
    text-decoration: none; font-size: 14px; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
  }
  #granum-page .hero-cta:hover { background: #1575a8; transform: translateY(-1px); }

  /* SECTION BASE */
  #granum-page section { padding: 100px 60px; }
  #granum-page .section-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
  }
  #granum-page .section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 48px); font-weight: 400;
    color: var(--navy); line-height: 1.2; margin-bottom: 16px;
  }
  #granum-page .section-sub {
    font-size: 16px; color: var(--gray); line-height: 1.7;
    max-width: 560px; margin-bottom: 60px;
  }

  /* ECOSYSTEM CARDS */
  #granum-page .ecosystem { background: var(--light); }
  #granum-page .cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  }
  #granum-page .card {
    background: white; padding: 48px 40px;
    display: flex; flex-direction: column;
    border-top: 3px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  #granum-page .card:hover {
    border-top-color: var(--blue);
    box-shadow: 0 8px 40px rgba(29,47,86,0.08);
  }
  #granum-page .card-logo { margin-bottom: 32px; }
  #granum-page .card-logo svg { height: 28px; width: auto; }
  #granum-page .card-text { font-size: 15px; line-height: 1.75; color: var(--gray); flex: 1; margin-bottom: 36px; }
  #granum-page .card-link {
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; font-size: 13px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy);
    transition: color 0.2s; padding-bottom: 4px;
    border-bottom: 1.5px solid var(--navy);
  }
  #granum-page .card-link:hover { color: var(--blue); border-bottom-color: var(--blue); }

  /* ABOUT BANNER */
  #granum-page .about-banner {
    background: var(--navy);
    display: flex; align-items: stretch; gap: 0; padding: 0;
  }
  #granum-page .about-img {
    width: 45%; min-height: 500px;
    background: url('TILDA_IMAGE_URL_1') center/cover no-repeat;
    flex-shrink: 0;
  }
  #granum-page .about-text {
    flex: 1; padding: 80px 80px;
    display: flex; flex-direction: column; justify-content: center;
  }
  #granum-page .about-text .section-label { color: rgba(25,133,187,0.9); }
  #granum-page .about-text .section-title { color: white; }
  #granum-page .about-text p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 40px; }
  #granum-page .btn-outline {
    display: inline-block; padding: 14px 36px;
    border: 1.5px solid rgba(255,255,255,0.3); color: white;
    text-decoration: none; font-size: 13px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    transition: border-color 0.2s, background 0.2s; align-self: flex-start;
  }
  #granum-page .btn-outline:hover { border-color: var(--blue); background: rgba(25,133,187,0.1); }

  /* STATS */
  #granum-page .stats { background: white; }
  #granum-page .stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
  }
  #granum-page .stat { padding: 60px 40px; border-right: 1px solid var(--border); }
  #granum-page .stat:last-child { border-right: none; }
  #granum-page .stat-num {
    font-family: 'Inter', sans-serif; font-size: 72px; font-weight: 400;
    color: var(--navy); line-height: 1; margin-bottom: 12px;
  }
  #granum-page .stat-num span { font-size: 40px; color: var(--blue); }
  #granum-page .stat-desc { font-size: 14px; line-height: 1.6; color: var(--gray); max-width: 200px; }

  /* WHY US */
  #granum-page .why { background: var(--light); }
  #granum-page .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  #granum-page .why-item {
    background: white; padding: 44px 40px;
    border-left: 3px solid transparent; transition: border-color 0.2s;
  }
  #granum-page .why-item:hover { border-left-color: var(--blue); }
  #granum-page .why-num {
    font-family: 'Inter', sans-serif; font-size: 48px; font-weight: 400;
    color: var(--border); line-height: 1; margin-bottom: 20px;
  }
  #granum-page .why-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
  #granum-page .why-text { font-size: 14px; line-height: 1.75; color: var(--gray); }

  /* CONTACTS */
  #granum-page .contacts { background: var(--navy); }
  #granum-page .contacts-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start;
  }
  #granum-page .contacts .section-title { color: white; margin-bottom: 32px; }
  #granum-page .contact-info { margin-bottom: 48px; }
  #granum-page .contact-item { margin-bottom: 16px; }
  #granum-page .contact-item a {
    color: rgba(255,255,255,0.7); text-decoration: none;
    font-size: 16px; transition: color 0.2s;
  }
  #granum-page .contact-item a:hover { color: var(--blue); }
  #granum-page .contact-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 4px; }
  #granum-page .form-grid { display: grid; gap: 12px; }
  #granum-page .form-input {
    width: 100%; padding: 14px 16px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
    color: white; font-family: 'Manrope', sans-serif; font-size: 14px;
    outline: none; transition: border-color 0.2s;
  }
  #granum-page .form-input::placeholder { color: rgba(255,255,255,0.35); }
  #granum-page .form-input:focus { border-color: var(--blue); }
  #granum-page .form-btn {
    padding: 14px 36px; background: var(--blue); color: white; border: none; cursor: pointer;
    font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s;
    justify-self: start; align-self: start;
  }
  #granum-page .form-btn:hover { background: #1575a8; }

  /* FOOTER */
  #granum-page footer {
    background: #0d1a30; padding: 32px 60px;
    display: flex; justify-content: space-between; align-items: center;
  }
  #granum-page footer p { font-size: 12px; color: rgba(255,255,255,0.3); }
  #granum-page .footer-vk { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; }
  #granum-page .footer-vk:hover { color: var(--blue); }

  @media (max-width: 900px) {
    #granum-page nav { padding: 0 24px; }
    #granum-page .nav-links { gap: 20px; }
    #granum-page section { padding: 60px 24px; }
    #granum-page .hero { padding: 80px 24px 60px; }
    #granum-page .cards { grid-template-columns: 1fr; }
    #granum-page .about-banner { flex-direction: column; }
    #granum-page .about-img { width: 100%; min-height: 280px; }
    #granum-page .about-text { padding: 48px 24px; }
    #granum-page .stats-grid { grid-template-columns: 1fr; }
    #granum-page .stat { border-right: none; border-bottom: 1px solid var(--border); }
    #granum-page .why-grid { grid-template-columns: 1fr; }
    #granum-page .contacts-inner { grid-template-columns: 1fr; gap: 48px; }
    #granum-page footer { flex-direction: column; gap: 12px; text-align: center; }
  }
  @media (max-width: 600px) {
    #granum-page nav { flex-wrap: wrap; gap: 12px; padding: 12px 16px; }
    #granum-page .nav-links { gap: 12px; font-size: 13px; }
    #granum-page .nav-cta { padding: 8px 16px; font-size: 12px; }
    #granum-page .hero-content { max-width: 100%; }
  }
</style>

<div id="granum-page">