Changes for page Public Web Site

Last modified by Agnease on 2026/05/30 16:24

From version 11.9
edited by Agnease
on 2026/05/22 08:47
Change comment: There is no comment for this version
To version 7.19
edited by Agnease
on 2026/05/12 20:17
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -10,13 +10,17 @@
10 10   Your trusted partner for professional XWiki services
11 11   </div>
12 12  
13 - <h1 id="hero-title">rofessional XWiki engineering and support</h1>
13 + <h1 id="hero-title">Reliable XWiki engineering for organizations that depend on their knowledge platform</h1>
14 14  
15 15   <p class="lead">
16 - Agnease helps organizations upgrade, maintain, secure and extend XWiki so production platforms stay stable,
17 - up-to-date and adapted to real business processes.
16 + Agnease helps companies keep XWiki secure, stable, up-to-date and adapted to real business processes.
18 18   </p>
19 19  
19 + <p class="hero-support">
20 + From LTS upgrades and maintenance to custom applications, integrations, workflows and migrations,
21 + Agnease provides focused XWiki expertise with practical delivery and long-term care.
22 + </p>
23 +
20 20   <ul class="benefits">
21 21   <li>Safe LTS upgrades</li>
22 22   <li>Support and recovery</li>
... ... @@ -142,7 +142,7 @@
142 142   </div>
143 143   </section>
144 144  
145 - <section class="resource-strip homepage-resource-strip" aria-labelledby="resources-title">
149 + <section class="resource-strip" aria-labelledby="resources-title">
146 146   <div class="container">
147 147   <h2 id="resources-title">Useful XWiki resources</h2>
148 148   <p class="section-intro">
XWiki.StyleSheetExtension[0]
code
... ... @@ -1,49 +1,51 @@
1 -/* ========== Agnease Public Website ========== */
1 +/* ==========================================================================
2 + Agnease Public Website
3 + Shared LESS for homepage, services, service pages, products, product pages,
4 + contact page, public menu and layout stabilization.
5 + ========================================================================== */
2 2  
7 +
8 +/* ==========================================================================
9 + 1. Brand variables
10 + ========================================================================== */
11 +
3 3  @brand: #00937D;
4 4  @brand-strong: #007B6A;
5 -@brand-soft: #E7FFF8;
6 -@brand-bg: #F4FCFA;
7 7  @text: #2D3A34;
8 8  @muted: #5B6B64;
9 9  @line: #E4ECE9;
10 -@radius: 16px;
11 -@shadow-sm: 0 6px 20px rgba(0, 0, 0, .06);
12 -@shadow: 0 12px 36px rgba(0, 0, 0, .08);
13 -@maxw: 1140px;
17 +@brand-bg: #F4FCFA;
18 +@brand-soft: #E7FFF8;
19 +@radius: 14px;
20 +@radius-sm: 10px;
21 +@shadow-sm: 0 10px 28px rgba(0, 0, 0, .06);
22 +@shadow-md: 0 12px 36px rgba(0, 0, 0, .10);
14 14  
15 -@section-padding: 30px 0;
16 -@section-padding-mobile: 28px 0;
17 17  
18 -/* ========== Base ========== */
25 +/* ==========================================================================
26 + 2. Global public layout
27 + ========================================================================== */
19 19  
20 -#mainContentArea {
21 - padding: 0;
29 +body {
30 + color: @text;
22 22  }
23 23  
24 24  .container {
25 - max-width: @maxw;
26 - margin-left: auto;
27 - margin-right: auto;
28 - padding-left: 18px;
29 - padding-right: 18px;
34 + max-width: 1040px;
35 + width: 100%;
30 30  }
31 31  
32 -html {
33 - scroll-behavior: smooth;
34 -}
38 +a {
39 + color: @brand;
35 35  
36 -section {
37 - padding: @section-padding;
38 - border-top: 1px solid @line;
39 -
40 - &:first-of-type {
41 - border-top: none;
41 + &:hover,
42 + &:focus {
43 + color: @brand-strong;
42 42   }
43 43  }
44 44  
45 -section[id] {
46 - scroll-margin-top: 92px;
47 +section {
48 + padding: 56px 0;
47 47  }
48 48  
49 49  h1,
... ... @@ -53,20 +53,33 @@
53 53   color: @text;
54 54  }
55 55  
58 +h1 {
59 + font-size: 36px;
60 + line-height: 1.2;
61 + font-weight: 700;
62 +}
63 +
56 56  h2 {
57 - text-align: center;
58 - margin-top: 0;
65 + font-size: 28px;
66 + line-height: 1.25;
67 + font-weight: 600;
59 59  }
60 60  
61 -.lead {
62 - color: @muted;
63 - text-align: center;
64 - margin-bottom: 0;
70 +h3 {
71 + font-size: 23px;
72 + line-height: 1.25;
73 + font-weight: 600;
65 65  }
66 66  
76 +h4 {
77 + font-size: 17px;
78 + line-height: 1.35;
79 + font-weight: 700;
80 +}
81 +
67 67  .section-intro {
68 68   max-width: 760px;
69 - margin: 0 auto 22px;
84 + margin: 0 auto 26px;
70 70   text-align: center;
71 71   color: @muted;
72 72   font-size: 16px;
... ... @@ -73,80 +73,212 @@
73 73   line-height: 1.55;
74 74  }
75 75  
76 -a {
91 +.compact-section {
92 + padding: 44px 0;
93 +}
94 +
95 +.card-link {
96 + margin: 0;
97 +
98 + a {
99 + color: @brand;
100 + font-weight: 800;
101 +
102 + &:hover,
103 + &:focus {
104 + color: @brand-strong;
105 + }
106 + }
107 +}
108 +
109 +
110 +/* ==========================================================================
111 + 3. Logo and header stabilization
112 + ========================================================================== */
113 +
114 +/*
115 + Prevent layout shift/flicker while the logo loads.
116 + Adjust selectors if your logo uses different classes.
117 +*/
118 +
119 +.navbar-brand,
120 +.agnease-logo-link {
121 + display: inline-flex;
122 + align-items: center;
123 + min-height: 58px;
124 + padding-top: 0;
125 + padding-bottom: 0;
126 +}
127 +
128 +.navbar-brand img,
129 +.agnease-logo,
130 +img.agnease-logo {
131 + display: block;
132 + width: auto;
133 + height: 48px;
134 + max-height: 48px;
135 +}
136 +
137 +/* Keep the public navbar visually clean. */
138 +.navbar {
139 + border: 0;
140 + box-shadow: none;
141 +}
142 +
143 +.navbar-nav > li > a {
77 77   color: @brand;
145 + font-weight: 700;
78 78  
79 79   &:hover,
80 80   &:focus {
81 81   color: @brand-strong;
150 + background: transparent;
82 82   }
83 83  }
84 84  
85 -/* ========== Header / Navigation ========== */
86 86  
87 -.site-header {
88 - position: sticky;
89 - top: 0;
90 - z-index: 1000;
91 - background: fade(#fff, 96%);
92 - border-bottom: 1px solid fade(@line, 85%);
93 - backdrop-filter: blur(8px);
155 +/* ==========================================================================
156 + 4. Public top menu dropdowns
157 + ========================================================================== */
158 +
159 +.agnease-services-menu,
160 +.agnease-products-menu {
161 + .dropdown-toggle {
162 + font-weight: inherit;
163 + font-size: inherit;
164 + }
165 +
166 + .caret {
167 + margin-left: 4px;
168 + }
169 +
170 + &.open > .dropdown-toggle,
171 + .dropdown-toggle:hover,
172 + .dropdown-toggle:focus {
173 + color: @brand-strong;
174 + background: transparent;
175 + background-color: transparent;
176 + box-shadow: none;
177 + }
94 94  }
95 95  
96 -.header-inner {
97 - min-height: 72px;
98 - display: flex;
99 - align-items: center;
100 - justify-content: space-between;
101 - gap: 24px;
180 +/* Keep top-level public dropdown items clean when hovered/open/focused. */
181 +.navbar-nav > li.agnease-services-menu > a,
182 +.navbar-nav > li.agnease-products-menu > a,
183 +.navbar-nav > li.agnease-services-menu > a:hover,
184 +.navbar-nav > li.agnease-products-menu > a:hover,
185 +.navbar-nav > li.agnease-services-menu > a:focus,
186 +.navbar-nav > li.agnease-products-menu > a:focus,
187 +.navbar-nav > li.agnease-services-menu.open > a,
188 +.navbar-nav > li.agnease-products-menu.open > a,
189 +.navbar-nav > li.agnease-services-menu.open > a:hover,
190 +.navbar-nav > li.agnease-products-menu.open > a:hover,
191 +.navbar-nav > li.agnease-services-menu.open > a:focus,
192 +.navbar-nav > li.agnease-products-menu.open > a:focus {
193 + background: transparent;
194 + background-color: transparent;
195 + color: @brand-strong;
196 + box-shadow: none;
102 102  }
103 103  
104 -.site-nav {
105 - display: flex;
106 - align-items: center;
107 - gap: 22px;
108 - font-size: 15px;
199 +.agnease-services-dropdown,
200 +.agnease-products-dropdown {
201 + min-width: 360px;
202 + padding: 10px;
203 + border: 1px solid @line;
204 + border-radius: 12px;
205 + box-shadow: @shadow-md;
109 109  
110 - a {
207 + > li > a {
208 + display: flex;
209 + align-items: flex-start;
210 + gap: 12px;
211 + padding: 10px 12px;
212 + border-radius: @radius-sm;
111 111   color: @text;
112 - text-decoration: none;
113 - font-weight: 600;
214 + white-space: normal;
114 114  
115 115   &:hover,
116 116   &:focus {
117 - color: @brand;
218 + color: @brand-strong;
219 + background: @brand-bg;
118 118   text-decoration: none;
221 +
222 + .menu-icon {
223 + color: @brand-strong;
224 + background: fade(@brand, 14%);
225 + border-color: fade(@brand, 28%);
226 + }
227 +
228 + strong {
229 + color: @brand-strong;
230 + }
231 +
232 + small {
233 + color: @muted;
234 + }
119 119   }
120 120   }
121 121  
122 - .nav-cta {
123 - color: #fff;
124 - background: @brand;
125 - border: 1px solid @brand;
126 - border-radius: 6px;
127 - padding: 8px 14px;
238 + .divider {
239 + margin: 8px 0;
240 + background-color: @line;
241 + }
128 128  
129 - &:hover,
130 - &:focus {
131 - color: #fff;
132 - background: @brand-strong;
133 - border-color: @brand-strong;
243 + .menu-icon {
244 + width: 34px;
245 + height: 34px;
246 + border-radius: 50%;
247 + background: fade(@brand, 8%);
248 + border: 1px solid fade(@brand, 18%);
249 + color: @brand;
250 + display: flex;
251 + align-items: center;
252 + justify-content: center;
253 + flex-shrink: 0;
254 + transition: color .15s ease, background .15s ease, border-color .15s ease;
255 + }
256 +
257 + .menu-text {
258 + display: flex;
259 + flex-direction: column;
260 + line-height: 1.25;
261 +
262 + strong {
263 + color: @brand;
264 + font-size: 14px;
265 + font-weight: 600;
134 134   }
267 +
268 + small {
269 + color: @muted;
270 + font-size: 12px;
271 + margin-top: 2px;
272 + font-weight: 400;
273 + }
135 135   }
136 136  }
137 137  
138 -/* ========== Buttons ========== */
277 +.agnease-products-dropdown {
278 + min-width: 340px;
279 +}
139 139  
281 +
282 +/* ==========================================================================
283 + 5. Buttons and shared labels
284 + ========================================================================== */
285 +
140 140  .btn-primary {
287 + color: #fff;
141 141   background: @brand;
142 142   border-color: @brand;
143 - color: #fff;
144 144  
145 145   &:hover,
146 146   &:focus {
293 + color: #fff;
147 147   background: @brand-strong;
148 148   border-color: @brand-strong;
149 - color: #fff;
296 + text-decoration: none;
150 150   }
151 151  }
152 152  
... ... @@ -160,79 +160,65 @@
160 160   color: @brand-strong;
161 161   border-color: @brand;
162 162   background: @brand-bg;
310 + text-decoration: none;
163 163   }
164 164  }
165 165  
166 -/* ========== Hero ========== */
314 +/* Shared pill label used by homepage, services, products and resources. */
315 +.hero-kicker {
316 + display: inline-flex;
317 + align-items: center;
318 + gap: 8px;
319 + color: @brand;
320 + background: fade(@brand, 8%);
321 + border: 1px solid fade(@brand, 22%);
322 + border-radius: 999px;
323 + padding: 8px 14px;
324 + margin-bottom: 16px;
325 + font-size: 14px;
326 + font-weight: 800;
327 + line-height: 1.2;
167 167  
168 -.hero {
169 - overflow: hidden;
170 - background-repeat: no-repeat;
171 - background-attachment: scroll;
172 -
173 - &.hero-centered {
174 - text-align: center;
175 - background:
176 - radial-gradient(50rem 18rem at 50% -10%, @brand-soft 0%, transparent 60%),
177 - radial-gradient(50rem 18rem at 50% 0%, #E8F6F3 0%, transparent 60%);
178 - display: flex;
179 - align-items: center;
180 - justify-content: center;
181 - min-height: 330px;
329 + i {
330 + color: @brand;
331 + font-size: 14px;
182 182   }
333 +}
183 183  
184 - .hero-inner {
185 - max-width: 860px;
186 - margin: 0 auto;
187 - display: flex;
188 - flex-direction: column;
189 - align-items: center;
190 - }
191 191  
192 - h1 {
193 - max-width: 790px;
194 - margin-left: auto;
195 - margin-right: auto;
196 - line-height: 1.18;
197 - }
336 +/* ==========================================================================
337 + 6. Hero sections
338 + ========================================================================== */
198 198  
199 - .lead {
200 - max-width: 760px;
201 - font-size: 19px;
202 - line-height: 1.55;
203 - }
340 +.hero {
341 + padding: 64px 0 60px;
342 + background:
343 + radial-gradient(48rem 18rem at 50% -10%, @brand-soft 0%, transparent 65%),
344 + radial-gradient(48rem 18rem at 50% 0%, #E8F6F3 0%, transparent 60%);
345 + border-bottom: 1px solid @line;
346 +}
204 204  
205 - .benefits {
206 - display: flex;
207 - flex-wrap: wrap;
208 - justify-content: center;
209 - list-style: none;
210 - padding: 0;
211 - margin: 14px 0 0;
212 - color: @muted;
213 - font-size: 14px;
348 +.hero-centered {
349 + text-align: center;
350 +}
214 214  
215 - li + li::before {
216 - content: "•";
217 - margin: 0 6px;
218 - }
219 - }
352 +.hero-inner {
353 + max-width: 900px;
220 220  }
221 221  
222 -.hero-kicker {
223 - display: inline-flex;
224 - align-items: center;
225 - gap: 8px;
226 - color: @brand;
227 - background: fade(@brand, 8%);
228 - border: 1px solid fade(@brand, 18%);
229 - border-radius: 999px;
230 - padding: 6px 12px;
231 - margin-bottom: 14px;
232 - font-size: 13px;
233 - font-weight: 700;
356 +.hero h1 {
357 + max-width: 820px;
358 + margin: 0 auto;
234 234  }
235 235  
361 +.hero .lead {
362 + max-width: 760px;
363 + margin: 16px auto 0;
364 + color: @muted;
365 + font-size: 19px;
366 + line-height: 1.55;
367 +}
368 +
236 236  .hero-support {
237 237   max-width: 760px;
238 238   margin: 14px auto 0;
... ... @@ -240,8 +240,7 @@
240 240   line-height: 1.55;
241 241  }
242 242  
243 -.hero-actions,
244 -#hero-cta {
376 +.hero-actions {
245 245   display: flex;
246 246   gap: 12px;
247 247   flex-wrap: wrap;
... ... @@ -249,15 +249,50 @@
249 249   margin-top: 22px;
250 250  }
251 251  
252 -/* ========== Trust Strip ========== */
384 +.service-hero,
385 +.product-hero {
386 + padding: 64px 0 60px;
387 +}
253 253  
389 +
390 +/* ==========================================================================
391 + 7. Homepage
392 + ========================================================================== */
393 +
394 +.benefits {
395 + max-width: 760px;
396 + margin: 18px auto 0;
397 + padding: 0;
398 + list-style: none;
399 + display: flex;
400 + flex-wrap: wrap;
401 + gap: 10px 16px;
402 + justify-content: center;
403 + color: @muted;
404 + font-size: 14px;
405 +
406 + li {
407 + display: inline-flex;
408 + align-items: center;
409 + gap: 6px;
410 +
411 + &:before {
412 + content: "\f00c";
413 + font-family: FontAwesome;
414 + color: @brand;
415 + font-size: 12px;
416 + }
417 + }
418 +}
419 +
254 254  .trust-strip {
255 255   padding: 18px 0;
256 256   border-top: 1px solid @line;
423 + border-bottom: 1px solid @line;
257 257   background: #fff;
258 258  
259 259   ul {
260 - max-width: 960px;
427 + max-width: 920px;
261 261   margin: 0 auto;
262 262   padding: 0;
263 263   list-style: none;
... ... @@ -280,104 +280,27 @@
280 280   }
281 281  }
282 282  
283 -/* ========== Reusable Grids ========== */
284 -
285 -.card-grid,
286 -.pathways,
287 -.services-grid,
288 -.resource-grid,
289 -.widgets {
450 +.pathways {
290 290   display: grid;
291 - grid-gap: 18px;
292 - margin-left: auto;
293 - margin-right: auto;
294 -}
295 -
296 -.card-grid,
297 -.pathways,
298 -.services-grid {
299 299   grid-template-columns: repeat(3, minmax(0, 1fr));
453 + grid-gap: 18px;
300 300   max-width: 1040px;
301 - margin-top: 22px;
455 + margin: 22px auto 0;
302 302  }
303 303  
304 -.resource-grid {
305 - grid-template-columns: repeat(2, minmax(0, 1fr));
306 - max-width: 1040px;
307 - margin-top: 22px;
308 -}
309 -
310 -.widgets {
311 - grid-template-columns: repeat(4, minmax(0, 1fr));
312 - max-width: 1040px;
313 - margin-top: 20px;
314 -}
315 -
316 -.card-grid > *,
317 -.pathways > *,
318 -.services-grid > *,
319 -.resource-grid > *,
320 -.widgets > * {
321 - min-width: 0;
322 -}
323 -
324 -/* ========== Shared Card Style ========== */
325 -
326 -.widget,
327 -.pathway-card,
328 -.service-card,
329 -.resource-card {
458 +.pathway-card {
330 330   background: #fff;
331 331   border: 1px solid @line;
332 332   border-radius: @radius;
333 333   box-shadow: @shadow-sm;
334 -}
335 -
336 -/* ========== Small Widgets ========== */
337 -
338 -.widget {
339 - padding: 18px;
463 + padding: 22px;
340 340   display: flex;
341 341   flex-direction: column;
342 - height: 100%;
343 -
344 - .icon {
345 - display: flex;
346 - align-items: center;
347 - gap: 10px;
348 - padding-bottom: 8px;
349 - margin-bottom: 10px;
350 - border-bottom: 1px solid fade(@line, 70%);
351 -
352 - i {
353 - color: @brand;
354 - }
355 -
356 - h4 {
357 - margin: 0;
358 - line-height: 1.25;
359 - color: @text;
360 - }
361 - }
362 -
363 - p {
364 - margin: 0;
365 - color: @muted;
366 - line-height: 1.45;
367 - }
368 -}
369 -
370 -/* ========== Homepage Pathway Cards ========== */
371 -
372 -.pathway-card {
373 - padding: 24px;
374 - display: flex;
375 - flex-direction: column;
376 376   min-height: 100%;
377 377  
378 378   .pathway-icon {
379 - width: 52px;
380 - height: 52px;
469 + width: 46px;
470 + height: 46px;
381 381   border-radius: 50%;
382 382   display: flex;
383 383   align-items: center;
... ... @@ -384,625 +384,389 @@
384 384   justify-content: center;
385 385   color: @brand;
386 386   background: fade(@brand, 10%);
387 - margin-bottom: 18px;
388 - font-size: 19px;
477 + margin-bottom: 14px;
478 + font-size: 18px;
389 389   }
390 390  
391 391   h3 {
392 - margin: 0 0 10px;
393 - color: @text;
394 - font-size: 22px;
395 - line-height: 1.25;
482 + margin: 0 0 8px;
396 396   }
397 397  
398 398   p {
399 399   color: @muted;
400 400   line-height: 1.55;
401 - margin: 0 0 16px;
488 + margin: 0 0 14px;
402 402   }
403 403  
404 404   ul {
405 - margin: 0 0 22px;
492 + margin: 0 0 18px;
406 406   padding-left: 18px;
407 407   color: @muted;
408 - font-size: 14px;
409 - line-height: 1.55;
495 + font-size: 13px;
410 410   }
411 411  
412 412   li {
413 - margin: 6px 0;
499 + margin: 5px 0;
414 414   }
415 415  
416 416   .card-link {
417 417   margin-top: auto;
418 - padding-top: 4px;
419 -
420 - a {
421 - color: @brand;
422 - font-weight: 700;
423 - text-decoration: underline;
424 -
425 - &:hover,
426 - &:focus {
427 - color: @brand-strong;
428 - }
429 - }
430 430   }
431 431  }
432 432  
433 -/* ========== Services ========== */
507 +.resource-strip {
508 + background: @brand-bg;
434 434  
435 -.services {
436 - .services-grid {
510 + .resource-grid {
437 437   max-width: 1040px;
512 + margin: 20px auto 0;
513 + display: grid;
514 + grid-template-columns: repeat(2, minmax(0, 1fr));
515 + grid-gap: 16px;
438 438   }
439 439  
440 - .service {
441 - display: flex;
442 - align-items: flex-start;
443 - gap: 16px;
444 - padding: 22px;
518 + .resource-card {
445 445   background: #fff;
446 446   border: 1px solid @line;
447 447   border-radius: @radius;
522 + padding: 18px;
448 448   box-shadow: @shadow-sm;
449 449  
450 - .service-icon {
451 - width: 46px;
452 - height: 46px;
453 - border-radius: 50%;
454 - display: flex;
455 - align-items: center;
456 - justify-content: center;
457 - font-size: 18px;
458 - color: @brand;
459 - background: fade(@brand, 10%);
460 - flex-shrink: 0;
461 - margin-top: 2px;
525 + h4 {
526 + margin: 0 0 6px;
462 462   }
463 463  
464 - .service-body {
465 - h4 {
466 - margin: 0 0 6px;
467 - font-size: 18px;
468 - line-height: 1.25;
469 - font-weight: 800;
470 - color: @text;
471 - }
529 + p {
530 + color: @muted;
531 + margin: 0 0 10px;
532 + line-height: 1.5;
533 + }
472 472  
473 - p {
474 - margin: 0 0 8px;
475 - color: @muted;
476 - line-height: 1.5;
477 - }
478 -
479 - ul {
480 - margin: 9px 0 0;
481 - padding-left: 18px;
482 - color: @muted;
483 - font-size: 13px;
484 - line-height: 1.5;
485 - }
486 -
487 - li {
488 - margin: 4px 0;
489 - }
535 + a {
536 + color: @brand;
537 + font-weight: 700;
490 490   }
491 491   }
492 492  }
493 493  
494 -/* ========== Split / Process Section ========== */
495 495  
496 -.split-section {
497 - background:
498 - radial-gradient(42rem 16rem at 50% 0%, @brand-bg 0%, transparent 65%);
499 -}
543 +/* ==========================================================================
544 + 8. Services overview page and service cards
545 + ========================================================================== */
500 500  
501 -.split-grid {
502 - display: grid;
503 - grid-template-columns: 1.1fr .9fr;
504 - grid-gap: 36px;
505 - max-width: 1040px;
506 - margin: 0 auto;
507 - align-items: center;
508 -}
547 +.services {
548 + background: #fff;
509 509  
510 -.split-copy {
511 511   h2 {
512 - text-align: left;
513 - margin-top: 0;
551 + text-align: center;
552 + margin: 0 0 10px;
514 514   }
554 +}
515 515  
516 - p {
517 - color: @muted;
518 - line-height: 1.6;
519 - }
556 +.services-grid {
557 + max-width: 1040px;
558 + margin: 26px auto 0;
559 + display: grid;
560 + grid-template-columns: repeat(2, minmax(0, 1fr));
561 + grid-gap: 22px;
520 520  }
521 521  
522 -.process-list {
523 - counter-reset: process;
524 - margin: 0;
525 - padding: 0;
526 - list-style: none;
564 +.service {
565 + background: #fff;
566 + border: 1px solid @line;
567 + border-radius: @radius;
568 + box-shadow: @shadow-sm;
569 + padding: 22px;
570 + display: grid;
571 + grid-template-columns: 48px 1fr;
572 + grid-gap: 16px;
573 + align-items: start;
527 527  
528 - li {
529 - counter-increment: process;
530 - position: relative;
531 - padding: 16px 16px 16px 58px;
532 - margin-bottom: 12px;
533 - background: #fff;
534 - border: 1px solid @line;
535 - border-radius: @radius;
536 - box-shadow: @shadow-sm;
537 - color: @muted;
538 - line-height: 1.5;
575 + .service-icon {
576 + width: 44px;
577 + height: 44px;
578 + border-radius: 50%;
579 + background: fade(@brand, 10%);
580 + border: 1px solid fade(@brand, 18%);
581 + color: @brand;
582 + display: flex;
583 + align-items: center;
584 + justify-content: center;
585 + font-size: 18px;
586 + }
539 539  
540 - &:before {
541 - content: counter(process);
542 - position: absolute;
543 - left: 16px;
544 - top: 16px;
545 - width: 28px;
546 - height: 28px;
547 - border-radius: 50%;
548 - background: fade(@brand, 10%);
549 - color: @brand;
550 - display: flex;
551 - align-items: center;
552 - justify-content: center;
553 - font-weight: 800;
554 - }
555 -
556 - strong {
557 - display: block;
558 - color: @text;
559 - margin-bottom: 3px;
560 - }
588 + .service-body {
589 + min-width: 0;
561 561   }
562 -}
563 563  
564 -/* ========== Resources ========== */
565 -
566 -.resource-strip {
567 - background: @brand-bg;
568 -}
569 -
570 -.resource-card {
571 - padding: 20px;
572 -
573 573   h4 {
574 574   margin: 0 0 8px;
575 - color: @text;
576 - font-size: 18px;
577 - line-height: 1.25;
578 578   }
579 579  
580 580   p {
581 581   color: @muted;
598 + line-height: 1.55;
582 582   margin: 0 0 12px;
583 - line-height: 1.5;
584 584   }
585 585  
586 - a {
587 - color: @brand;
588 - font-weight: 700;
589 - }
590 -}
591 -
592 -.resource-content {
593 - order: 1;
594 -}
595 -
596 -.resource-sidebar {
597 - order: 2;
598 -}
599 -
600 -@media (max-width: 767px) {
601 - .resource-layout {
602 - display: flex;
603 - flex-direction: column;
604 - }
605 -
606 - .resource-sidebar {
607 - order: 0;
608 - position: static;
609 - width: 100%;
610 - }
611 -
612 - .resource-content {
613 - order: 1;
614 - }
615 -}
616 -
617 -/* ========== Homepage Resource Strip ========== */
618 -
619 -.homepage-resource-strip {
620 - background:
621 - radial-gradient(42rem 16rem at 50% 0%, @brand-bg 0%, transparent 70%);
622 -
623 - .resource-grid {
624 - max-width: 1040px;
625 - margin: 22px auto 0;
626 - display: grid;
627 - grid-template-columns: repeat(2, minmax(0, 1fr));
628 - grid-gap: 22px;
629 - align-items: stretch;
630 - }
631 -
632 - .resource-card {
633 - display: flex;
634 - flex-direction: column;
635 - min-width: 0;
636 - min-height: 100%;
637 - padding: 26px;
638 - }
639 -
640 - .resource-card h4 {
641 - margin: 0 0 10px;
642 - color: @text;
643 - font-size: 21px;
644 - line-height: 1.25;
645 - font-weight: 700;
646 - }
647 -
648 - .resource-card p {
649 - margin: 0 0 18px;
602 + ul {
603 + margin: 10px 0 0;
604 + padding-left: 18px;
650 650   color: @muted;
651 - font-size: 15px;
652 - line-height: 1.6;
606 + font-size: 13px;
653 653   }
654 654  
655 - .resource-card a {
656 - margin-top: auto;
657 - color: @brand;
658 - font-weight: 700;
659 - text-decoration: underline;
660 -
661 - &:hover,
662 - &:focus {
663 - color: @brand-strong;
664 - }
609 + li {
610 + margin: 5px 0;
611 + line-height: 1.45;
665 665   }
666 666  }
667 667  
668 -@media (max-width: 980px) {
669 - .homepage-resource-strip {
670 - .resource-grid {
671 - grid-template-columns: 1fr;
672 - }
673 - }
615 +.compact-grid {
616 + grid-gap: 18px;
674 674  }
675 675  
676 -@media (max-width: 640px) {
677 - .homepage-resource-strip {
678 - .resource-card {
679 - padding: 22px;
680 - }
681 681  
682 - .resource-card h4 {
683 - font-size: 19px;
684 - }
685 - }
620 +/* ==========================================================================
621 + 9. Individual service pages
622 + ========================================================================== */
623 +
624 +.service-page {
625 + color: @text;
686 686  }
687 687  
688 -/* ========== CTA ========== */
689 -
690 -.cta-section {
691 - padding: @section-padding;
692 -
693 - .contact-inline {
694 - margin: 0;
695 - color: @muted;
696 -
697 - a {
698 - color: @brand;
699 - }
700 - }
628 +.service-page .service-overview {
629 + padding: 56px 0;
701 701  }
702 702  
703 -.cta-panel {
704 - max-width: 860px;
632 +.service-layout,
633 +.split-grid {
634 + display: grid;
635 + grid-template-columns: 1.1fr .9fr;
636 + grid-gap: 36px;
637 + max-width: 1040px;
705 705   margin: 0 auto;
706 - padding: 32px;
639 + align-items: start;
640 +}
641 +
642 +.service-summary-card,
643 +.service-info-card,
644 +.service-panel {
645 + background: #fff;
646 + border: 1px solid @line;
707 707   border-radius: @radius;
708 - border: 1px solid fade(@brand, 20%);
709 - background:
710 - radial-gradient(34rem 12rem at 50% 0%, @brand-soft 0%, #fff 70%);
711 711   box-shadow: @shadow-sm;
712 - text-align: center;
649 +}
713 713  
651 +.service-summary-card,
652 +.service-panel {
653 + padding: 24px;
654 +
714 714   h2 {
656 + text-align: left;
715 715   margin-top: 0;
716 716   }
717 717  
718 718   p {
719 719   color: @muted;
720 - line-height: 1.55;
662 + line-height: 1.6;
721 721   }
722 722  }
723 723  
724 -/* ========== Responsive ========== */
666 +.service-info-card {
667 + padding: 20px;
725 725  
726 -@media (max-width: 980px) {
727 - .widgets,
728 - .pathways,
729 - .services-grid,
730 - .resource-grid {
731 - grid-template-columns: repeat(2, minmax(0, 1fr));
669 + h3 {
670 + margin-top: 0;
732 732   }
733 733  
734 - .split-grid {
735 - grid-template-columns: 1fr;
673 + ul {
674 + margin: 0;
675 + padding-left: 20px;
676 + color: @muted;
736 736   }
737 737  
738 - .split-copy h2 {
739 - text-align: center;
679 + li {
680 + margin: 8px 0;
681 + line-height: 1.45;
740 740   }
741 741  }
742 742  
743 -@media (max-width: 760px) {
744 - section[id] {
745 - scroll-margin-top: 132px;
746 - }
685 +.service-feature-grid {
686 + max-width: 1040px;
687 + margin: 22px auto 0;
688 + display: grid;
689 + grid-template-columns: repeat(3, minmax(0, 1fr));
690 + grid-gap: 16px;
691 +}
747 747  
748 - .header-inner {
749 - min-height: auto;
750 - padding-top: 14px;
751 - padding-bottom: 14px;
752 - flex-direction: column;
753 - align-items: center;
754 - gap: 12px;
755 - }
693 +.service-feature {
694 + background: #fff;
695 + border: 1px solid @line;
696 + border-radius: @radius;
697 + box-shadow: @shadow-sm;
698 + padding: 18px;
756 756  
757 - .site-nav {
758 - width: 100%;
700 + .feature-icon {
701 + width: 42px;
702 + height: 42px;
703 + border-radius: 50%;
704 + background: fade(@brand, 10%);
705 + color: @brand;
706 + display: flex;
707 + align-items: center;
759 759   justify-content: center;
760 - flex-wrap: wrap;
761 - gap: 10px 16px;
762 - font-size: 14px;
763 -
764 - .nav-cta {
765 - padding: 7px 12px;
766 - }
709 + margin-bottom: 12px;
710 + font-size: 17px;
767 767   }
768 768  
769 - .hero.hero-centered {
770 - min-height: 280px;
713 + h3 {
714 + margin: 0 0 8px;
715 + font-size: 18px;
771 771   }
772 772  
773 - .hero {
774 - .lead {
775 - font-size: 17px;
776 - }
777 -
778 - .benefits {
779 - gap: 4px 10px;
780 -
781 - li + li::before {
782 - content: none;
783 - }
784 - }
718 + p {
719 + margin: 0;
720 + color: @muted;
721 + line-height: 1.5;
785 785   }
786 786  }
787 787  
788 -@media (max-width: 640px) {
789 - section {
790 - padding: @section-padding-mobile;
791 - }
792 792  
793 - .widgets,
794 - .pathways,
795 - .services-grid,
796 - .resource-grid {
797 - grid-template-columns: 1fr;
798 - }
726 +/* ==========================================================================
727 + 10. Split/process sections
728 + ========================================================================== */
799 799  
800 - .pathway-card,
801 - .services .service,
802 - .resource-card,
803 - .widget {
804 - padding: 20px;
805 - }
806 -
807 - .services .service {
808 - gap: 14px;
809 - }
810 -
811 - .cta-panel {
812 - padding: 24px 20px;
813 - }
814 -}
815 -
816 -/* ========== Resource / Article Pages ========== */
817 -
818 -.resource-page {
819 - padding-top: 0;
820 -}
821 -
822 -.resource-header {
823 - padding: @section-padding;
824 - border-top: none;
730 +.split-section {
825 825   background:
826 - radial-gradient(50rem 18rem at 50% -10%, @brand-soft 0%, transparent 60%),
827 - radial-gradient(50rem 18rem at 50% 0%, #E8F6F3 0%, transparent 60%);
732 + radial-gradient(42rem 16rem at 50% 0%, @brand-bg 0%, transparent 65%);
828 828  
829 - h1 {
830 - margin: 0 auto 14px;
831 - text-align: center;
832 - line-height: 1.18;
833 - }
734 + .split-copy {
735 + h2 {
736 + text-align: left;
737 + margin-top: 0;
738 + }
834 834  
835 - .resource-summary {
836 - max-width: 780px;
837 - margin: 0 auto;
838 - color: @muted;
839 - text-align: center;
840 - font-size: 18px;
841 - line-height: 1.55;
740 + p {
741 + color: @muted;
742 + line-height: 1.6;
743 + }
842 842   }
843 843  }
844 844  
845 -.resource-layout {
846 - display: grid;
847 - grid-template-columns: minmax(0, 760px) 280px;
848 - gap: 42px;
849 - max-width: 1080px;
850 - margin: 0 auto;
851 - align-items: start;
747 +.process-list {
748 + counter-reset: process;
749 + margin: 0;
750 + padding: 0;
751 + list-style: none;
852 852  }
853 853  
854 -.resource-content {
855 - color: @text;
856 - font-size: 16px;
857 - line-height: 1.68;
754 +.process-list li {
755 + counter-increment: process;
756 + position: relative;
757 + padding: 16px 16px 16px 58px;
758 + margin-bottom: 12px;
759 + background: #fff;
760 + border: 1px solid @line;
761 + border-radius: @radius;
762 + box-shadow: @shadow-sm;
763 + color: @muted;
764 + line-height: 1.5;
858 858  
859 - h2 {
860 - text-align: left;
861 - margin: 34px 0 12px;
862 - line-height: 1.28;
766 + &:before {
767 + content: counter(process);
768 + position: absolute;
769 + left: 16px;
770 + top: 16px;
771 + width: 28px;
772 + height: 28px;
773 + border-radius: 50%;
774 + background: fade(@brand, 10%);
775 + color: @brand;
776 + display: flex;
777 + align-items: center;
778 + justify-content: center;
779 + font-weight: 800;
863 863   }
864 864  
865 - h3 {
866 - margin: 24px 0 8px;
867 - line-height: 1.3;
868 - }
869 -
870 - p {
871 - margin: 0 0 16px;
872 - }
873 -
874 - ul,
875 - ol {
876 - margin: 0 0 18px;
877 - padding-left: 22px;
878 - }
879 -
880 - li {
881 - margin: 6px 0;
882 - }
883 -
884 884   strong {
783 + display: block;
885 885   color: @text;
785 + margin-bottom: 3px;
886 886   }
887 887  }
888 888  
889 -.resource-note {
890 - border-left: 4px solid @brand;
891 - background: @brand-bg;
892 - padding: 16px 18px;
893 - margin: 22px 0;
894 - border-radius: 0 @radius @radius 0;
895 895  
896 - p:last-child {
897 - margin-bottom: 0;
898 - }
899 -}
790 +/* ==========================================================================
791 + 11. Products overview page
792 + ========================================================================== */
900 900  
901 -.resource-checklist {
902 - margin: 18px 0 24px;
903 - padding: 0;
904 - list-style: none;
794 +.agnease-product-page {
795 + color: @text;
905 905  
906 - li {
907 - position: relative;
908 - padding: 10px 0 10px 34px;
797 + .product-index-hero {
798 + padding: 56px 0 48px;
799 + text-align: center;
800 + background:
801 + radial-gradient(42rem 16rem at 50% -10%, @brand-soft 0%, transparent 65%),
802 + radial-gradient(42rem 16rem at 50% 0%, #E8F6F3 0%, transparent 60%);
909 909   border-bottom: 1px solid @line;
804 + }
910 910  
911 - &:before {
912 - content: "\f00c";
913 - font-family: FontAwesome;
914 - position: absolute;
915 - left: 0;
916 - top: 11px;
917 - color: @brand;
918 - }
806 + .product-page-kicker {
807 + margin-bottom: 16px;
919 919   }
920 -}
921 921  
922 -.resource-sidebar {
923 - position: sticky;
924 - top: 96px;
925 - border: 1px solid @line;
926 - border-radius: @radius;
927 - padding: 18px;
928 - background: #fff;
929 - box-shadow: @shadow-sm;
930 -
931 - h4 {
932 - margin: 0 0 10px;
810 + h1 {
811 + max-width: 820px;
812 + margin: 0 auto;
813 + color: @text;
814 + font-size: 36px;
815 + line-height: 1.2;
816 + font-weight: 700;
933 933   }
934 934  
935 - ul {
936 - margin: 0;
937 - padding-left: 18px;
819 + .page-lead {
820 + max-width: 760px;
821 + margin: 14px auto 0;
938 938   color: @muted;
823 + font-size: 18px;
824 + line-height: 1.55;
939 939   }
940 940  
941 - li {
942 - margin: 8px 0;
943 - }
827 + .product-index-section {
828 + padding: 52px 0 56px;
944 944  
945 - a {
946 - color: @brand;
947 - font-weight: 600;
830 + h2 {
831 + text-align: center;
832 + margin: 0 0 10px;
833 + color: @text;
834 + font-size: 28px;
835 + line-height: 1.25;
836 + font-weight: 600;
837 + }
948 948   }
949 -}
950 950  
951 -.resource-cta {
952 - margin-top: 36px;
953 - padding: 22px;
954 - border: 1px solid fade(@brand, 20%);
955 - border-radius: @radius;
956 - background: @brand-bg;
957 -
958 - h3 {
959 - margin-top: 0;
960 - }
961 -
962 - p {
963 - color: @muted;
964 - }
965 -}
966 -
967 -@media (max-width: 900px) {
968 - .resource-layout {
840 + .product-card-grid {
841 + max-width: 840px;
842 + margin: 0 auto;
843 + display: grid;
969 969   grid-template-columns: 1fr;
845 + grid-gap: 18px;
970 970   }
971 971  
972 - .resource-sidebar {
973 - position: static;
848 + .product-card {
849 + background: #fff;
850 + border: 1px solid @line;
851 + border-radius: @radius;
852 + box-shadow: @shadow-sm;
853 + padding: 28px;
854 + display: grid;
855 + grid-template-columns: 68px 1fr;
856 + grid-gap: 22px;
857 + align-items: start;
974 974   }
975 -}
976 976  
977 -/* ========== Products / Extensions Pages ========== */
978 -
979 -.product-index-section {
980 - padding: @section-padding;
981 -
982 - h2 {
983 - margin-bottom: 10px;
984 - }
985 -}
986 -
987 -.product-card-grid {
988 - max-width: 840px;
989 - margin: 22px auto 0;
990 - display: grid;
991 - grid-template-columns: 1fr;
992 - grid-gap: 18px;
993 -}
994 -
995 -.product-card {
996 - background: #fff;
997 - border: 1px solid @line;
998 - border-radius: @radius;
999 - box-shadow: @shadow-sm;
1000 - padding: 28px;
1001 - display: grid;
1002 - grid-template-columns: 68px 1fr;
1003 - grid-gap: 22px;
1004 - align-items: start;
1005 -
1006 1006   .product-card-icon {
1007 1007   width: 58px;
1008 1008   height: 58px;
... ... @@ -1014,58 +1014,80 @@
1014 1014   align-items: center;
1015 1015   justify-content: center;
1016 1016   font-size: 22px;
1017 - flex-shrink: 0;
1018 1018   }
1019 1019  
1020 - h3 {
873 + .product-card-kicker {
874 + margin-bottom: 10px;
875 + padding: 6px 11px;
876 + font-size: 12px;
877 + }
878 +
879 + .product-card h3 {
1021 1021   margin: 0 0 10px;
1022 1022   color: @text;
1023 1023   font-size: 23px;
1024 1024   line-height: 1.25;
1025 - font-weight: 800;
884 + font-weight: 600;
1026 1026   }
1027 1027  
1028 - p {
887 + .product-card p {
1029 1029   color: @muted;
1030 1030   line-height: 1.6;
1031 1031   }
1032 1032  
1033 - .card-link {
1034 - margin: 0;
892 + .product-highlights {
893 + margin: 14px 0 20px;
894 + padding-left: 18px;
895 + color: @muted;
1035 1035  
1036 - a {
1037 - font-weight: 700;
897 + li {
898 + margin: 6px 0;
899 + line-height: 1.45;
1038 1038   }
1039 1039   }
1040 -}
1041 1041  
1042 -.product-card-kicker {
1043 - margin-bottom: 10px;
1044 - padding: 5px 10px;
1045 - font-size: 12px;
1046 - text-transform: uppercase;
1047 - letter-spacing: .04em;
1048 -}
903 + .product-cta-section {
904 + padding: 0 0 56px;
905 + }
1049 1049  
1050 -.product-highlights {
1051 - margin: 14px 0 20px;
1052 - padding-left: 18px;
1053 - color: @muted;
907 + .product-cta-panel {
908 + max-width: 860px;
909 + margin: 0 auto;
910 + padding: 32px;
911 + border-radius: @radius;
912 + border: 1px solid fade(@brand, 20%);
913 + background:
914 + radial-gradient(34rem 12rem at 50% 0%, @brand-soft 0%, #fff 70%);
915 + box-shadow: @shadow-sm;
916 + text-align: center;
1054 1054  
1055 - li {
1056 - margin: 6px 0;
1057 - line-height: 1.45;
918 + h2 {
919 + margin: 0 0 12px;
920 + color: @text;
921 + font-size: 26px;
922 + line-height: 1.25;
923 + }
924 +
925 + p {
926 + max-width: 680px;
927 + margin: 0 auto 18px;
928 + color: @muted;
929 + line-height: 1.55;
930 + }
1058 1058   }
1059 1059  }
1060 1060  
1061 -/* ========== Individual Product Pages ========== */
1062 1062  
935 +/* ==========================================================================
936 + 12. Individual product pages
937 + ========================================================================== */
938 +
1063 1063  .product-layout {
1064 - display: grid;
1065 - grid-template-columns: 1.1fr .9fr;
1066 - grid-gap: 36px;
1067 1067   max-width: 1040px;
1068 1068   margin: 0 auto;
942 + display: grid;
943 + grid-template-columns: 1.1fr .9fr;
944 + grid-gap: 28px;
1069 1069   align-items: start;
1070 1070  }
1071 1071  
... ... @@ -1079,7 +1079,7 @@
1079 1079  }
1080 1080  
1081 1081  .product-summary-card {
1082 - padding: 26px;
958 + padding: 24px;
1083 1083  
1084 1084   h2 {
1085 1085   text-align: left;
... ... @@ -1090,18 +1090,13 @@
1090 1090   color: @muted;
1091 1091   line-height: 1.6;
1092 1092   }
1093 -
1094 - p:last-child {
1095 - margin-bottom: 0;
1096 - }
1097 1097  }
1098 1098  
1099 1099  .product-info-card {
1100 - padding: 22px;
972 + padding: 20px;
1101 1101  
1102 1102   h3 {
1103 1103   margin-top: 0;
1104 - margin-bottom: 12px;
1105 1105   }
1106 1106  
1107 1107   ul {
... ... @@ -1117,11 +1117,11 @@
1117 1117  }
1118 1118  
1119 1119  .product-feature-grid {
1120 - display: grid;
1121 - grid-template-columns: repeat(3, minmax(0, 1fr));
1122 - grid-gap: 18px;
1123 1123   max-width: 1040px;
1124 1124   margin: 22px auto 0;
993 + display: grid;
994 + grid-template-columns: repeat(3, minmax(0, 1fr));
995 + grid-gap: 16px;
1125 1125  }
1126 1126  
1127 1127  .product-feature {
... ... @@ -1129,11 +1129,11 @@
1129 1129   border: 1px solid @line;
1130 1130   border-radius: @radius;
1131 1131   box-shadow: @shadow-sm;
1132 - padding: 22px;
1003 + padding: 18px;
1133 1133  
1134 1134   .feature-icon {
1135 - width: 46px;
1136 - height: 46px;
1006 + width: 42px;
1007 + height: 42px;
1137 1137   border-radius: 50%;
1138 1138   background: fade(@brand, 10%);
1139 1139   color: @brand;
... ... @@ -1140,8 +1140,8 @@
1140 1140   display: flex;
1141 1141   align-items: center;
1142 1142   justify-content: center;
1143 - margin-bottom: 14px;
1144 - font-size: 18px;
1014 + margin-bottom: 12px;
1015 + font-size: 17px;
1145 1145   }
1146 1146  
1147 1147   h3 {
... ... @@ -1148,7 +1148,6 @@
1148 1148   margin: 0 0 8px;
1149 1149   color: @text;
1150 1150   font-size: 18px;
1151 - line-height: 1.25;
1152 1152   }
1153 1153  
1154 1154   p {
... ... @@ -1161,7 +1161,7 @@
1161 1161  .product-gallery-panel {
1162 1162   max-width: 1040px;
1163 1163   margin: 20px auto 0;
1164 - padding: 26px;
1034 + padding: 22px;
1165 1165  
1166 1166   h2 {
1167 1167   margin-top: 0;
... ... @@ -1178,82 +1178,69 @@
1178 1178  }
1179 1179  
1180 1180  .product-gallery-placeholder {
1181 - min-height: 260px;
1182 - padding: 28px;
1183 1183   border: 1px dashed fade(@brand, 40%);
1184 - border-radius: @radius;
1185 1185   background: fade(@brand, 5%);
1186 - color: @muted;
1053 + border-radius: @radius;
1054 + min-height: 260px;
1055 + padding: 28px;
1187 1187   text-align: center;
1057 + color: @muted;
1188 1188   display: flex;
1189 1189   align-items: center;
1190 1190   justify-content: center;
1191 1191  }
1192 1192  
1193 -.product-section-muted {
1194 - background:
1195 - radial-gradient(42rem 16rem at 50% 0%, @brand-bg 0%, transparent 65%);
1196 -}
1197 1197  
1198 -@media (max-width: 980px) {
1199 - .product-layout,
1200 - .product-feature-grid {
1201 - grid-template-columns: 1fr;
1202 - }
1064 +/* ==========================================================================
1065 + 13. CTA panels
1066 + ========================================================================== */
1203 1203  
1204 - .product-summary-card h2 {
1205 - text-align: center;
1206 - }
1068 +.cta-section {
1069 + padding: 56px 0;
1207 1207  }
1208 1208  
1209 -@media (max-width: 640px) {
1210 - .product-card {
1211 - grid-template-columns: 1fr;
1212 - padding: 22px;
1213 - text-align: left;
1072 +.cta-panel {
1073 + max-width: 860px;
1074 + margin: 0 auto;
1075 + padding: 32px;
1076 + border-radius: @radius;
1077 + border: 1px solid fade(@brand, 20%);
1078 + background:
1079 + radial-gradient(34rem 12rem at 50% 0%, @brand-soft 0%, #fff 70%);
1080 + box-shadow: @shadow-sm;
1081 + text-align: center;
1214 1214  
1215 - .product-card-icon {
1216 - margin-bottom: 2px;
1217 - }
1083 + h2 {
1084 + margin: 0 0 12px;
1218 1218   }
1219 1219  
1220 - .product-summary-card,
1221 - .product-info-card,
1222 - .product-feature,
1223 - .product-gallery-panel {
1224 - padding: 20px;
1087 + p {
1088 + max-width: 680px;
1089 + margin: 0 auto 18px;
1090 + color: @muted;
1091 + line-height: 1.55;
1225 1225   }
1226 1226  }
1227 1227  
1228 -/* ========== Resources Index ========== */
1229 1229  
1230 -.resources-index-page {
1231 - padding: @section-padding;
1232 - background: @brand-bg;
1096 +/* ==========================================================================
1097 + 14. Contact page
1098 + ========================================================================== */
1233 1233  
1234 - .resources-intro {
1235 - max-width: 820px;
1236 - margin: 0 auto 32px;
1237 - text-align: center;
1100 +.contact-page {
1101 + color: @text;
1238 1238  
1239 - p {
1240 - color: @muted;
1241 - font-size: 17px;
1242 - line-height: 1.7;
1243 - margin: 0;
1244 - }
1245 - }
1246 -
1247 - .resources-grid {
1103 + .contact-layout {
1104 + max-width: 1040px;
1105 + margin: 0 auto;
1248 1248   display: grid;
1249 - grid-template-columns: repeat(2, minmax(0, 1fr));
1250 - gap: 24px;
1251 - margin-bottom: 36px;
1107 + grid-template-columns: 1.1fr .9fr;
1108 + grid-gap: 36px;
1109 + align-items: start;
1252 1252   }
1253 1253  
1254 - .resource-card {
1255 - display: flex;
1256 - gap: 18px;
1112 + .contact-form-panel,
1113 + .contact-side-panel {
1257 1257   background: #fff;
1258 1258   border: 1px solid @line;
1259 1259   border-radius: @radius;
... ... @@ -1261,105 +1261,208 @@
1261 1261   padding: 24px;
1262 1262   }
1263 1263  
1264 - .resource-card-icon {
1265 - flex: 0 0 46px;
1266 - width: 46px;
1267 - height: 46px;
1268 - border-radius: 14px;
1269 - background: @brand-soft;
1270 - color: @brand-strong;
1271 - display: flex;
1272 - align-items: center;
1273 - justify-content: center;
1274 - font-size: 20px;
1121 + label {
1122 + color: @text;
1123 + font-weight: 700;
1275 1275   }
1276 1276  
1277 - .resource-card-label {
1278 - color: @brand-strong;
1279 - font-size: 13px;
1280 - font-weight: 700;
1281 - text-transform: uppercase;
1282 - letter-spacing: .04em;
1283 - margin-bottom: 8px;
1126 + input,
1127 + textarea,
1128 + select,
1129 + .form-control {
1130 + border: 1px solid @line;
1131 + border-radius: 8px;
1132 + box-shadow: none;
1133 +
1134 + &:focus {
1135 + border-color: fade(@brand, 60%);
1136 + box-shadow: 0 0 0 3px fade(@brand, 12%);
1137 + }
1284 1284   }
1285 1285  
1286 - .resource-card h2 {
1287 - font-size: 22px;
1288 - line-height: 1.25;
1289 - margin: 0 0 12px;
1140 + .contact-help-list {
1141 + margin: 0;
1142 + padding-left: 18px;
1143 + color: @muted;
1144 +
1145 + li {
1146 + margin: 6px 0;
1147 + line-height: 1.45;
1148 + }
1290 1290   }
1291 1291  
1292 - .resource-card h2 a {
1293 - color: @text;
1294 - text-decoration: none;
1151 + .next-steps {
1152 + counter-reset: contactsteps;
1153 + margin: 14px 0 0;
1154 + padding: 0;
1155 + list-style: none;
1295 1295  
1296 - &:hover {
1297 - color: @brand-strong;
1298 - text-decoration: none;
1157 + li {
1158 + counter-increment: contactsteps;
1159 + position: relative;
1160 + padding-left: 34px;
1161 + margin: 10px 0;
1162 + color: @muted;
1163 + line-height: 1.45;
1164 +
1165 + &:before {
1166 + content: counter(contactsteps);
1167 + position: absolute;
1168 + left: 0;
1169 + top: 0;
1170 + width: 22px;
1171 + height: 22px;
1172 + border-radius: 50%;
1173 + background: fade(@brand, 10%);
1174 + color: @brand;
1175 + display: flex;
1176 + align-items: center;
1177 + justify-content: center;
1178 + font-weight: 800;
1179 + font-size: 12px;
1180 + }
1299 1299   }
1300 1300   }
1183 +}
1301 1301  
1302 - .resource-card p {
1303 - color: @muted;
1304 - font-size: 15px;
1305 - line-height: 1.65;
1306 - margin: 0 0 16px;
1185 +
1186 +/* ==========================================================================
1187 + 15. Footer
1188 + ========================================================================== */
1189 +
1190 +footer,
1191 +.agnease-footer {
1192 + color: @brand;
1193 + text-align: center;
1194 + font-size: 13px;
1195 + padding: 28px 0;
1196 +
1197 + a {
1198 + color: @brand;
1307 1307   }
1200 +}
1308 1308  
1309 - .resource-card-link {
1310 - color: @brand-strong;
1311 - font-weight: 700;
1312 - text-decoration: none;
1313 1313  
1314 - &:hover {
1315 - color: @brand;
1316 - text-decoration: none;
1317 - }
1203 +/* ==========================================================================
1204 + 16. Responsive behavior
1205 + ========================================================================== */
1206 +
1207 +@media (max-width: 900px) {
1208 + .pathways,
1209 + .resource-strip .resource-grid,
1210 + .services-grid,
1211 + .service-layout,
1212 + .split-grid,
1213 + .product-layout,
1214 + .product-feature-grid,
1215 + .service-feature-grid,
1216 + .contact-page .contact-layout {
1217 + grid-template-columns: 1fr;
1318 1318   }
1319 1319  
1320 - .resources-next {
1321 - max-width: 820px;
1322 - margin: 0 auto 32px;
1220 + .split-section .split-copy h2,
1221 + .service-summary-card h2,
1222 + .product-summary-card h2 {
1323 1323   text-align: center;
1224 + }
1225 +}
1324 1324  
1325 - h2 {
1326 - font-size: 26px;
1327 - margin: 0 0 10px;
1328 - }
1227 +@media (max-width: 767px) {
1228 + section {
1229 + padding: 40px 0;
1230 + }
1329 1329  
1330 - p {
1331 - color: @muted;
1332 - font-size: 16px;
1333 - line-height: 1.7;
1334 - margin: 0;
1232 + h1 {
1233 + font-size: 30px;
1234 + }
1235 +
1236 + h2 {
1237 + font-size: 25px;
1238 + }
1239 +
1240 + .hero,
1241 + .service-hero,
1242 + .product-hero {
1243 + padding: 42px 0 38px;
1244 + }
1245 +
1246 + .hero .lead {
1247 + font-size: 16px;
1248 + }
1249 +
1250 + .hero-support {
1251 + font-size: 14px;
1252 + }
1253 +
1254 + .hero-actions {
1255 + flex-direction: column;
1256 + align-items: center;
1257 +
1258 + .btn {
1259 + width: 100%;
1260 + max-width: 260px;
1335 1335   }
1336 1336   }
1337 -}
1338 1338  
1339 -@media (max-width: 767px) {
1340 - .resources-index-page {
1341 - padding: @section-padding-mobile;
1264 + .navbar-brand,
1265 + .agnease-logo-link {
1266 + min-height: 52px;
1267 + }
1342 1342  
1343 - .resources-intro {
1344 - text-align: left;
1345 - margin-bottom: 24px;
1269 + .navbar-brand img,
1270 + .agnease-logo,
1271 + img.agnease-logo {
1272 + height: 42px;
1273 + max-height: 42px;
1274 + }
1275 +
1276 + .agnease-services-dropdown,
1277 + .agnease-products-dropdown {
1278 + min-width: 0;
1279 + width: 100%;
1280 + padding: 6px;
1281 + border-radius: 0;
1282 + border-left: 0;
1283 + border-right: 0;
1284 + box-shadow: none;
1285 +
1286 + > li > a {
1287 + padding: 10px;
1346 1346   }
1289 + }
1347 1347  
1348 - .resources-grid {
1349 - grid-template-columns: 1fr;
1350 - gap: 18px;
1291 + .service,
1292 + .agnease-product-page .product-card {
1293 + grid-template-columns: 1fr;
1294 + padding: 22px;
1295 + text-align: left;
1296 + }
1297 +
1298 + .service .service-icon,
1299 + .agnease-product-page .product-card-icon {
1300 + margin-bottom: 2px;
1301 + }
1302 +
1303 + .agnease-product-page {
1304 + .product-index-hero {
1305 + padding: 38px 0 34px;
1351 1351   }
1352 1352  
1353 - .resource-card {
1354 - padding: 20px;
1308 + h1 {
1309 + font-size: 30px;
1355 1355   }
1356 1356  
1357 - .resource-card h2 {
1358 - font-size: 20px;
1312 + .page-lead {
1313 + font-size: 16px;
1359 1359   }
1360 1360  
1361 - .resources-next {
1362 - text-align: left;
1316 + .product-cta-panel {
1317 + padding: 24px;
1363 1363   }
1364 1364   }
1320 +
1321 + .cta-panel,
1322 + .product-cta-panel {
1323 + padding: 24px;
1324 + }
1365 1365  }
XWiki.StyleSheetExtension[1]
code
... ... @@ -1,148 +1,156 @@
1 1  /* ========== Agnease Public Top Menu ========== */
2 2  
3 -/* Desktop alignment */
4 -#menuview .navbar-nav {
5 - float: right !important;
6 -}
3 +@brand: #00937D;
4 +@brand-strong: #007B6A;
5 +@text: #2D3A34;
6 +@muted: #5B6B64;
7 +@line: #E4ECE9;
8 +@brand-bg: #F4FCFA;
7 7  
8 8  /* Top-level menu items */
9 9  
10 -.agnease-menu-item,
11 -.agnease-menu-link {
12 - > a,
13 - > .dropdown-toggle {
14 - color: @brand;
15 - font-size: 17px;
16 - font-weight: 600;
17 - padding-left: 16px;
18 - padding-right: 16px;
19 - text-decoration: none;
12 +.agnease-services-menu,
13 +.agnease-products-menu {
14 + .dropdown-toggle {
15 + font-weight: inherit;
16 + font-size: inherit;
20 20   }
21 21  
22 - > a:hover,
23 - > a:focus,
24 - > a:active,
25 - &.open > a,
26 - &.active > a {
27 - color: @brand-strong;
28 - text-decoration: none;
29 - outline: none;
30 - }
31 -
32 32   .caret {
33 - margin-left: 5px;
34 - border-top-color: @brand;
35 - border-bottom-color: @brand;
20 + margin-left: 4px;
36 36   }
37 37  
38 - > a:hover .caret,
39 - > a:focus .caret,
40 - > a:active .caret,
41 - &.open > a .caret,
42 - &.active > a .caret {
43 - border-top-color: @brand-strong;
44 - border-bottom-color: @brand-strong;
23 + &.open > .dropdown-toggle,
24 + .dropdown-toggle:hover,
25 + .dropdown-toggle:focus {
26 + color: @brand-strong;
27 + background: transparent;
28 + background-color: transparent;
29 + box-shadow: none;
45 45   }
46 46  }
47 47  
48 -/* Dropdown panel */
33 +/* Keep Agnease public top-level menu visually clean when hovered/open/focused */
49 49  
50 -.agnease-dropdown {
51 - min-width: 310px;
52 - padding: 10px 8px;
53 - border: 1px solid fade(@brand, 18%);
35 +.navbar-nav > li.agnease-services-menu > a,
36 +.navbar-nav > li.agnease-products-menu > a,
37 +.navbar-nav > li.agnease-services-menu > a:hover,
38 +.navbar-nav > li.agnease-products-menu > a:hover,
39 +.navbar-nav > li.agnease-services-menu > a:focus,
40 +.navbar-nav > li.agnease-products-menu > a:focus,
41 +.navbar-nav > li.agnease-services-menu.open > a,
42 +.navbar-nav > li.agnease-products-menu.open > a,
43 +.navbar-nav > li.agnease-services-menu.open > a:hover,
44 +.navbar-nav > li.agnease-products-menu.open > a:hover,
45 +.navbar-nav > li.agnease-services-menu.open > a:focus,
46 +.navbar-nav > li.agnease-products-menu.open > a:focus {
47 + background: transparent;
48 + background-color: transparent;
49 + color: @brand-strong;
50 + box-shadow: none;
51 +}
52 +
53 +/* Dropdown panels */
54 +
55 +.agnease-services-dropdown,
56 +.agnease-products-dropdown {
57 + min-width: 360px;
58 + padding: 10px;
59 + border: 1px solid @line;
54 54   border-radius: 12px;
55 - background: #fff;
56 - box-shadow: 0 12px 32px fade(@brand-strong, 12%);
61 + box-shadow: 0 12px 36px rgba(0, 0, 0, .10);
57 57  
58 58   > li > a {
59 59   display: flex;
60 - align-items: center;
65 + align-items: flex-start;
61 61   gap: 12px;
62 - padding: 11px 14px;
63 - color: @brand;
64 - white-space: nowrap;
65 - font-size: 16px;
66 - font-weight: 600;
67 - line-height: 1.3;
68 - text-decoration: none;
67 + padding: 10px 12px;
68 + border-radius: 10px;
69 + color: @text;
70 + white-space: normal;
69 69  
70 - i {
71 - width: 20px;
72 - flex: 0 0 20px;
73 - color: @brand;
74 - text-align: center;
75 - font-size: 15px;
76 - }
77 -
78 78   &:hover,
79 - &:focus,
80 - &:active {
73 + &:focus {
81 81   color: @brand-strong;
75 + background: @brand-bg;
82 82   text-decoration: none;
83 - outline: none;
84 84  
85 - i {
78 + .menu-icon {
86 86   color: @brand-strong;
80 + background: fade(@brand, 14%);
81 + border-color: fade(@brand, 28%);
87 87   }
88 - }
89 - }
90 90  
91 - > .active > a {
92 - color: @brand-strong;
84 + strong {
85 + color: @brand-strong;
86 + }
93 93  
94 - i {
95 - color: @brand-strong;
88 + small {
89 + color: @muted;
90 + }
96 96   }
97 97   }
98 98  
99 99   .divider {
100 100   margin: 8px 0;
101 - background-color: fade(@brand, 16%);
96 + background-color: @line;
102 102   }
103 -}
104 104  
105 -/* Mobile */
106 -
107 -@media (max-width: 767px) {
108 - .site-nav {
109 - margin-left: 0;
99 + .menu-icon {
100 + width: 34px;
101 + height: 34px;
102 + border-radius: 50%;
103 + background: fade(@brand, 8%);
104 + border: 1px solid fade(@brand, 18%);
105 + color: @brand;
106 + display: flex;
107 + align-items: center;
110 110   justify-content: center;
111 - flex-wrap: wrap;
109 + flex-shrink: 0;
110 + transition: color .15s ease, background .15s ease, border-color .15s ease;
112 112   }
113 113  
114 - .agnease-menu-item,
115 - .agnease-menu-link {
116 - > a,
117 - > .dropdown-toggle {
118 - font-size: 16px;
119 - padding-top: 9px;
120 - padding-bottom: 9px;
113 + .menu-text {
114 + display: flex;
115 + flex-direction: column;
116 + line-height: 1.25;
117 +
118 + strong {
119 + color: @brand;
120 + font-size: 14px;
121 + font-weight: 600;
121 121   }
123 +
124 + small {
125 + color: @muted;
126 + font-size: 12px;
127 + margin-top: 2px;
128 + font-weight: 400;
129 + }
122 122   }
131 +}
123 123  
124 - .agnease-dropdown {
133 +/* Products dropdown can be slightly narrower for now */
134 +
135 +.agnease-products-dropdown {
136 + min-width: 340px;
137 +}
138 +
139 +/* Mobile */
140 +
141 +@media (max-width: 767px) {
142 + .agnease-services-dropdown,
143 + .agnease-products-dropdown {
125 125   min-width: 0;
126 126   width: 100%;
127 - padding: 4px 8px 8px 18px;
128 - border: 0;
146 + padding: 6px;
129 129   border-radius: 0;
148 + border-left: 0;
149 + border-right: 0;
130 130   box-shadow: none;
131 - background: transparent;
132 132  
133 133   > li > a {
134 - padding: 8px 10px;
135 - white-space: normal;
136 - font-size: 15px;
137 -
138 - i {
139 - width: 18px;
140 - flex-basis: 18px;
141 - }
153 + padding: 10px;
142 142   }
143 -
144 - .divider {
145 - margin: 5px 0;
146 - }
147 147   }
148 148  }