Skip to content

Commit cc2debc

Browse files
committed
pricing enterprise scope update
1 parent fb92387 commit cc2debc

File tree

3 files changed

+46
-25
lines changed

3 files changed

+46
-25
lines changed

src/components/pricing/style.scss

Lines changed: 28 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
flex-flow: column;
55
align-items: center;
66
justify-content: flex-start;
7+
padding: 0 20px;
8+
box-sizing: border-box;
79

810
#pricing-toggle {
911
display: flex;
@@ -42,22 +44,40 @@
4244
justify-content: center;
4345

4446
.pricing-card {
45-
max-width: 255px;
47+
max-width: 320px;
4648
}
4749
}
4850

4951
@include break-up(sm) {
50-
grid-template-columns: repeat(auto-fit, 255px);
51-
column-gap: 25px;
52-
row-gap: 25px;
52+
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
53+
column-gap: 15px;
54+
row-gap: 30px;
5355
justify-content: center;
5456
}
5557

58+
@include break-up(md) {
59+
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
60+
column-gap: 20px;
61+
row-gap: 30px;
62+
justify-content: center;
63+
max-width: 620px;
64+
margin: 0 auto;
65+
}
66+
67+
@include break-up(lg) {
68+
grid-template-columns: repeat(4, minmax(280px, 320px));
69+
column-gap: 30px;
70+
row-gap: 30px;
71+
justify-content: center;
72+
max-width: none;
73+
margin: 0;
74+
}
75+
5676
@include break-up(xl) {
57-
grid-template-columns: repeat(auto-fit, 255px);
58-
// justify-content: space-between;
59-
column-gap: 25px;
60-
row-gap: 25px;
77+
grid-template-columns: repeat(4, 320px);
78+
column-gap: 30px;
79+
row-gap: 30px;
80+
justify-content: center;
6181
}
6282

6383
.pricing-card {

src/content/pricing/enterprise.mdx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ buttonText: "Contact Sales"
1414
- Custom user limits or unlimited
1515
- Custom VPN locations limit or unlimited
1616
- Custom [network devices](https://docs.defguard.net/admin-and-features/network-devices) (eg. IoT) limit or unlimited
17-
- Dedicated Support (SLA)
18-
17+
- [Offline license](https://docs.defguard.net/enterprise/license#offline-license)
18+
- Enterprise Support:
19+
- Guaranteed response within 1 business day
20+
- Dedicated representative
21+
- Pre-arranged calls for issue resolution
1922

src/pages/pricing.astro

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,10 @@ const tags = [
8181
<div id="get-evaluation-license" class="sla-support-wrapper">
8282
<div id="sla-support">
8383
<div class="left">
84-
<h2>Request offline or evalution license</h2>
84+
<h2>Evaluation license</h2>
8585
<p class="sla-description">
86-
The plans above are also available in offline mode - meaning no connection to our licensing server is requeired. If you're interested in offline license, please fill the form below.
87-
</br></br>
8886
For <strong>evaluations</strong> or proof-of-concept testing, we're happy to provide
89-
a trial license.
87+
a 14-day free of charge evaluation license. For convenience, please provide your company information (name, address and Tax Identification Number) in the form below.
9088
</p>
9189
</div>
9290
<ContentLimiter contentId="sla-support-content" maxWidth={1100}>
@@ -121,10 +119,10 @@ const tags = [
121119
}
122120

123121
#pricing-tiers {
124-
padding-bottom: calc(100px - var(--nav-height));
122+
padding-bottom: calc(50px - var(--nav-height));
125123

126124
@include break-up(md) {
127-
padding-bottom: calc(200px - var(--nav-height));
125+
padding-bottom: calc(80px - var(--nav-height));
128126
}
129127

130128
h1 {
@@ -249,7 +247,7 @@ const tags = [
249247
.sla-support-wrapper {
250248
width: 100%;
251249
background-color: var(--background-secondary, #f5f5f5);
252-
padding: 60px 0;
250+
padding: 40px 0 60px 0;
253251
}
254252

255253
#sla-support {
@@ -261,17 +259,13 @@ const tags = [
261259
width: 100%;
262260

263261
& > h2 {
264-
@include typography(paragraph);
262+
@include typography(h2);
265263
box-sizing: border-box;
266-
font-family: "Poppins";
267-
font-size: 36px;
268-
font-weight: 400;
269-
line-height: 1.14;
270264
padding-top: 20px;
271265
padding-left: 20px;
272266
padding-right: 20px;
273267
padding-bottom: 0;
274-
max-width: 1100px;
268+
max-width: 1500px;
275269
margin: 0 auto;
276270
word-wrap: break-word;
277271
overflow-wrap: break-word;
@@ -281,7 +275,6 @@ const tags = [
281275
padding-top: 54px;
282276
padding-left: 20px;
283277
padding-right: 20px;
284-
font-size: 55px;
285278
padding-bottom: 0;
286279
}
287280
}
@@ -306,7 +299,7 @@ const tags = [
306299
max-width: 1100px;
307300
margin: 0 auto;
308301
padding: 30px 20px;
309-
padding-bottom: 100px;
302+
padding-bottom: 30px;
310303
box-sizing: border-box;
311304
}
312305

@@ -335,6 +328,11 @@ const tags = [
335328
.book .double-inputs {
336329
z-index: 1000;
337330
}
331+
332+
/* Hide floating links on pricing page */
333+
#floating-links {
334+
display: none !important;
335+
}
338336
</style>
339337
</main>
340338
</BaseLayout>

0 commit comments

Comments
 (0)