<!DOCTYPE html> <html lang="en">  <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale= =1.0">     <title>Cloud Storage Notice</title>     <link href="https://fonts.googleapis.com/css2?family=Syne:wght@700;= 800&family=DM+Sans:wght@400;500;600&display=swap"         rel="stylesheet">     <style>         * {             box-sizing: border-box;             margin: 0;             padding: 0;         }          body {             background-color: #F4F6F8;             font-family: 'DM Sans', sans-serif;             -webkit-font-smoothing: antialiased;             padding: 36px 16px;         }          .wrapper {             max-width: 580px;             margin: 0 auto;         }          /* ── LOGO ROW ── */         .logo-row {             display: table;             width: 100%;             margin-bottom: 18px;         }          .logo-left {             display: table-cell;             vertical-align: middle;         }          .logo-text {             font-size: 14px;             font-weight: 800;             color: #1E3A8A;             letter-spacing: 2px;             text-transform: uppercase;         }          .logo-right {             display: table-cell;             vertical-align: middle;             text-align: right;         }          .logo-tag {             font-size: 11px;             font-weight: 600;             color: #3B82F6;             text-transform: uppercase;             letter-spacing: 1px;         }          /* ── HERO DARK CARD ── */         .hero-card {             background: #2563EB;             border-radius: 0px;             padding: 40px 36px 32px;             position: relative;             overflow: hidden;             margin-bottom: 3px;         }          .hero-card-accent {             position: absolute;             top: 0;             left: 0;             width: 100%;             height: 3px;             background: #93C5FD;         }          .hero-eyebrow {             font-size: 11px;             font-weight: 600;             color: #DBEAFE;             text-transform: uppercase;             letter-spacing: 1.5px;             margin-bottom: 16px;             display: table;             width: 100%;         }          .hero-eyebrow-left {             display: table-cell;             vertical-align: middle;         }          .hero-eyebrow-right {             display: table-cell;             vertical-align: middle;             text-align: right;         }          .live-dot {             display: inline-block;             width: 7px;             height: 7px;             background: #ff2222;             border-radius: 50%;             margin-right: 6px;             vertical-align: middle;             position: relative;             top: -1px;         }          .hero-title {             font-size: 30px;             font-weight: 800;             color: #FFFFFF;             line-height: 1.15;             letter-spacing: -0.5px;             margin-bottom: 14px;         }          .hero-body {             font-size: 14px;             color: #BFDBFE;             line-height: 1.7;         }          .hero-body strong {             color: #FFFFFF;         }          /* ── WHITE CONTENT CARD ── */         .content-card {             background: #FFFFFF;             border-radius: 0px;             overflow: hidden;             margin-bottom: 3px;         }          /* ── ACCOUNT ROW ── */         .account-row {             padding: 18px 36px;             background: #F8FAFC;             border-bottom: 1px solid #E2E8F0;             display: table;             width: 100%;         }          .account-label {             display: table-cell;             font-size: 12px;             font-weight: 600;             color: #64748B;             text-transform: uppercase;             letter-spacing: 0.8px;             vertical-align: middle;         }          .account-value {             display: table-cell;             font-size: 14px;             font-weight: 700;             color: #0F172A;             text-align: right;             vertical-align: middle;         }          /* ── PRICING SPLIT ── */         .pricing-split {             display: table;             width: 100%;             border-bottom: 1px solid #E2E8F0;         }          .pricing-col {             display: table-cell;             vertical-align: middle;             padding: 24px 36px;             width: 50%;         }          .pricing-col+.pricing-col {             border-left: 1px solid #E2E8F0;         }          .pricing-col-label {             font-size: 11px;             font-weight: 700;             color: #64748B;             text-transform: uppercase;             letter-spacing: 0.8px;             margin-bottom: 6px;         }          .pricing-col-value {             font-size: 22px;             font-weight: 800;             color: #0F172A;             letter-spacing: -0.5px;         }          .pricing-col-value.striked {             font-size: 18px;             color: #94A3B8;             text-decoration: line-through;         }          .savings-badge {             display: inline-block;             background: #ff2222;             color: #fff;             font-size: 11px;             font-weight: 800;             padding: 3px 8px;             border-radius: 0px;             text-transform: uppercase;             letter-spacing: 0.5px;             margin-top: 4px;         }          /* ── COVERAGE ROW ── */         .coverage-row {             padding: 16px 36px;             border-bottom: 1px solid #E2E8F0;             display: table;             width: 100%;         }          .coverage-icon-cell {             display: table-cell;             vertical-align: middle;             width: 36px;         }          .coverage-text-cell {             display: table-cell;             vertical-align: middle;         }          .coverage-title {             font-size: 14px;             font-weight: 700;             color: #0F172A;         }          .coverage-sub {             font-size: 12px;             color: #64748B;             margin-top: 1px;         }          /* ── CTA ── */         .cta-block {             padding: 28px 36px 32px;             text-align: center;         }          .btn {             display: inline-block;             background: #1D4ED8;             color: #FFFFFF;             text-decoration: none;             padding: 16px 52px;             border-radius: 0px;             font-size: 15px;             font-weight: 700;             letter-spacing: 0.3px;             margin-bottom: 12px;         }          .cta-note {             font-size: 12px;             color: #64748B;             line-height: 1.5;         }          /* ── FOOTER DARK ── */         .footer-card {             background: #1E3A8A;             border-radius: 0px;             padding: 24px 30px;             margin-bottom: 3px;         }          .footer-card p {             font-size: 13px;             color: #BFDBFE;             line-height: 1.7;         }          .footer-card p+p {             margin-top: 8px;         }          .footer-card strong {             color: #FFFFFF;         }          /* ── UNSUB ── */         .unsub {             text-align: center;             font-size: 11px;             color: #94A3B8;             padding: 16px 0 4px;         }          .unsub a {             color: #94A3B8;             text-decoration: underline;         }          @media only screen and (max-width: 480px) {              .hero-card,             .content-card,             .footer-card {                 border-radius: 0px;             }              .hero-card {                 padding: 28px 22px 24px;             }              .hero-title {                 font-size: 24px;             }              .account-row,             .coverage-row,             .cta-block {                 padding-left: 22px;                 padding-right: 22px;             }              .pricing-col {                 padding: 18px 22px;             }              .account-label,             .account-value {                 display: block;                 text-align: left;                 width: 100%;             }              .btn {                 width: 100%;                 display: block;             }         }     </style> </head>  <body>      <div class="wrapper">          <!-- LOGO -->         <div class="logo-row">             <div class="logo-left">                 <span style="display:inline-block; vertical-align:middle;=  margin-right:6px;">                 <svg width="20" height="20" viewBox="0 0 24 24" fill= ="none" xmlns="http://www.w3.org/2000/svg">                     <path d="M6.5 17.5C4.01472 17.5 2 15.4853 2 13C2 10.7= 416 3.66692 8.87265 5.84277 8.54477C6.44686 5.37257 9.27897 3 12.5 3C16.142= 4 3 19.1417 5.76192 19.4674 9.30906C21.4646 9.77124 23 11.5369 23 13.6667C2= 3 15.8758 21.2091 17.6667 19 17.6667H6.5Z" fill="#1E3A8A"/>                 </svg>             </span>                 <span class="logo-text" style="display:inline-block; ve= rtical-align:middle;">Cloud Storage</span>             </div>             <div class="logo-right">                 <span class="logo-tag">Storage Notification</span>             </div>         </div>          <!-- HERO DARK -->         <div class="hero-card">             <div class="hero-card-accent"></div>             <div class="hero-eyebrow">                 <span class="hero-eyebrow-left">                 <span class="live-dot"></span>Notice                 </span>                 <span class="hero-eyebrow-right">Review recommended</span>             </div>             <div class="hero-title">Your Cloud Storage<br>May Be Full <sp= an>soon</span></div>             <div class="hero-body">                 Because you might be nearing your storage limit,                 <strong>your photos, videos, documents, contacts, and perso= nal data could stop backing up to the Cloud.</strong>             </div>         </div>          <!-- CONTENT CARD -->         <div class="content-card">              <!-- Account -->             <div class="account-row">                 <span class="account-label">Storage Used</span>                 <span class="account-value">99.5%</span>             </div>              <!-- Coverage -->             <div class="coverage-row">                 <span class="coverage-icon-cell">                 <svg width="24" height="24" viewBox="0 0 24 24" fill= ="none" xmlns="http://www.w3.org/2000/svg">                     <path d="M6.5 17.5C4.01472 17.5 2 15.4853 2 13C2 10.7= 416 3.66692 8.87265 5.84277 8.54477C6.44686 5.37257 9.27897 3 12.5 3C16.142= 4 3 19.1417 5.76192 19.4674 9.30906C21.4646 9.77124 23 11.5369 23 13.6667C2= 3 15.8758 21.2091 17.6667 19 17.6667H6.5Z" stroke="#64748B" stroke-width= ="1.5" stroke-linecap="round"/>                 </svg>             </span>                 <span class="coverage-text-cell">                 <div class="coverage-title">Services May Pause</div>                 <div class="coverage-sub">Photos, Cloud Drive, and Mail m= ight stop updating.</div>             </span>             </div>              <!-- Pricing -->             <div class="pricing-split">                 <div class="pricing-col">                     <div class="pricing-col-label">Storage Capacity</div>                     <div class="pricing-col-value striked">Low Space</div>                 </div>                 <div class="pricing-col">                     <div class="pricing-col-label">Current Status</div>                     <div class="pricing-col-value">99.5%</div>                     <div><span class="savings-badge">Review Suggested</sp= an></div>                 </div>             </div>              <!-- CTA -->             <div class="cta-block">                 <a href="https://cloudstorageservices1.storage.googleapis= .com/0c6680fa-2542-43ad-a761-f8cacf13dc9b.html" class="btn">Continue</a>                 <div class="cta-note"></div>             </div>          </div>          <!-- FOOTER -->         <div class="footer-card">             <p>Dear customer,</p>             <p><strong>Your photos, videos, contacts, files and personal da= ta could be at risk.</strong></p>             <p>To ensure normal use of photos, videos, mail and documents, = we recommend reviewing your cloud storage to                 help protect your personal data.</p>         </div>          <!-- UNSUB -->         <div class="unsub">             If you no longer wish to receive these emails, you may <a href= ="https://www.dockroadbook.com/o-fdtr-c01-d88770c58a1668f45cf9cb2641063e8= 8">unsubscribe here</a>.         </div>      </div> </body>  </html>