/* =============================================
   OASIO – stávající styly (doprava, produkty, kontakty...)
   ============================================= */

.shipping-page {
    max-width: 1300px;
    margin-left: 0;
    margin-right: auto;
    padding: 20px 30px;
}

.shipping-page h2 {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #1f2d3d;
}

.shipping-page p {
    color: #4a5a6a;
    margin-bottom: 12px;
    line-height: 1.6;
}

.shipping-page ul {
    padding-left: 0;
    list-style: none;
    margin: 10px 0 20px;
}

.shipping-page ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.shipping-page ul li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #2b6ea6;
}

.install-box {
    background: #f4f8fb;
    border-left: 4px solid #2b6ea6;
    padding: 15px 18px;
    margin: 20px 0;
    border-radius: 6px;
    font-size: 15px;
}

@media (min-width: 1200px) {
    .content-inner {
        max-width: 1200px;
    }
}

.shipping-page {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.shipping-intro {
    font-size: 16px;
    color: #4a5a6a;
    margin-bottom: 30px;
}

.shipping-box {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.05);
}

.shipping-box h2 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 0;
    color: #1f2d3d;
}

.shipping-box p {
    color: #4a5a6a;
    margin-bottom: 10px;
}

.shipping-box ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 15px;
}

.shipping-box ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    color: #4a5a6a;
}

.shipping-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2b6ea6;
    font-weight: bold;
}

.shipping-box.highlight {
    background: linear-gradient(135deg, #2b6ea6, #3c8dcf);
    color: #fff;
}

.shipping-box.highlight h2,
.shipping-box.highlight p {
    color: #fff;
}

.shipping-contact {
    margin-top: 30px;
    padding: 20px;
    background: #f4f8fb;
    border-radius: 12px;
}

.shipping-contact p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .shipping-page { padding: 15px; }
    .shipping-box { padding: 20px; }
}

.product-param-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.product-param-table th {
    background: #2b6ea6;
    color: #ffffff;
    text-align: left;
    padding: 12px 16px;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.product-param-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e6edf3;
}

.product-param-table tr:nth-child(even) td {
    background: #f4f8fb;
}

.product-param-table td:first-child {
    font-weight: 500;
    color: #5f6f7f;
    width: 50%;
}

.product-param-table td:last-child {
    font-weight: 600;
    color: #1f2d3d;
}

@media (max-width: 768px) {
    .product-param-table {
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }
    .product-param-table tr {
        display: block;
        background: #ffffff;
        margin-bottom: 12px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }
    .product-param-table th {
        display: block;
        border-radius: 10px 10px 0 0;
        font-size: 14px;
    }
    .product-param-table td {
        display: block;
        padding: 10px 14px;
        border: none;
        background: transparent !important;
    }
    .product-param-table td:first-child {
        font-size: 12px;
        color: #8a9aa9;
        padding-bottom: 2px;
    }
    .product-param-table td:last-child {
        font-size: 15px;
        font-weight: 600;
        color: #1f2d3d;
        padding-top: 0;
    }
}

.product-description {
    max-width: 95%;
    line-height: 1.6;
    color: #2a2a2a;
}

.product-description h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1f2d3d;
    position: relative;
    padding-left: 14px;
}

.product-description h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 20px;
    background: #2b6ea6;
    border-radius: 2px;
}

.product-description p {
    margin-bottom: 15px;
    color: #4a5a6a;
    font-size: 15px;
}

.product-description ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 20px;
}

.product-description ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    color: #4a5a6a;
}

.product-description ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2b6ea6;
    font-weight: bold;
}

.product-description strong {
    color: #1f2d3d;
}

@media (max-width: 768px) {
    .product-description h2 { font-size: 18px; margin-top: 30px; }
    .product-description p { font-size: 14px; }
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    margin: 30px 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
}

.highlight-box {
    background: linear-gradient(135deg, #2b6ea6, #3c8dcf);
    color: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    margin: 25px 0;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(43,110,166,0.2);
}

.contact-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.contact-intro {
    font-size: 16px;
    margin-bottom: 25px;
    color: #4a5a6a;
}

.contact-top {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    flex: 1;
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.05);
}

.contact-title {
    font-size: 14px;
    color: #8a9aa9;
    margin-bottom: 5px;
}

.contact-main {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #2b6ea6;
    text-decoration: none;
    margin-bottom: 5px;
}

.contact-main:hover {
    text-decoration: underline;
}

.contact-sub {
    font-size: 13px;
    color: #8a9aa9;
}

.contact-bottom {
    display: flex;
    gap: 20px;
}

.contact-box {
    flex: 1;
    background: #f4f8fb;
    padding: 25px;
    border-radius: 12px;
}

.contact-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #1f2d3d;
}

.contact-grid {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .contact-top,
    .contact-bottom,
    .contact-grid { flex-direction: column; }
    .contact-main { font-size: 18px; }
}


/* =============================================
   OASIO – O nás stránka
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navy:       #1a5078;
  --navy-deep:  #0f3352;
  --sky:        #5ab4d6;
  --sky-pale:   #e8f4fa;
  --white:      #ffffff;
  --off-white:  #f5f9fc;
  --ink:        #1a2a35;
  --muted:      #5a7080;
  --line:       rgba(26, 80, 120, 0.12);
}

.oasio-hero {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
}
.oasio-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 110%, rgba(90,180,214,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% -10%, rgba(90,180,214,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.oasio-hero-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  overflow: hidden;
}
.oasio-hero-waves svg { display: block; width: 100%; height: 100%; }

.oasio-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.oasio-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 400;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
}
.oasio-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--sky);
}

.oasio-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.oasio-hero h1 em { font-style: italic; color: var(--sky); }

.oasio-hero-lead {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 440px;
  font-family: 'DM Sans', sans-serif;
}

.oasio-stats { display: flex; flex-direction: column; gap: 2px; }

.oasio-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(90,180,214,0.2);
  border-radius: 4px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: background 0.3s;
}
.oasio-stat:hover { background: rgba(255,255,255,0.1); }

.oasio-stat-num {
  font-family: 'Lora', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--sky);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}
.oasio-stat-text strong {
  display: block;
  color: white;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}
.oasio-stat-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
}

.oasio-manifesto {
  background: var(--sky-pale);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.oasio-manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.oasio-manifesto blockquote {
  font-family: 'Lora', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  padding: 0 24px;
}
.oasio-manifesto blockquote::before {
  content: '\201C';
  position: absolute;
  left: -8px; top: -10px;
  font-size: 80px;
  color: var(--sky);
  opacity: 0.3;
  font-family: 'Lora', serif;
  line-height: 1;
}
.oasio-manifesto blockquote strong {
  color: var(--navy-deep);
  font-weight: 700;
  font-style: normal;
}
.oasio-manifesto p {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
}

.oasio-container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

.oasio-why { padding: 100px 0; background: white; }

.oasio-why-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.oasio-why-header h2 {
  font-family: 'Lora', serif;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
}
.oasio-why-header h2 em { font-style: italic; color: var(--sky); }
.oasio-why-header p {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  font-family: 'DM Sans', sans-serif;
}

.oasio-reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.oasio-reason {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.oasio-reason:hover {
  box-shadow: 0 8px 32px rgba(26,80,120,0.10);
  border-color: rgba(90,180,214,0.4);
}
.oasio-reason::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.oasio-reason:hover::after { transform: scaleX(1); }
.oasio-reason-num {
  font-family: 'Lora', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--sky);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}
.oasio-reason h3 {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}
.oasio-reason p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
}

.oasio-math {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.oasio-math::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 100% 50%, rgba(90,180,214,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.oasio-math-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.oasio-math-inner h3 {
  font-family: 'Lora', serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
  margin-bottom: 20px;
}
.oasio-math-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
  font-family: 'DM Sans', sans-serif;
}
.oasio-math-visual {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(90,180,214,0.25);
  border-radius: 4px;
  padding: 36px 40px;
  text-align: center;
  white-space: nowrap;
  min-width: 280px;
}
.oasio-math-row {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 2;
  font-family: 'DM Sans', sans-serif;
}
.oasio-math-divider {
  border: none;
  border-top: 1px solid rgba(90,180,214,0.3);
  margin: 12px 0;
}
.oasio-math-result {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--sky);
  margin-top: 4px;
}

.oasio-get { padding: 100px 0; background: var(--sky-pale); }
.oasio-get-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.oasio-get-left { position: sticky; top: 48px; }
.oasio-get-left h2 {
  font-family: 'Lora', serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-deep);
  margin-bottom: 18px;
}
.oasio-get-left h2 em { font-style: italic; color: var(--sky); }
.oasio-get-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
}
.oasio-get-items { display: flex; flex-direction: column; }
.oasio-get-item {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.oasio-get-item:last-child { border-bottom: 1px solid var(--line); }
.oasio-get-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  flex-shrink: 0;
  margin-top: 2px;
}
.oasio-get-item h4 {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.oasio-get-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
}

.oasio-closing {
  background: var(--navy-deep);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.oasio-closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(90,180,214,0.15) 0%, transparent 70%);
}
.oasio-closing-inner { position: relative; z-index: 1; }
.oasio-closing h2 {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: white;
  line-height: 1.25;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.oasio-closing h2 em { font-style: italic; color: var(--sky); }
.oasio-closing p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'DM Sans', sans-serif;
}
.oasio-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sky);
  color: var(--navy-deep);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 15px 32px;
  border-radius: 3px;
  transition: background 0.25s, transform 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.oasio-btn:hover { background: #7ac8e0; transform: translateY(-1px); }

.oasio-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.oasio-fade.visible { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .oasio-hero-inner    { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .oasio-why-header    { grid-template-columns: 1fr; gap: 20px; }
  .oasio-reasons       { grid-template-columns: 1fr; }
  .oasio-math-inner    { grid-template-columns: 1fr; gap: 40px; }
  .oasio-math-visual   { min-width: 0; white-space: normal; }
  .oasio-get-grid      { grid-template-columns: 1fr; }
  .oasio-get-left      { position: static; }
  .oasio-container     { padding: 0 24px; }
  .oasio-manifesto-inner { padding: 0 24px; }
}
