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

:root {
  --bg: #f6f9f8;
  --bg-2: #eaf2ef;
  --paper: #ffffff;
  --ink: #0e2f33;
  --ink-2: #1d4e54;
  --muted: #5a7378;
  --line: #d4dfdb;
  --green: #1a7a6c;
  --green-2: #0d5a4f;
  --green-light: #b8d8d0;
  --mint: #6db8a6;
  --accent: #ff8b3d;
  --warn: #d44848;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.serif { font-family: 'DM Serif Display', serif; }

.topbar { background: var(--green); color: white; padding: 8px 0; font-size: 13px; font-weight: 500; }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 24px; }
.topbar-left::before { content: '✚ '; opacity: 0.6; }

.header { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; gap: 36px; }
.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark { width: 48px; height: 48px; background: var(--green); border-radius: 12px; display: grid; place-items: center; color: white; position: relative; }
.logo-mark::before { content: ''; position: absolute; left: 50%; top: 14px; transform: translateX(-50%); width: 4px; height: 20px; background: white; border-radius: 2px; }
.logo-mark::after { content: ''; position: absolute; top: 50%; left: 14px; transform: translateY(-50%); width: 20px; height: 4px; background: white; border-radius: 2px; }
.logo-name { font-family: 'DM Serif Display', serif; font-size: 26px; line-height: 1; color: var(--ink); }
.logo-name span { display: block; font-family: 'Inter', sans-serif; font-size: 11px; color: var(--muted); margin-top: 4px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }
.header-nav { display: flex; gap: 28px; margin-left: auto; font-size: 14px; font-weight: 500; }
.header-nav a { color: var(--ink-2); padding: 8px 0; transition: all 0.15s; position: relative; }
.header-nav a:hover, .header-nav a.active { color: var(--green); }
.header-nav a.active::after { content: ''; position: absolute; bottom: -19px; left: 0; right: 0; height: 3px; background: var(--green); border-radius: 2px 2px 0 0; }
.header-cta { display: flex; gap: 10px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 24px; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px; border: 1px solid transparent; border-radius: 100px; cursor: pointer; transition: all 0.15s; }
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-2); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: white; }
.btn-light { background: var(--paper); color: var(--green); border-color: var(--line); }
.btn-light:hover { border-color: var(--green); }

.hero { padding: 70px 0 90px; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, var(--green-light) 0%, transparent 70%); opacity: 0.5; }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.hero-eye { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; background: var(--paper); border: 1px solid var(--green-light); border-radius: 100px; font-size: 13px; color: var(--green-2); margin-bottom: 28px; font-weight: 500; }
.hero-eye::before { content: '✚'; color: var(--green); }
.hero h1 { font-family: 'DM Serif Display', serif; font-size: 76px; line-height: 1.02; letter-spacing: -2px; margin-bottom: 26px; color: var(--ink); }
.hero h1 em { font-style: italic; color: var(--green); }
.hero p { font-size: 18px; max-width: 520px; color: var(--ink-2); margin-bottom: 36px; line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 50px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 36px; padding-top: 36px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero-trust-item { display: flex; gap: 14px; align-items: center; }
.hero-trust-icon { width: 44px; height: 44px; background: var(--paper); border: 1px solid var(--green-light); border-radius: 12px; display: grid; place-items: center; color: var(--green); flex-shrink: 0; }
.hero-trust-text strong { display: block; font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--ink); line-height: 1; }
.hero-trust-text span { font-size: 12px; color: var(--muted); }

.hero-visual { position: relative; aspect-ratio: 1; max-width: 560px; margin: 0 auto; }
.hero-visual-inner { position: absolute; inset: 0; background: var(--paper); border-radius: 36px; box-shadow: 0 30px 60px -20px rgba(13,90,79,0.15); padding: 40px; display: flex; flex-direction: column; gap: 24px; }
.hero-visual-card-1 { background: var(--bg-2); border-radius: 20px; padding: 24px; display: flex; gap: 20px; align-items: center; }
.hero-visual-icon { width: 64px; height: 64px; background: var(--green); border-radius: 16px; display: grid; place-items: center; color: white; flex-shrink: 0; }
.hero-visual-card-1 .label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-weight: 600; }
.hero-visual-card-1 .name { font-family: 'DM Serif Display', serif; font-size: 22px; line-height: 1.1; }
.hero-visual-card-1 .meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.hero-visual-chart { background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%); border-radius: 20px; padding: 24px; color: white; flex: 1; position: relative; overflow: hidden; }
.hero-visual-chart::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100'%3E%3Cpath d='M 0 70 Q 50 50 100 60 T 200 30' stroke='white' stroke-width='2' fill='none' opacity='0.3'/%3E%3C/svg%3E") no-repeat right bottom / 70% 70%; }
.hero-visual-chart .label { font-size: 11px; opacity: 0.8; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; font-weight: 600; position: relative; }
.hero-visual-chart .num { font-family: 'DM Serif Display', serif; font-size: 56px; line-height: 1; position: relative; }
.hero-visual-chart .desc { font-size: 13px; opacity: 0.85; margin-top: 8px; max-width: 200px; position: relative; }
.hero-floating { position: absolute; background: var(--paper); border-radius: 16px; padding: 14px 18px; box-shadow: 0 12px 30px -8px rgba(13,90,79,0.18); display: flex; gap: 12px; align-items: center; z-index: 2; }
.hero-floating-1 { top: -20px; left: -30px; }
.hero-floating-2 { bottom: -20px; right: -20px; }
.hero-floating-icon { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: white; font-size: 16px; flex-shrink: 0; }
.hero-floating-text strong { display: block; font-size: 13px; color: var(--ink); }
.hero-floating-text span { font-size: 11px; color: var(--muted); }

.section { padding: 90px 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-head { text-align: center; margin-bottom: 60px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-eye { display: inline-block; padding: 6px 14px; background: var(--bg-2); color: var(--green); border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.section-head h2 { font-family: 'DM Serif Display', serif; font-size: 56px; line-height: 1.05; letter-spacing: -1.5px; color: var(--ink); margin-bottom: 14px; }
.section-head h2 em { font-style: italic; color: var(--green); }
.section-head p { font-size: 17px; color: var(--ink-2); line-height: 1.55; }

.divisions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.division { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 36px 32px; transition: all 0.25s; position: relative; overflow: hidden; }
.division:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 20px 40px -10px rgba(13,90,79,0.15); }
.division-icon { width: 64px; height: 64px; background: var(--bg-2); border-radius: 16px; display: grid; place-items: center; color: var(--green); margin-bottom: 24px; transition: all 0.25s; }
.division:hover .division-icon { background: var(--green); color: white; }
.division h3 { font-family: 'DM Serif Display', serif; font-size: 28px; line-height: 1.1; margin-bottom: 12px; color: var(--ink); }
.division p { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin-bottom: 24px; }
.division-stats { display: flex; gap: 24px; padding-top: 20px; border-top: 1px solid var(--line); margin-bottom: 22px; }
.division-stat-num { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--green); line-height: 1; }
.division-stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-top: 4px; }
.division-link { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-weight: 500; font-size: 14px; }
.division-link:hover { gap: 12px; }

.products-section { background: var(--paper); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product { background: var(--bg); border-radius: 20px; overflow: hidden; transition: all 0.25s; }
.product:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -8px rgba(13,90,79,0.12); }
.product-img { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--bg-2) 0%, var(--paper) 100%); position: relative; overflow: hidden; display: grid; place-items: center; }
.product-img svg { width: 60%; height: 70%; }
.product-tag { position: absolute; top: 14px; left: 14px; padding: 5px 12px; background: var(--paper); border-radius: 100px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--green); border: 1px solid var(--green-light); }
.product-tag.rx { background: var(--warn); color: white; border-color: var(--warn); }
.product-tag.new { background: var(--accent); color: white; border-color: var(--accent); }
.product-info { padding: 22px; }
.product-cat { font-size: 11px; color: var(--green); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 6px; }
.product-info h4 { font-family: 'DM Serif Display', serif; font-size: 22px; line-height: 1.1; color: var(--ink); margin-bottom: 4px; }
.product-info .latin { font-style: italic; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.product-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13px; }
.product-meta .form { color: var(--muted); }
.product-meta .price { font-family: 'DM Serif Display', serif; color: var(--green); font-size: 18px; }

.about-strip { background: var(--green); color: white; padding: 70px 0; position: relative; overflow: hidden; }
.about-strip::before { content: ''; position: absolute; right: -200px; top: -100px; width: 600px; height: 600px; border: 200px solid white; border-radius: 50%; opacity: 0.04; }
.about-strip-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; position: relative; }
.about-strip h2 { font-family: 'DM Serif Display', serif; font-size: 56px; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 22px; }
.about-strip h2 em { font-style: italic; color: var(--green-light); }
.about-strip p { font-size: 17px; opacity: 0.9; line-height: 1.6; max-width: 580px; margin-bottom: 18px; }
.about-strip .btn { background: var(--paper); color: var(--green); border-color: var(--paper); margin-top: 14px; }
.about-strip .btn:hover { background: var(--ink); color: white; border-color: var(--ink); }
.about-stats-card { background: var(--green-2); border-radius: 24px; padding: 40px; }
.about-stats-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.about-stat-big { font-family: 'DM Serif Display', serif; font-size: 64px; line-height: 1; color: var(--green-light); letter-spacing: -2px; }
.about-stat-big-label { font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 8px; line-height: 1.4; }

.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.quality-img { aspect-ratio: 1; background: var(--paper); border-radius: 32px; padding: 36px; position: relative; overflow: hidden; box-shadow: 0 20px 50px -20px rgba(13,90,79,0.15); }
.quality-text h2 { font-family: 'DM Serif Display', serif; font-size: 52px; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 22px; color: var(--ink); }
.quality-text h2 em { font-style: italic; color: var(--green); }
.quality-list { display: grid; gap: 18px; margin-top: 32px; }
.quality-item { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; padding: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; transition: border 0.15s; }
.quality-item:hover { border-color: var(--green); }
.quality-item-icon { width: 56px; height: 56px; background: var(--bg-2); border-radius: 14px; display: grid; place-items: center; color: var(--green); }
.quality-item h4 { font-family: 'DM Serif Display', serif; font-size: 19px; color: var(--ink); margin-bottom: 4px; }
.quality-item p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

.b2b-section { background: var(--bg-2); }
.b2b-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.b2b-card { background: var(--paper); border-radius: 24px; padding: 40px; position: relative; overflow: hidden; }
.b2b-card.dark { background: var(--ink); color: white; }
.b2b-card-eye { display: inline-block; padding: 5px 12px; background: var(--bg-2); color: var(--green-2); border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px; }
.b2b-card.dark .b2b-card-eye { background: rgba(255,255,255,0.1); color: var(--green-light); }
.b2b-card h3 { font-family: 'DM Serif Display', serif; font-size: 36px; line-height: 1.1; letter-spacing: -1px; margin-bottom: 14px; }
.b2b-card.dark h3 em { font-style: italic; color: var(--green-light); }
.b2b-card h3 em { font-style: italic; color: var(--green); }
.b2b-card p { font-size: 15px; line-height: 1.6; margin-bottom: 26px; opacity: 0.85; }
.b2b-card-list { display: grid; gap: 12px; margin-bottom: 28px; }
.b2b-card-list-item { padding-left: 26px; position: relative; font-size: 14px; }
.b2b-card-list-item::before { content: '✚'; position: absolute; left: 0; color: var(--green); font-weight: 600; }
.b2b-card.dark .b2b-card-list-item::before { color: var(--green-light); }
.b2b-card .btn-primary { background: var(--green); color: white; border-color: var(--green); }
.b2b-card.dark .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.cta-section { padding: 100px 0; }
.cta-card { background: var(--paper); border: 1px solid var(--green-light); border-radius: 32px; padding: 70px; text-align: center; position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; top: -100px; left: -100px; width: 300px; height: 300px; background: radial-gradient(circle, var(--green-light) 0%, transparent 70%); opacity: 0.4; }
.cta-card::after { content: ''; position: absolute; bottom: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, var(--green-light) 0%, transparent 70%); opacity: 0.4; }
.cta-card h2 { font-family: 'DM Serif Display', serif; font-size: 56px; line-height: 1; letter-spacing: -2px; margin-bottom: 18px; position: relative; }
.cta-card h2 em { font-style: italic; color: var(--green); }
.cta-card p { font-size: 18px; color: var(--ink-2); max-width: 600px; margin: 0 auto 36px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

.footer { background: var(--ink); color: white; padding: 70px 0 30px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand .logo-name { color: white; }
.footer-brand .logo-name span { color: rgba(255,255,255,0.6); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; margin: 22px 0 24px; max-width: 360px; }
.footer-licenses { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-license { padding: 6px 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; font-size: 11px; color: rgba(255,255,255,0.85); }
.footer h5 { font-size: 12px; color: var(--green-light); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,0.78); }
.footer a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; font-size: 12px; color: rgba(255,255,255,0.6); }

.page-header { padding: 60px 0 50px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.page-header .crumbs { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.page-header h1 { font-family: 'DM Serif Display', serif; font-size: 76px; line-height: 1; letter-spacing: -2px; }
.page-header h1 em { font-style: italic; color: var(--green); }
.page-header .h1-sub { font-size: 17px; color: var(--ink-2); margin-top: 16px; max-width: 600px; line-height: 1.55; }

.contacts-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; padding: 60px 0; }
.contact-block { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 32px; margin-bottom: 16px; }
.contact-block h3 { font-family: 'DM Serif Display', serif; font-size: 26px; line-height: 1.1; margin-bottom: 4px; }
.contact-block .cb-sub { font-size: 12px; color: var(--green); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 22px; }
.contact-list { display: grid; gap: 14px; }
.contact-row { display: flex; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-icon { width: 44px; height: 44px; background: var(--bg-2); border-radius: 12px; display: grid; place-items: center; color: var(--green); flex-shrink: 0; }
.contact-text strong { display: block; font-size: 15px; color: var(--ink); }
.contact-text span { font-size: 13px; color: var(--muted); }

.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 40px; }
.contact-form h3 { font-family: 'DM Serif Display', serif; font-size: 36px; letter-spacing: -1px; margin-bottom: 4px; line-height: 1.05; }
.contact-form h3 em { font-style: italic; color: var(--green); }
.contact-form .cf-sub { font-size: 14px; color: var(--ink-2); margin-bottom: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; color: var(--ink); font-weight: 500; margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 16px; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--ink); outline: 0; transition: all 0.15s; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); background: var(--paper); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .btn { width: 100%; justify-content: center; padding: 14px; }
.contact-map { aspect-ratio: 16/10; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); }

@media (max-width: 1024px) {
  .header-inner { flex-wrap: wrap; }
  .header-nav { order: 3; width: 100%; gap: 16px; padding-top: 14px; border-top: 1px solid var(--line); margin-left: 0; flex-wrap: wrap; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero h1 { font-size: 50px; }
  .divisions-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .quality-grid { grid-template-columns: 1fr; gap: 40px; }
  .b2b-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 50px 36px; }
  .cta-card h2 { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 52px; }
}
@media (max-width: 720px) {
  .header-inner { padding: 14px 20px; }
  .section { padding: 60px 0; }
  .section-inner { padding: 0 20px; }
  .topbar-inner { padding: 0 20px; }
  .topbar-meta { display: none; }
  .hero { padding: 40px 0 60px; }
  .hero h1 { font-size: 38px; }
  .divisions-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 36px; }
  .page-header h1 { font-size: 40px; }
  .cta-card h2 { font-size: 32px; }
  .about-stats-card-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; }
  .hero-floating-1, .hero-floating-2 { display: none; }
}
