/*
 * Hlavni (verejna) stranka - App\Presentation\Home.
 *
 * Vlastni stylopis, zamerne oddeleny od app.css: verejna stranka nema
 * sidebar ani topbar aplikace a ma vlastni sadu barevnych tokenu. Nacita
 * ji jen layout presenteru Home, takze do aplikace nezasahuje.
 *
 * Zadny webfont: CSP ma default-src 'self' a font-src 'self' data:, a
 * stranka sama slibuje, ze aplikace nic netahne z CDN. Pisma jsou systemova.
 */

:root {
	--paper:        #f1f3f7;
	--sheet:        #ffffff;
	--sheet-sunk:   #e9ecf2;
	--ink:          #131a2a;
	--ink-2:        #4a536b;
	--ink-3:        #5f687a;
	--rule:         #dbe0e9;
	--rule-strong:  #c3cad7;
	--accent:       #363ba6;
	--accent-ink:   #ffffff;
	--accent-soft:  #e6e8f7;
	--accent-line:  #b9bde9;
	--stamp:        #a82d25;
	--stamp-soft:   #f7e6e4;
	--shadow-sm:    0 1px 0 rgba(19, 26, 42, .04), 0 6px 18px -12px rgba(19, 26, 42, .28);
	--shadow-lg:    0 2px 4px rgba(19, 26, 42, .05), 0 22px 50px -28px rgba(19, 26, 42, .42);

	/* Pisma jsou systemova: aplikace nesmi nic tahat z CDN a CSP ma
	   font-src 'self' data:. Zadny webfont se tedy nenacita. */
	--f-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
	--f-body:    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--f-mono:    ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme]) {
		--paper:       #0e1118;
		--sheet:       #161b26;
		--sheet-sunk:  #1b212e;
		--ink:         #e8ebf2;
		--ink-2:       #a6afc2;
		--ink-3:       #838c9f;
		--rule:        #262d3c;
		--rule-strong: #364054;
		--accent:      #a9aef8;
		--accent-ink:  #10132b;
		--accent-soft: #1d2140;
		--accent-line: #3d4479;
		--stamp:       #f0897e;
		--stamp-soft:  #34191a;
		--shadow-sm:   0 1px 0 rgba(0, 0, 0, .35), 0 8px 22px -14px rgba(0, 0, 0, .8);
		--shadow-lg:   0 2px 4px rgba(0, 0, 0, .4), 0 26px 56px -30px rgba(0, 0, 0, .9);
	}
}

:root[data-theme="dark"] {
	--paper:       #0e1118;
	--sheet:       #161b26;
	--sheet-sunk:  #1b212e;
	--ink:         #e8ebf2;
	--ink-2:       #a6afc2;
	--ink-3:       #838c9f;
	--rule:        #262d3c;
	--rule-strong: #364054;
	--accent:      #a9aef8;
	--accent-ink:  #10132b;
	--accent-soft: #1d2140;
	--accent-line: #3d4479;
	--stamp:       #f0897e;
	--stamp-soft:  #34191a;
	--shadow-sm:   0 1px 0 rgba(0, 0, 0, .35), 0 8px 22px -14px rgba(0, 0, 0, .8);
	--shadow-lg:   0 2px 4px rgba(0, 0, 0, .4), 0 26px 56px -30px rgba(0, 0, 0, .9);
}

* { box-sizing: border-box; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--f-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--f-display); text-wrap: balance; margin: 0; }
h1 { font-size: clamp(2.3rem, 5.4vw, 3.75rem); font-weight: 600; letter-spacing: -.024em; line-height: 1.05; }
h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); font-weight: 600; letter-spacing: -.015em; line-height: 1.14; }
h3 { font-size: 1.06rem; font-weight: 600; letter-spacing: -.006em; }
h4 { font-size: .95rem; font-weight: 600; }
p { margin: 0; }

.eyebrow {
	font-family: var(--f-mono);
	font-size: .71rem;
	font-weight: 500;
	letter-spacing: .17em;
	text-transform: uppercase;
	color: var(--ink-3);
}

.lead {
	font-family: var(--f-display);
	font-size: clamp(1.1rem, 2.1vw, 1.3rem);
	line-height: 1.55;
	color: var(--ink-2);
	max-width: 56ch;
}

.note { font-size: .86rem; line-height: 1.55; color: var(--ink-3); max-width: 70ch; }
.note strong, .note b { color: var(--ink-2); font-weight: 600; }

code, .mono { font-family: var(--f-mono); font-size: .87em; }
.param {
	font-family: var(--f-mono);
	font-size: .82em;
	background: var(--accent-soft);
	color: var(--accent);
	padding: .06em .28em;
	border-radius: 2px;
	white-space: nowrap;
}

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	border-radius: 3px;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); }

/* --- horni lista --------------------------------------------------------- */

.topbar {
	position: sticky;
	top: 0;
	z-index: 10;
	background: var(--paper);
	background: color-mix(in srgb, var(--paper) 88%, transparent);
	backdrop-filter: blur(9px);
	border-bottom: 1px solid var(--rule);
}
.topbar__in { display: flex; align-items: center; gap: 1.4rem; height: 58px; }

.wordmark {
	font-family: var(--f-display);
	font-size: 1.16rem;
	font-weight: 700;
	letter-spacing: -.02em;
	color: var(--ink);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: .5rem;
}
.wordmark span.mk {
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 26px;
	border: 1.5px solid var(--accent);
	border-radius: 2px;
	font-family: var(--f-mono);
	font-size: .62rem;
	font-weight: 600;
	color: var(--accent);
}

.topnav { display: flex; gap: 1.25rem; margin-left: auto; }
.topnav a { font-size: .86rem; color: var(--ink-2); text-decoration: none; }
.topnav a:hover { color: var(--accent); }
@media (max-width: 780px) { .topnav { display: none; } }

.btn {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-family: var(--f-body);
	font-size: .87rem;
	font-weight: 500;
	padding: .5rem .95rem;
	border-radius: 3px;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background .15s, border-color .15s;
}
.btn--fill { background: var(--accent); color: var(--accent-ink); }
.btn--fill:hover { background: color-mix(in srgb, var(--accent) 86%, var(--ink)); }
.btn--line { border-color: var(--rule-strong); color: var(--ink); background: transparent; }
.btn--line:hover { border-color: var(--accent); color: var(--accent); }
.topbar .btn { flex: none; }

/* --- hero ---------------------------------------------------------------- */

.hero { padding: clamp(2.8rem, 7vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem); }
.hero__grid { display: grid; gap: clamp(2.2rem, 5vw, 4rem); grid-template-columns: minmax(0, 1fr) minmax(0, 392px); align-items: start; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: minmax(0, 1fr); } }

.hero__text { display: flex; flex-direction: column; gap: 1.35rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.hero__cta .btn { padding: .62rem 1.15rem; font-size: .92rem; }

.facts { display: grid; grid-template-columns: repeat(4, minmax(0, max-content)); gap: .2rem 1.9rem; margin-top: .4rem; }
@media (max-width: 560px) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.facts div { display: flex; flex-direction: column; gap: .1rem; padding: .55rem 0; }
.facts dt { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }
.facts dd { margin: 0; font-family: var(--f-display); font-size: 1.16rem; font-weight: 600; font-variant-numeric: tabular-nums; }

/* --- listina A4 v hero --------------------------------------------------- */

.sheetbox { position: relative; padding: 26px 0 0 30px; }

.dim {
	position: absolute;
	font-family: var(--f-mono);
	font-size: .62rem;
	letter-spacing: .08em;
	color: var(--ink-3);
}
.dim--top {
	top: 0;
	left: 30px;
	right: 0;
	height: 18px;
	text-align: center;
	border-left: 1px solid var(--rule-strong);
	border-right: 1px solid var(--rule-strong);
}
.dim--top::after {
	content: "";
	position: absolute;
	left: 0; right: 0; top: 9px;
	border-top: 1px dashed var(--rule-strong);
	z-index: -1;
}
.dim--top span { background: var(--paper); padding: 0 .4rem; position: relative; }
.dim--left {
	left: 0;
	top: 26px;
	bottom: 0;
	width: 18px;
	border-top: 1px solid var(--rule-strong);
	border-bottom: 1px solid var(--rule-strong);
	display: grid;
	place-items: center;
}
.dim--left span {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	background: var(--paper);
	padding: .4rem 0;
}
.dim--left::after {
	content: "";
	position: absolute;
	top: 0; bottom: 0; left: 9px;
	border-left: 1px dashed var(--rule-strong);
	z-index: -1;
}

.sheet {
	background: var(--sheet);
	border: 1px solid var(--rule);
	border-radius: 2px;
	box-shadow: var(--shadow-lg);
	padding: 8.5% 9% 7%;
	font-size: .78rem;
	line-height: 1.62;
	color: var(--ink-2);
	position: relative;
	overflow: hidden;
}
.sheet::after {
	content: "VZOR";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-family: var(--f-display);
	font-size: 4.6rem;
	font-weight: 700;
	letter-spacing: .12em;
	color: var(--ink);
	opacity: .045;
	transform: rotate(-24deg);
	pointer-events: none;
}
.sheet__kicker { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); text-align: center; }
.sheet h4 {
	font-size: 1.12rem;
	text-align: center;
	letter-spacing: .04em;
	color: var(--ink);
	margin: .5rem 0 .1rem;
	text-transform: uppercase;
}
.sheet__sub { text-align: center; font-size: .68rem; color: var(--ink-3); margin-bottom: 1.15rem; }
.sheet p + p { margin-top: .5rem; }
.sheet__rule { height: 1px; background: var(--rule); margin: 1.05rem 0; }
.sheet__sign { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-top: 1.5rem; }
.sheet__line { flex: 1; }
.sheet__line i { display: block; border-top: 1px solid var(--rule-strong); margin-bottom: .25rem; }
.sheet__line small { font-size: .6rem; color: var(--ink-3); }
.sheet__stamp {
	flex: none;
	width: 62px;
	height: 62px;
	border: 1.5px solid var(--stamp);
	border-radius: 50%;
	display: grid;
	place-items: center;
	text-align: center;
	font-family: var(--f-mono);
	font-size: .44rem;
	line-height: 1.25;
	letter-spacing: .06em;
	color: var(--stamp);
	transform: rotate(-9deg);
	opacity: .82;
}

.sheetbox__cap { margin-top: .85rem; font-size: .76rem; color: var(--ink-3); line-height: 1.5; }

/* --- sekce --------------------------------------------------------------- */

section { padding: clamp(2.8rem, 6.5vw, 4.6rem) 0; border-top: 1px solid var(--rule); }
section:first-of-type { border-top: 0; }

.sec-head { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.9rem; max-width: 62ch; }
.sec-head h2 { margin-top: .2rem; }

.ticks {
	height: 9px;
	border-top: 1px solid var(--rule-strong);
	background-image: repeating-linear-gradient(90deg, var(--rule-strong) 0 1px, transparent 1px 9px);
	background-size: 100% 5px;
	background-repeat: no-repeat;
	max-width: 170px;
}

/* --- ctyri zaklady ------------------------------------------------------- */

.pillars { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); }
.pillar {
	background: var(--sheet);
	border: 1px solid var(--rule);
	border-radius: 3px;
	padding: 1.15rem 1.2rem 1.25rem;
	box-shadow: var(--shadow-sm);
}
.pillar h3 { margin-bottom: .5rem; }
.pillar p { font-size: .88rem; line-height: 1.55; color: var(--ink-2); }
.pillar__no {
	font-family: var(--f-mono);
	font-size: .64rem;
	letter-spacing: .14em;
	color: var(--accent);
	display: block;
	margin-bottom: .7rem;
}

/* --- postup (opravdova posloupnost) ------------------------------------- */

.steps { display: grid; gap: 0; }
.step {
	display: grid;
	grid-template-columns: 2.4rem minmax(0, 15ch) minmax(0, 1fr);
	gap: 1.2rem;
	padding: 1.15rem 0;
	border-top: 1px solid var(--rule);
	align-items: baseline;
}
.step:first-child { border-top: 0; }
@media (max-width: 720px) { .step { grid-template-columns: 2.2rem minmax(0, 1fr); } .step p { grid-column: 2; } }
.step__no { font-family: var(--f-mono); font-size: .78rem; color: var(--accent); font-variant-numeric: tabular-nums; }
.step h3 { line-height: 1.3; }
.step p { font-size: .89rem; line-height: 1.6; color: var(--ink-2); }
.step p + p { margin-top: .45rem; }

/* --- dvousloupec s vypisem ---------------------------------------------- */

.duo { display: grid; gap: clamp(1.6rem, 4vw, 3rem); grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); align-items: start; }

.deflist { display: flex; flex-direction: column; gap: 0; }
.deflist > div { padding: .78rem 0; border-top: 1px solid var(--rule); }
.deflist > div:first-child { border-top: 0; padding-top: 0; }
.deflist dt { font-size: .89rem; font-weight: 600; color: var(--ink); margin-bottom: .18rem; }
.deflist dd { margin: 0; font-size: .85rem; line-height: 1.55; color: var(--ink-2); }

.chips { display: flex; flex-wrap: wrap; gap: .38rem; }
.chip {
	font-family: var(--f-mono);
	font-size: .72rem;
	padding: .25rem .5rem;
	border: 1px solid var(--rule-strong);
	border-radius: 2px;
	color: var(--ink-2);
	background: var(--sheet);
}
.chip--on { border-color: var(--accent-line); color: var(--accent); background: var(--accent-soft); }

/* --- prepis parametru --------------------------------------------------- */

.rewrite { display: flex; flex-direction: column; gap: 0; background: var(--sheet); border: 1px solid var(--rule); border-radius: 3px; overflow: hidden; }
.rewrite__row { display: grid; grid-template-columns: minmax(0, 1fr) 1.6rem minmax(0, 1fr); gap: .8rem; align-items: center; padding: .8rem 1rem; border-top: 1px solid var(--rule); font-size: .82rem; }
.rewrite__row:first-child { border-top: 0; }
.rewrite__row .arrow { font-family: var(--f-mono); color: var(--ink-3); text-align: center; }
.rewrite__from { color: var(--ink-2); font-family: var(--f-display); font-size: .92rem; }
.rewrite__to { font-family: var(--f-mono); font-size: .78rem; color: var(--ink); line-height: 1.5; }
@media (max-width: 620px) {
	.rewrite__row { grid-template-columns: minmax(0, 1fr); gap: .3rem; }
	.rewrite__row .arrow { text-align: left; }
}

/* --- tabulky ------------------------------------------------------------- */

.scroller { overflow-x: auto; border: 1px solid var(--rule); border-radius: 3px; background: var(--sheet); }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: .83rem; }
th, td { text-align: left; padding: .58rem .8rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
thead th {
	font-family: var(--f-mono);
	font-size: .65rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ink-3);
	background: var(--sheet-sunk);
	white-space: nowrap;
}
tbody th { font-weight: 600; color: var(--ink); white-space: nowrap; }
td { color: var(--ink-2); font-variant-numeric: tabular-nums; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }

/* --- kod ----------------------------------------------------------------- */

pre {
	margin: 0;
	background: var(--sheet);
	border: 1px solid var(--rule);
	border-radius: 3px;
	padding: 1rem 1.1rem;
	overflow-x: auto;
	font-family: var(--f-mono);
	font-size: .77rem;
	line-height: 1.7;
	color: var(--ink-2);
}
pre b { color: var(--accent); font-weight: 600; }
pre i { color: var(--ink-3); font-style: normal; }

/* --- plany --------------------------------------------------------------- */

.plans { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(212px, 1fr)); }
.plan { background: var(--sheet); border: 1px solid var(--rule); border-radius: 3px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.plan__band { height: 3px; background: var(--rule-strong); }
.plan--pick { border-color: var(--accent-line); }
.plan--pick .plan__band { background: var(--accent); }
.plan__body { padding: 1.05rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.plan__top { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.stamp-badge {
	font-family: var(--f-mono);
	font-size: .55rem;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--accent);
	border: 1.5px solid var(--accent-line);
	border-radius: 3px;
	padding: .18rem .34rem;
	transform: rotate(-3deg);
	white-space: nowrap;
	flex: none;
}
.plan__price { display: flex; align-items: baseline; gap: .3rem; flex-wrap: wrap; }
.plan__price b { font-family: var(--f-display); font-size: 1.72rem; font-weight: 600; letter-spacing: -.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.plan__price span { font-size: .78rem; color: var(--ink-3); }
.plan ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .35rem; }
.plan li { font-size: .84rem; line-height: 1.45; color: var(--ink-2); padding-left: 1rem; position: relative; }
.plan li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 1.5px; background: var(--rule-strong); }
.plan li b { color: var(--ink); font-weight: 600; }

/* --- zaver --------------------------------------------------------------- */

.closer {
	background: var(--sheet);
	border: 1px solid var(--rule);
	border-radius: 4px;
	padding: clamp(1.5rem, 4vw, 2.4rem);
	display: flex;
	flex-wrap: wrap;
	gap: 1.4rem;
	align-items: center;
	justify-content: space-between;
	box-shadow: var(--shadow-sm);
}
.closer h2 { max-width: 34ch; }
.closer .note { margin-top: .5rem; }

footer { border-top: 1px solid var(--rule); padding: 1.6rem 0 3.2rem; }
.footer__in { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; align-items: baseline; }
footer p { font-size: .78rem; color: var(--ink-3); max-width: 62ch; line-height: 1.55; }

/* --- nabeh --------------------------------------------------------------- */

.rise { animation: rise .62s cubic-bezier(.22, .7, .3, 1) both; }
.rise:nth-child(1) { animation-delay: .02s; }
.rise:nth-child(2) { animation-delay: .09s; }
.rise:nth-child(3) { animation-delay: .16s; }
.rise:nth-child(4) { animation-delay: .23s; }
.rise:nth-child(5) { animation-delay: .30s; }
@keyframes rise { from { opacity: 0; transform: translateY(11px); } to { opacity: 1; transform: none; } }
.sheetbox { animation: rise .8s cubic-bezier(.22, .7, .3, 1) .18s both; }
@media (prefers-reduced-motion: reduce) {
	.rise, .sheetbox { animation: none; }
}

/* --- doplnky pro beh v aplikaci ------------------------------------------ */

/* Na uzkem displeji uz se vedle vyzvy druhe tlacitko nevejde. */
@media (max-width: 560px) {
	.topbar__login { display: none; }
}

/* Hlasky (napr. po odhlaseni) - app.css se tu nenacita, tak minimum vlastniho. */
.flashes { max-width: 1120px; margin: 0 auto; padding: .9rem clamp(1.1rem, 4vw, 2.5rem) 0; display: flex; flex-direction: column; gap: .5rem; }
.alert { padding: .7rem .9rem; border-radius: 3px; font-size: .87rem; border: 1px solid var(--rule); background: var(--sheet); color: var(--ink-2); }
.alert--success { border-color: var(--accent-line); background: var(--accent-soft); color: var(--accent); }
.alert--error, .alert--danger { border-color: var(--stamp); background: var(--stamp-soft); color: var(--stamp); }

/* Samostatny cenik a kalkulacka */
.pricing-hero { padding: clamp(3.2rem, 8vw, 6.5rem) 0 2.5rem; text-align: center; }
.pricing-hero .eyebrow { display: block; margin-bottom: 1rem; }
.pricing-hero h1 { max-width: 16ch; margin-inline: auto; }
.pricing-hero .lead { margin: 1.1rem auto 0; max-width: 62ch; }
.pricing-plans { margin-top: 1.8rem; }
.plan__cta { margin-top: auto; padding-top: .25rem; }
.plan__cta .btn { width: 100%; justify-content: center; }
.pricing-note { margin-top: 1rem; border-left: 3px solid var(--accent); padding: .8rem 1rem; background: var(--accent-soft); color: var(--ink-2); font-size: .84rem; }
.calculator { display: grid; grid-template-columns: minmax(0,.9fr) minmax(300px,1.1fr); gap: clamp(1.5rem,5vw,4rem); background: var(--sheet); border: 1px solid var(--rule); border-radius: 6px; padding: clamp(1.25rem,4vw,2.4rem); box-shadow: var(--shadow-lg); }
.calculator__form { display: flex; flex-direction: column; gap: 1.25rem; }
.calc-field { display: grid; grid-template-columns: 1fr auto; gap: .35rem 1rem; align-items: center; }
.calc-field label { font-size: .88rem; font-weight: 600; }
.calc-field output { font: 600 .82rem var(--f-mono); color: var(--accent); }
.calc-field input[type="range"] { grid-column: 1/-1; width: 100%; accent-color: var(--accent); }
.calc-field small { grid-column: 1/-1; color: var(--ink-3); font-size: .72rem; }
.calculator__result { background: var(--accent-soft); border: 1px solid var(--accent-line); border-radius: 4px; padding: 1.35rem; display: flex; flex-direction: column; justify-content: center; gap: 1.15rem; }
.calc-result { display: grid; grid-template-columns: 1fr auto; gap: .35rem 1rem; padding-bottom: .9rem; border-bottom: 1px solid var(--accent-line); }
.calc-result span { color: var(--ink-2); font-size: .84rem; }
.calc-result strong { font-family: var(--f-display); font-size: 1.35rem; text-align: right; }
.calc-result small { grid-column: 1/-1; color: var(--ink-3); font-size: .72rem; }
.calculator__note { font-size: .72rem; color: var(--ink-3); line-height: 1.5; }
.comparison td:not(:first-child), .comparison th:not(:first-child) { text-align: center; }
.comparison .yes { color: var(--accent); font-weight: 700; }
@media (max-width:760px) { .calculator { grid-template-columns: 1fr; } .pricing-plans .plans { grid-template-columns: 1fr; } }
