Changes for page Public Web Site

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

From version 8.3
edited by Agnease
on 2026/05/12 20:25
Change comment: There is no comment for this version
To version 7.18
edited by Agnease
on 2026/05/12 20:17
Change comment: There is no comment for this version

Summary

Details

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