@import url('/assets/app.css');

:root {
    --ios-bg-1: #f7f9ff;
    --ios-bg-2: #eef2ff;
    --ios-accent: #ff2d80;
    --ios-accent-2: #7d5fff;
    --ios-text: #111325;
    --ios-muted: #69708a;
    --ios-border: rgba(122, 136, 189, 0.2);
    --ios-shadow: 0 14px 38px rgba(42, 57, 126, 0.14);
}

body {
    background:
        radial-gradient(circle at 15% -10%, #dbe3ff 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, #ffd8ef 0%, transparent 35%),
        linear-gradient(180deg, var(--ios-bg-1), var(--ios-bg-2));
    color: var(--ios-text);
}

.bg-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(35px);
    z-index: 0;
    pointer-events: none;
}

.bg-orb-1 {
    width: 220px;
    height: 220px;
    background: rgba(125, 95, 255, 0.35);
    top: 80px;
    right: -80px;
}

.bg-orb-2 {
    width: 180px;
    height: 180px;
    background: rgba(255, 45, 128, 0.22);
    top: 45vh;
    left: -90px;
}

.container {
    width: min(1160px, 92%);
    position: relative;
    z-index: 1;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(18, 22, 49, 0.74);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-copy strong {
    display: block;
    font-size: 14px;
}

.brand-copy small {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}

.hero,
.calculator,
.auth-box,
.admin-box {
    border-radius: 18px;
    box-shadow: var(--ios-shadow);
    backdrop-filter: blur(14px);
}

.hero-premium {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

.eyebrow {
    display: inline-block;
    margin: 0;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(125, 95, 255, 0.12);
    color: #4e3ea3;
    font-weight: 700;
    font-size: 12px;
}

.hero-copy h1 {
    margin: 8px 0 12px;
    font-size: clamp(30px, 5vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero-copy p {
    color: #444b67;
}

.hero-actions {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-note {
    color: var(--ios-muted);
    font-size: 13px;
}

.graphic-slot {
    width: 100%;
    min-height: 230px;
    border-radius: 16px;
    border: 1px dashed rgba(125, 95, 255, 0.5);
    background: linear-gradient(140deg, rgba(125, 95, 255, 0.08), rgba(255, 45, 128, 0.08));
    padding: 16px;
    color: #4a4d6b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 6px;
}

.graphic-slot strong {
    font-size: 22px;
    color: #3f376f;
}

.graphic-slot-image {
    border: none;
    background: transparent;
    padding: 0;
    min-height: auto;
}

.hero-graphic-image {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.slot-graphic-image {
    width: 100%;
    height: 100%;
    min-height: 230px;
    border-radius: 12px;
    display: block;
}

.slot-graphic-image-cover {
    object-fit: cover;
}

.slot-graphic-image-contain {
    object-fit: contain;
    background: rgba(255, 255, 255, 0.62);
}

.product-card-premium {
    min-height: 170px;
    animation: productCardIn 560ms ease forwards;
    opacity: 0;
    transform: translateY(12px);
}

.products-premium .product-card-premium:nth-child(1) {
    animation-delay: 40ms;
}

.products-premium .product-card-premium:nth-child(2) {
    animation-delay: 120ms;
}

.products-premium .product-card-premium:nth-child(3) {
    animation-delay: 200ms;
}

.product-icon-slot {
    width: 128px;
    height: 128px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(125, 95, 255, 0.2);
    box-shadow:
        0 10px 22px rgba(98, 82, 174, 0.2),
        0 2px 6px rgba(98, 82, 174, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #4b3d8f;
    margin: 0 auto 16px;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card-premium:hover .product-icon-slot {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 14px 28px rgba(98, 82, 174, 0.24),
        0 4px 10px rgba(98, 82, 174, 0.16);
}

.product-icon-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.order-layout {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 18px;
    align-items: start;
}

.order-main {
    display: grid;
    gap: 14px;
}

.dimension-control label {
    display: block;
    margin-bottom: 6px;
}
.dimension-input-row {
    display: grid;
    grid-template-columns: 44px minmax(90px, 120px) 44px;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}
.dimension-input-row input[type="number"] {
    text-align: center;
    font-weight: 700;
}
.dimension-btn {
    height: 42px;
    border: 1px solid rgba(122, 136, 189, 0.25);
    background: #fff;
    color: var(--ios-text);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}
.dimension-btn:hover {
    filter: brightness(0.98);
}
.size-presets {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.size-presets-label {
    font-size: 12px;
    color: var(--ios-muted);
    font-weight: 700;
}
.size-preset-btn {
    border: 1px solid rgba(122, 136, 189, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #364061;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}
.size-preset-btn:hover {
    background: rgba(125, 95, 255, 0.1);
}

.order-side {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 92px;
}

.glass-card {
    border: 1px solid rgba(122, 136, 189, 0.18);
    border-radius: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--ios-muted);
    padding: 0;
    margin: 2px 0 10px;
}
.summary-row span:last-child {
    font-weight: 600;
    color: var(--ios-text);
}
.summary-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,.08);
    margin: 10px 0 12px;
}

.summary-print-title {
    margin: 8px 0 6px;
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--ios-text);
}
.summary-print-title span {
    display: block;
    font-size: 34px;
    font-weight: 800;
}

.summary-shipping-title {
    margin: 0;
    font-size: 19px;
    color: #3f376f;
}
.summary-shipping-title span {
    font-weight: 700;
}

.summary-total-title {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.2;
    color: var(--ios-text);
}
.summary-total-title #priceValueNet {
    font-weight: 800;
}
.summary-total-title .summary-total-gross {
    font-size: 18px;
    color: var(--ios-muted);
    font-weight: 600;
}

.summary-card #priceValueGross {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.submit-order-main {
    width: 100%;
}

.cta,
button {
    background: linear-gradient(135deg, var(--ios-accent), var(--ios-accent-2));
    border-radius: 12px;
}

label {
    font-size: 13px;
    color: #4a536f;
    font-weight: 500;
}

input:focus, select:focus, textarea:focus {
    border-color: #8d79ff;
    box-shadow: 0 0 0 4px rgba(125, 95, 255, 0.14);
}

@keyframes productCardIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── About page ── */
.about-lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ios-fg);
}
.about-hero-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}
.about-feature {
    text-align: center;
    padding: 28px 20px;
}
.about-icon {
    font-size: 36px;
    margin-bottom: 10px;
}
.about-feature h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--ios-fg);
}
.about-feature p {
    font-size: 13.5px;
    color: var(--ios-muted);
    line-height: 1.65;
}
.about-data-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 500px;
}
.about-data-table td {
    padding: 7px 14px 7px 0;
    font-size: 14px;
}
.about-data-table td:first-child {
    font-weight: 600;
    white-space: nowrap;
    color: var(--ios-fg);
}
.about-data-table td:last-child {
    color: var(--ios-muted);
}
.about-data-table a {
    color: var(--ios-accent);
    text-decoration: none;
}
.about-data-table a:hover {
    text-decoration: underline;
}

/* ── Footer ── */
.site-footer {
    margin-top: 60px;
    padding: 32px 0 24px;
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0,0,0,.06);
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--ios-muted);
}
.footer-brand strong {
    color: var(--ios-fg);
    font-size: 14px;
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    color: var(--ios-accent);
    text-decoration: none;
    font-weight: 500;
    transition: opacity .2s;
}
.footer-links a:hover {
    opacity: .7;
}
.footer-copy {
    width: 100%;
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,.06);
    font-size: 12px;
}

@media (max-width: 980px) {
    .hero-premium {
        grid-template-columns: 1fr;
    }

    .order-layout {
        grid-template-columns: 1fr;
    }

    .order-side {
        position: static;
    }

    .dimension-input-row {
        grid-template-columns: 46px 1fr 46px;
    }

    .size-preset-btn {
        font-size: 13px;
        padding: 8px 12px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

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

.brand-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* ── HERO ACCENT ── */
.hero-accent {
  color: #e6007e;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s;
}
.cta-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.trust-icon {
  color: #e6007e;
  font-weight: 700;
}
.hero-price-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: #e6007e;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(230,0,126,0.35);
}
.hero-visual-card {
  position: relative;
}

/* ── SECTION HEADERS ── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e6007e;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c2666;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.section-sub {
  color: #666;
  margin-bottom: 2rem;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 80px 0;
  background: #f8f7ff;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(44,38,102,0.08);
  position: relative;
}
.step-number {
  width: 48px;
  height: 48px;
  background: #2c2666;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2666;
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ── PORTFOLIO ── */
.portfolio-section {
  padding: 80px 0;
  background: #fff;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.portfolio-item {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
}
.portfolio-placeholder {
  background: linear-gradient(135deg, #f0eeff, #ffe0f3);
  border: 1px dashed rgba(230,0,126,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-ph-inner {
  font-size: 0.8rem;
  color: rgba(44,38,102,0.4);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.portfolio-item:hover img {
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── REVIEWS ── */
.reviews-section {
  padding: 80px 0;
  background: #f8f7ff;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(44,38,102,0.08);
}
.review-stars {
  color: #e6007e;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.review-text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(230,0,126,0.1);
  border: 1px solid rgba(230,0,126,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e6007e;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: 0.85rem;
  color: #2c2666;
}
.review-author span {
  font-size: 0.75rem;
  color: #999;
}
.reviews-google-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  background: rgba(230,0,126,0.06);
  border: 1px solid rgba(230,0,126,0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  flex-wrap: wrap;
}
.google-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e6007e;
}
.google-label {
  font-size: 0.9rem;
  color: #666;
}
.google-cta {
  margin-left: auto;
  color: #e6007e;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.google-cta:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ── WHY US ── */
.why-us-section {
  padding: 80px 0;
  background: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.why-card {
  background: #f8f7ff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(44,38,102,0.08);
}
.why-card-accent {
  background: rgba(230,0,126,0.06);
  border-color: rgba(230,0,126,0.2);
}
.why-number {
  font-size: 2rem;
  font-weight: 800;
  color: #2c2666;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.why-card-accent .why-number {
  color: #e6007e;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2666;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ── HERO TRUST FIX ── */
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(44,38,102,0.55);
  background: rgba(44,38,102,0.05);
  border: 1px solid rgba(44,38,102,0.10);
  border-radius: 20px;
  padding: 5px 12px;
}
.trust-icon {
  color: #e6007e;
  font-weight: 700;
}

/* ── iOS STYLE – GLOBAL RESET ── */
body {
  background: #f5f5f7;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display',
               'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── iOS HERO ── */
.hero.hero-premium {
  background: #fff;
  border-radius: 20px;
  margin: 16px;
  padding: 48px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.hero-copy h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  line-height: 1.1;
}
.hero-accent { color: #e6007e; }
.hero-sub {
  font-size: 1rem;
  color: #6e6e73;
  line-height: 1.6;
  margin-top: 0.75rem;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e6007e;
  margin-bottom: 0.75rem;
}

/* ── iOS SECTIONS ── */
.how-it-works,
.portfolio-section,
.reviews-section,
.why-us-section {
  background: #f5f5f7;
  padding: 72px 0;
}
.how-it-works { background: #fff; margin: 0 16px 16px; border-radius: 20px; }
.portfolio-section { background: #fff; margin: 0 16px 16px; border-radius: 20px; }
.reviews-section { background: #f5f5f7; }
.why-us-section { background: #fff; margin: 0 16px 16px; border-radius: 20px; }

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e6007e;
  margin-bottom: 4px;
}
.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1d1d1f;
  margin-bottom: 8px;
}
.section-sub { color: #6e6e73; font-size: 0.95rem; }

/* ── iOS STEP CARDS ── */
.step-card {
  background: #f5f5f7;
  border: none;
  border-radius: 18px;
  padding: 2rem;
}
.step-number {
  background: #e6007e;
  width: 44px; height: 44px;
  font-size: 1.1rem;
}
.step-card h3 { color: #1d1d1f; font-weight: 600; }
.step-card p { color: #6e6e73; }

/* ── iOS PRODUCT CARDS ── */
.products.products-premium {
  margin: 0 16px 16px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
}
.glass-card {
  border-radius: 16px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  backdrop-filter: none !important;
}

/* ── iOS KALKULATOR ── */
.calculator.calculator-premium {
  background: #fff;
  margin: 0 16px 16px;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.order-layout { gap: 2rem; }

/* ── iOS REVIEW CARDS ── */
.review-card {
  background: #fff;
  border: none;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* ── iOS WHY CARDS ── */
.why-card {
  background: #f5f5f7;
  border: none;
  border-radius: 18px;
}
.why-card-accent {
  background: rgba(230,0,126,0.06);
}
.why-number {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1d1d1f;
}
.why-card-accent .why-number { color: #e6007e; }

/* ── iOS PORTFOLIO ── */
.portfolio-placeholder {
  background: #f5f5f7;
  border: 1px dashed rgba(230,0,126,0.25);
  border-radius: 14px;
}
.portfolio-ph-inner { color: #aeaeb2; font-size: 0.8rem; }

/* ── iOS NAVBAR ── */
.topbar {
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 0.5px solid rgba(0,0,0,0.1);
}
.brand-logo-img { filter: none; }

/* ── iOS CTA BUTTON ── */
.cta {
  background: #e6007e !important;
  border-radius: 980px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  padding: 0.75rem 1.5rem !important;
  box-shadow: 0 4px 16px rgba(230,0,126,0.3) !important;
}
.cta-ghost {
  border-radius: 980px !important;
  border-color: rgba(0,0,0,0.15) !important;
  color: #1d1d1f !important;
}

/* ── iOS GOOGLE BAR ── */
.reviews-google-bar {
  background: #f5f5f7;
  border: none;
  border-radius: 14px;
}

/* ── NAVBAR FIX ── */
.topbar {
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 0.5px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06) !important;
}

.nav a,
.nav-link,
.topbar .nav a,
.topbar a {
  color: #1d1d1f !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  opacity: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

@media (max-width: 480px) {
  .nav a,
  .topbar .nav a,
  .topbar a {
    font-size: 0.75rem !important;
  }
  .brand-logo-img {
    height: 30px !important;
  }
}

@media (max-width: 768px) {
  .products.products-premium,
  .calculator.calculator-premium {
    margin: 0 8px 12px !important;
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }
  .glass-card {
    padding: 16px !important;
  }
  html, body {
    overflow-x: hidden;
  }
  .bg-orb-1,
  .bg-orb-2 {
    display: none;
  }
}

.nav a:hover,
.topbar a:hover {
  color: #e6007e !important;
}

.topbar .brand-copy strong,
.topbar .brand-copy small {
  color: #1d1d1f !important;
}

.topbar .brand-copy small {
  color: #6e6e73 !important;
}

/* ── TATUIN BAR ── */
.tatuin-bar {
  text-align: center;
  padding: 12px 16px;
  background: transparent;
}
.tatuin-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e6007e;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 980px;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 16px rgba(230,0,126,0.25);
  transition: opacity 0.2s, transform 0.15s;
}
.tatuin-bar-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── BUTTON CURSOR FIX ── */
.cta,
.cta-ghost,
.nav-tatuin-btn,
button,
input[type="submit"],
input[type="button"],
.summary-card a,
[class*="btn"] {
  cursor: pointer !important;
}

.cta:hover {
  opacity: 0.88 !important;
  transform: translateY(-1px) !important;
  transition: opacity 0.2s, transform 0.15s !important;
}

/* Project flow – dwa obrazy obok siebie (desktop) / jeden pod drugim (mobile) */
.project-flow-wrap {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}
.project-flow-img {
  flex: 1 1 0;
  width: 50%;
  max-width: 50%;
}
@media (max-width: 768px) {
  .project-flow-wrap {
    flex-direction: column;
  }
  .project-flow-img {
    width: 100%;
    max-width: 100%;
  }
}
