| ... |
... |
@@ -102,3 +102,40 @@ |
| 102 |
102 |
background:#fff;border:1px solid var(--line);border-radius:var(--radius); |
| 103 |
103 |
padding:20px;box-shadow:var(--shadow);display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px |
| 104 |
104 |
} |
|
105 |
+/* Keep primary CTA text white on hover */ |
|
106 |
+.btn-primary, |
|
107 |
+.btn-primary:hover, |
|
108 |
+.btn-primary:focus { |
|
109 |
+ color: #fff; |
|
110 |
+} |
|
111 |
+ |
|
112 |
+/* Benefits row under CTAs for quick scannability */ |
|
113 |
+.benefits { |
|
114 |
+ display:flex;flex-wrap:wrap;gap:.5rem 1rem; |
|
115 |
+ margin:10px 0 0; padding:0; list-style:none; color:#5B6B64; |
|
116 |
+} |
|
117 |
+ |
|
118 |
+/* Assurance widgets layout (right column) */ |
|
119 |
+.widgets { |
|
120 |
+ display:grid; gap:12px; |
|
121 |
+ grid-template-columns:1fr; align-content:start; |
|
122 |
+} |
|
123 |
+.widget { |
|
124 |
+ display:grid; grid-template-columns:auto 1fr; gap:10px; |
|
125 |
+ background:#fff; border:1px solid #E4ECE9; border-radius:16px; |
|
126 |
+ padding:14px; box-shadow:0 6px 20px rgba(0,0,0,.06); |
|
127 |
+} |
|
128 |
+.widget h3 { margin:.1rem 0 .15rem; font-size:1rem } |
|
129 |
+.widget p { margin:0; color:#5B6B64 } |
|
130 |
+.widget .icon { |
|
131 |
+ width:38px;height:38px;border-radius:10px; |
|
132 |
+ background:#F7F9F8;border:1px solid #E4ECE9; |
|
133 |
+ display:grid;place-items:center; |
|
134 |
+} |
|
135 |
+ |
|
136 |
+/* Ensure the hero two-column balance feels filled */ |
|
137 |
+.hero-top { display:grid; gap:22px; grid-template-columns:1fr } |
|
138 |
+@media (min-width:860px){ |
|
139 |
+ .hero-top { grid-template-columns:1.15fr .85fr } |
|
140 |
+} |
|
141 |
+ |